sigfox-radio-signal-analyzer
Triggered rules
external_download_not_in_source
curl/wget fetches a URL on a non-allowlisted host that is not part of source=(), so it is not checksum-verified by makepkg.
-
PKGBUILD:17
wget -c https://support.sigfox.com/files/5e6202f04f6f67c0396574bb -O sigfox_rsa.iso
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 82%): This PKGBUILD downloads a prebuilt ISO from support.sigfox.com (an official Sigfox support portal) outside the source array with no checksum verification, extracts a squashfs filesystem from it, and installs prebuilt proprietary binaries and shared libraries directly into the system. The concerns are: (1) no integrity verification — the ISO is fetched with wget outside source=() so makepkg's checksum mechanism never runs, meaning a MITM or server-side substitution would go undetected; (2) prebuilt closed-source binaries and shared libraries (librsvisa.so, radio_signal_analyzer_pb, etc.) are installed without any audit trail; (3) the source host, while nominally official Sigfox support infrastructure, is not a standard upstream release mirror and the URL is an opaque numeric ID. The combination of unverified prebuilt executables and shared libraries installed system-wide constitutes a genuine supply-chain risk. The cheaper model's MEDIUM rating is correct. It is not HIGH because there is no evidence of active malice, obfuscation, or exfiltration — it appears to be a legitimate but poorly packaged proprietary tool from the actual vendor.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Maxime Vincent <maxime.vince@gmail.com>
pkgname=sigfox-radio-signal-analyzer
pkgver=2.0.1
pkgrel=2
pkgdesc='Sigfox Radio Signal Analyser for use with Sigfox SDR stick'
arch=(i686 x86_64)
license=(GPL)
depends=('fftw' 'qt5-svg' 'alsa-lib')
makedepends=('squashfs-tools' 'cdrtools')
source=()
sha256sums=()
prepare() {
mkdir -p iso
cd iso
wget -c https://support.sigfox.com/files/5e6202f04f6f67c0396574bb -O sigfox_rsa.iso
isoinfo -i sigfox_rsa.iso --find -name "FILESYSTEM.SQUASHFS*" -print 2>/dev/null | xargs isoinfo -i sigfox_rsa.iso -x > filesystem.squashfs
}
build() {
echo Build
}
package() {
if [ -d "$srcdir"/unsq ]; then
echo "Already unsquashed. Skipping unsquashfs"
else
unsquashfs -d "$srcdir"/unsq iso/filesystem.squashfs
fi
mkdir -p "$pkgdir"/usr/
mkdir -p "$pkgdir"/usr/bin
mkdir -p "$pkgdir"/usr/local
mkdir -p "$pkgdir"/usr/local/bin
mkdir -p "$pkgdir"/usr/local/bin/sigfox_verified/
# Many /usr/local/bin paths are hardcoded in the binary, so we should copy them as well
cp -r "$srcdir"/unsq/usr/local/bin/sigfox_verified "$pkgdir"/usr/local/bin/
# Copy from /usr/local/lib to /usr/lib (The Arch Way)
cp -r "$srcdir"/unsq/usr/local/lib "$pkgdir"/usr/
cp "$srcdir"/unsq/usr/lib/librsvisa.so "$pkgdir"/usr/lib/
# Re-create symlink
rm -rf "$pkgdir"/usr/bin/radio_signal_analyzer_pb
ln -s /usr/local/bin/sigfox_verified/radio_signal_analyzer_pb "$pkgdir"/usr/bin/radio_signal_analyzer_pb
# Remove unused directories that got copied
rm -rf "$pkgdir"/usr/lib/python2.7/site-packages
rm -rf "$pkgdir"/usr/lib/python3.5/dist-packages
rm -rf "$pkgdir"/usr/lib/python2.7/dist-packages
rm -rf "$pkgdir"/usr/lib/python3.5
rm -rf "$pkgdir"/usr/lib/python2.7
#install -Dm644 bin/radio_signal_analyzer "$pkgdir"/usr/bin/radio_signal_analyzer
#install -Dm644 bin/sigfox_verified "$pkgdir"/usr/bin/
libtool --finish /usr/lib
}
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 |