radboard-bin
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
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")
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# Maintainer: Mikołaj Mikołajczyk <mikolajczyk.mikolajm@gmail.com>
pkgname=radboard-bin
pkgver=0.8.6
pkgrel=1
pkgdesc="Desktop Kanban board for Radicle"
arch=('x86_64')
url="https://radboard.mikolajczyk.org"
license=('MIT')
provides=('radboard')
conflicts=('radboard')
depends=('webkit2gtk-4.1' 'gtk3' 'libappindicator-gtk3' 'librsvg' 'openssl')
options=('!strip' '!debug')
source=("radboard-${pkgver}.deb::https://dl.mikolajczyk.org/radboard/v${pkgver}/radboard-amd64.deb")
sha256sums=('26fe2e4d2729b02de7ae0d14c8ebb72e7282421dafed95069027de3270ce9aef')
prepare() {
cd "$srcdir"
bsdtar -xf "radboard-${pkgver}.deb"
if [ -f data.tar.zst ]; then
bsdtar -xf data.tar.zst
elif [ -f data.tar.xz ]; then
bsdtar -xf data.tar.xz
else
bsdtar -xf data.tar.gz
fi
}
package() {
cd "$srcdir"
cp -a usr "$pkgdir/"
}
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 |