wrlcatcontrol-bin
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:35
"WRLCatControl_${pkgver}_Linux.deb::https://storage.googleapis.com/world-radio-league-prod.appspot.com/CatControl/WRLCatControl_${pkgver}_Linux.deb"
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 a Google Cloud Storage bucket (storage.googleapis.com/world-radio-league-prod.appspot.com) and installs it directly. The core concern is: (1) all sha256sums are SKIP, meaning there is zero integrity verification — any substitution of the binary would go undetected; (2) it is a prebuilt executable from a non-standard/vendor-controlled cloud storage host rather than a well-known official release page with published checksums. The GCS bucket name suggests it is the vendor's own storage (world-radio-league-prod.appspot.com), which is plausible for a small proprietary software vendor, but there is no way to verify this without published checksums. The combination of an executed binary + SKIP checksums is a genuine supply-chain risk (not just sloppy packaging), warranting medium severity. 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 application.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Meredith V. <delightful.device@pm.me>
pkgname=wrlcatcontrol-bin
pkgver=1.1.3
pkgrel=1
pkgdesc="World Radio League CAT Control application"
arch=('x86_64')
url="https://worldradioleague.com"
license=('LicenseRef-upstream-proprietary')
pkgdesc="CAT (Computer Aided Transceiver) Control allows World Radio League to communicate directly with your radio."
install=wrlcatcontrol-bin.install
depends=(
'java-runtime'
'libusb'
'glibc'
'lib32-glibc'
'lib32-gcc-libs'
'gtk3'
'nss'
'at-spi2-core'
'libdrm'
'alsa-lib'
)
optdepends=(
'hamlib: CAT control backend support'
)
provides=('wrl-cat-control')
conflicts=('wrl-cat-control')
source=(
"WRLCatControl_${pkgver}_Linux.deb::https://storage.googleapis.com/world-radio-league-prod.appspot.com/CatControl/WRLCatControl_${pkgver}_Linux.deb"
"wrl-cat-control.desktop"
"wrlcatcontrol-bin.install"
)
sha256sums=(
'SKIP'
'SKIP'
'SKIP'
)
package() {
cd "${srcdir}"
# Extract Debian package
bsdtar -xf "WRLCatControl_${pkgver}_Linux.deb"
# Extract filesystem contents
bsdtar -xf data.tar.xz -C "${pkgdir}"
# Ensure binaries are executable
find "${pkgdir}/usr/bin" -type f -exec chmod 755 {} \; 2>/dev/null || true
install -Dm644 wrl-cat-control.desktop \
"${pkgdir}/usr/share/applications/wrl-cat-control.desktop"
install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
cat > "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" << EOF
WRLCatControl is proprietary software.
For licensing terms and usage restrictions, see the upstream developer:
https://worldradioleague.com
EOF
}
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 |