wrlcatcontrol-bin

MEDIUM
maintainer justmere 0 votes scanned 2026-09-17 00:27:14.276658
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-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

Report a package

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

0 / 4000
Your suggestion