sigfox-rsa
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:16
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, not a random personal host) with sha256sums='SKIP' (no integrity verification), extracts a squashfs filesystem from it, and installs prebuilt binaries and shared libraries directly into the system. The concerns are: (1) no checksum verification means any MITM or server-side substitution would go undetected; (2) prebuilt binaries and shared libraries (including librsvisa.so and radio_signal_analyzer_pb) are extracted from an opaque ISO and installed without any source build — this is a classic supply-chain risk pattern; (3) the download happens inside prepare() using wget rather than the source=() array, bypassing makepkg's integrity checking infrastructure entirely. While support.sigfox.com appears to be a legitimate vendor host, the complete absence of checksums combined with direct installation of extracted proprietary binaries and libraries constitutes a real medium-severity supply-chain concern — any compromise of that URL or a network interception would result in arbitrary code execution on the user's system.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Maxime Vincent <maxime.vince@gmail.com>
pkgname=sigfox-rsa
pkgver=3.0.1
pkgrel=1
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')
sha256sums=('SKIP')
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/local
# Some /usr/local/bin paths are hardcoded in the binary, so we should copy them as well
mkdir -p "$pkgdir"/usr/local/bin
mkdir -p "$pkgdir"/usr/local/bin/sigfox_verified/
cp -r "$srcdir"/unsq/usr/local/bin/sigfox_verified "$pkgdir"/usr/local/bin/
# Copy from /usr/local to /usr
cp -r "$srcdir"/unsq/usr/local/bin "$pkgdir"/usr/
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/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
#rm -rf "$pkgdir"/usr/local
#cp -r unsq/sigfox_rsa/unsq/usr/etc "$pkgdir"/
#install -Dm644 bin/radio_signal_analyzer "$pkgdir"/usr/local/bin/radio_signal_analyzer
#install -Dm644 bin/sigfox_verified "$pkgdir"/usr/local/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 |