wrlcatcontrol-bin
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.
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-09-17 00:27:14 | Medium | 2 |
| 2026-09-16 00:03:17 | Medium | 2 |
| 2026-09-15 00:25:31 | Medium | 2 |
| 2026-09-14 00:27:57 | Medium | 2 |
| 2026-09-13 00:19:54 | Medium | 2 |
| 2026-09-12 00:25:17 | Medium | 2 |
| 2026-09-11 00:19:22 | Medium | 2 |
| 2026-09-10 00:22:44 | Medium | 2 |
| 2026-09-09 00:04:09 | Medium | 2 |
| 2026-09-08 00:18:08 | Medium | 2 |
| 2026-09-07 00:30:15 | Medium | 2 |
| 2026-09-06 00:17:06 | Medium | 2 |
| 2026-09-05 00:16:27 | Medium | 2 |
| 2026-09-04 00:03:13 | Medium | 2 |
| 2026-09-03 00:15:47 | Medium | 2 |
| 2026-09-02 00:02:31 | Medium | 2 |
| 2026-09-01 00:11:19 | Medium | 2 |
| 2026-08-31 00:19:57 | Medium | 2 |
| 2026-08-30 00:04:14 | Medium | 2 |
| 2026-08-29 00:29:17 | Medium | 2 |