wrlcatcontrol-bin

maintainer justmere · 0 votes · scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged 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

MEDIUM source=() URL on a non-standard host 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"
MEDIUM AI review 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
1# Maintainer: Meredith V. <delightful.device@pm.me>
2
3pkgname=wrlcatcontrol-bin
4pkgver=1.1.3
5pkgrel=1
6pkgdesc="World Radio League CAT Control application"
7arch=('x86_64')
8url="https://worldradioleague.com"
9license=('LicenseRef-upstream-proprietary')
10pkgdesc="CAT (Computer Aided Transceiver) Control allows World Radio League to communicate directly with your radio."
11
12install=wrlcatcontrol-bin.install
13
14depends=(
15 'java-runtime'
16 'libusb'
17 'glibc'
18 'lib32-glibc'
19 'lib32-gcc-libs'
20 'gtk3'
21 'nss'
22 'at-spi2-core'
23 'libdrm'
24 'alsa-lib'
25)
26
27optdepends=(
28 'hamlib: CAT control backend support'
29)
30
31provides=('wrl-cat-control')
32conflicts=('wrl-cat-control')
33
34source=(
35 "WRLCatControl_${pkgver}_Linux.deb::https://storage.googleapis.com/world-radio-league-prod.appspot.com/CatControl/WRLCatControl_${pkgver}_Linux.deb"
36 "wrl-cat-control.desktop"
37 "wrlcatcontrol-bin.install"
38)
39
40sha256sums=(
41 'SKIP'
42 'SKIP'
43 'SKIP'
44)
45
46package() {
47 cd "${srcdir}"
48
49 # Extract Debian package
50 bsdtar -xf "WRLCatControl_${pkgver}_Linux.deb"
51
52 # Extract filesystem contents
53 bsdtar -xf data.tar.xz -C "${pkgdir}"
54
55 # Ensure binaries are executable
56 find "${pkgdir}/usr/bin" -type f -exec chmod 755 {} \; 2>/dev/null || true
57
58 install -Dm644 wrl-cat-control.desktop \
59 "${pkgdir}/usr/share/applications/wrl-cat-control.desktop"
60
61 install -dm755 "${pkgdir}/usr/share/licenses/${pkgname}"
62
63 cat > "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" << EOF
64WRLCatControl is proprietary software.
65
66For licensing terms and usage restrictions, see the upstream developer:
67
68https://worldradioleague.com
69EOF
70}
71
72

Scan history

Scanned at (UTC)SeverityRules
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

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion