radboard-bin

MEDIUM
maintainer gerwazy102 0 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

The PKGBUILD downloads a prebuilt binary .deb from dl.mikolajczyk.org, which is a personal domain operated by the maintainer (same surname/domain as the package author). This is a classic -bin AUR pattern where the maintainer self-hosts their own application's release artifacts. The sha256sum is present and pins the specific binary. However, the host is not an official distribution channel (e.g., GitHub Releases, a distro mirror), so if the personal domain were compromised or the TLS certificate hijacked, a malicious binary could be substituted. The binary is extracted and installed directly into the package root (cp -a usr), meaning it executes with user privileges at runtime. This is a genuine medium-severity supply-chain concern: not clearly malicious, but an unofficial personal host serving an executed binary with no additional verification (no GPG signature). The cheaper model's assessment is correct here.

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:13 source=("radboard-${pkgver}.deb::https://dl.mikolajczyk.org/radboard/v${pkgver}/radboard-amd64.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 binary .deb from dl.mikolajczyk.org, which is a personal domain operated by the maintainer (same surname/domain as the package author). This is a classic -bin AUR pattern where the maintainer self-hosts their own application's release artifacts. The sha256sum is present and pins the specific binary. However, the host is not an official distribution channel (e.g., GitHub Releases, a distro mirror), so if the personal domain were compromised or the TLS certificate hijacked, a malicious binary could be substituted. The binary is extracted and installed directly into the package root (cp -a usr), meaning it executes with user privileges at runtime. This is a genuine medium-severity supply-chain concern: not clearly malicious, but an unofficial personal host serving an executed binary with no additional verification (no GPG signature). The cheaper model's assessment is correct here.

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Mikołaj Mikołajczyk <mikolajczyk.mikolajm@gmail.com>
2pkgname=radboard-bin
3pkgver=0.8.6
4pkgrel=1
5pkgdesc="Desktop Kanban board for Radicle"
6arch=('x86_64')
7url="https://radboard.mikolajczyk.org"
8license=('MIT')
9provides=('radboard')
10conflicts=('radboard')
11depends=('webkit2gtk-4.1' 'gtk3' 'libappindicator-gtk3' 'librsvg' 'openssl')
12options=('!strip' '!debug')
13source=("radboard-${pkgver}.deb::https://dl.mikolajczyk.org/radboard/v${pkgver}/radboard-amd64.deb")
14sha256sums=('26fe2e4d2729b02de7ae0d14c8ebb72e7282421dafed95069027de3270ce9aef')
15
16prepare() {
17 cd "$srcdir"
18 bsdtar -xf "radboard-${pkgver}.deb"
19 if [ -f data.tar.zst ]; then
20 bsdtar -xf data.tar.zst
21 elif [ -f data.tar.xz ]; then
22 bsdtar -xf data.tar.xz
23 else
24 bsdtar -xf data.tar.gz
25 fi
26}
27
28package() {
29 cd "$srcdir"
30 cp -a usr "$pkgdir/"
31}
32

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