bitscope-dso
Triggered rules
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:23
source=("http://www.bitscope.com/download/files/${_DSOPKG}")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The PKGBUILD downloads a prebuilt proprietary binary (.deb) from the official vendor domain (bitscope.com) and installs it directly without compilation. This is a legitimate pattern for closed-source hardware vendor software, and the host is the official vendor site rather than a personal or unofficial mirror. However, the package installs an unauditable prebuilt binary with SHA1 checksums (SHA1 is weak but still provides some integrity), and the package() function extracts data.tar.gz directly into pkgdir without any verification of the .deb structure. The main concern is that this is an executed binary from a proprietary source with no source code available for review — a standard supply-chain risk for binary AUR packages. The cheaper model's assessment is essentially correct: this is a real medium-severity concern (prebuilt binary installation) but not an active attack. The official vendor host reduces the risk compared to a personal host, but the pattern of installing unauditable binaries remains a legitimate medium-risk classification.
PKGBUILD
1 offending line(s) highlighted# Maintainer : Marco Camilli <marco@emavap.be>
# Old Maintainer : William Swanson <swansontec@gmail.com>
# vim: set ts=2 sw=2 et:
pkgname="bitscope-dso"
pkgver="2.8.FE22H"
pkgrel=1
pkgdesc="Bitscope dso software for oscilloscopes"
arch=('i686' 'x86_64')
url="http://www.bitscope.com"
license=('custom')
depends=(atk gdk-pixbuf2 gtk2 pango cairo)
if [ "${CARCH}" == "x86_64" ]; then
_BITSCOPEARCH='amd64'
_BITSCOPESHA1='8a430dca83efe9ae330ec12515ce5439d582eb1f'
else
_BITSCOPEARCH='i386'
_BITSCOPESHA1='d2875a326793fdf93ca22d354df62685e7056325'
fi
_DSOPKG="bitscope-dso_${pkgver}_${_BITSCOPEARCH}.deb"
source=("http://www.bitscope.com/download/files/${_DSOPKG}")
sha1sums=("${_BITSCOPESHA1}")
package() {
tar -xzf "${srcdir}/data.tar.gz" -C "${pkgdir}"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | MEDIUM | 2 |
| 2026-08-02 00:16:08 | MEDIUM | 2 |
| 2026-08-01 00:11:18 | MEDIUM | 2 |
| 2026-07-31 00:14:10 | MEDIUM | 2 |
| 2026-07-30 00:17:23 | MEDIUM | 2 |
| 2026-07-29 00:25:53 | MEDIUM | 2 |
| 2026-07-28 00:07:28 | MEDIUM | 2 |
| 2026-07-27 00:24:32 | MEDIUM | 2 |
| 2026-07-26 00:07:32 | MEDIUM | 2 |
| 2026-07-25 00:13:44 | MEDIUM | 2 |
| 2026-07-24 00:02:28 | MEDIUM | 2 |
| 2026-07-23 00:14:47 | MEDIUM | 2 |
| 2026-07-22 00:29:32 | MEDIUM | 2 |
| 2026-07-21 00:24:15 | MEDIUM | 2 |
| 2026-07-20 00:19:49 | MEDIUM | 2 |
| 2026-07-19 00:17:08 | MEDIUM | 2 |
| 2026-07-18 00:14:48 | MEDIUM | 2 |
| 2026-07-17 00:06:16 | MEDIUM | 2 |
| 2026-07-16 00:05:41 | MEDIUM | 2 |
| 2026-07-15 00:09:25 | MEDIUM | 2 |