monochrome
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:15
"$pkgname-$pkgver.zip::https://downloads.samidy.com/out_delivery/monochrome-linux.zip"
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 85%): A prebuilt binary (Electron/native app bundle) is downloaded from downloads.samidy.com, a third-party host unrelated to the official GitHub repository, and installed directly to /opt and executed via a wrapper script. The checksum is SKIP'd, meaning there is zero integrity verification. If samidy.com is compromised, serves a different binary, or the maintainer of that host acts maliciously, users will silently execute arbitrary code. This is a textbook supply-chain risk: executed binary from an unofficial/personal host with no checksum. The GitHub URL is only used for pkgver() and the icon, not for the actual application binary. Medium severity is correct.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Mylloon <aur@mylloon.fr>
# shellcheck disable=SC2034,SC2148,SC2154
pkgname='monochrome'
pkgver=r0.f378552
pkgrel=1
pkgdesc="Lossless music streaming"
arch=('x86_64')
url=https://github.com/monochrome-music/monochrome
license=('HIPPOCRATIC LICENSE')
provides=("$pkgname")
conflicts=("$pkgname")
source_x86_64=(
"$pkgname-$pkgver.zip::https://downloads.samidy.com/out_delivery/monochrome-linux.zip"
"icon.png::https://raw.githubusercontent.com/monochrome-music/monochrome/refs/heads/main/public/assets/96.png"
)
sha256sums_x86_64=('SKIP' 'c9551cf8f13846e1d330d408dc1c39b9b9d98448f57d9c722bfddab5bd905084')
pkgver() {
printf "r0.%s" "$(git ls-remote https://github.com/monochrome-music/monochrome.git HEAD | cut -c1-7)"
}
package() {
# Install full app to /opt
install -d "$pkgdir/opt/$pkgname"
find "$srcdir"/* ! -type l -exec cp -r -t "$pkgdir/opt/$pkgname" {} +
# Wrapper script
install -d "$pkgdir/usr/bin"
cat <<EOF > "$pkgdir/usr/bin/$pkgname"
#!/bin/sh
cd /opt/$pkgname
./Monochrome
EOF
chmod +x "$pkgdir/usr/bin/$pkgname"
# Desktop entry
install -Dm644 "$srcdir/icon.png" "$pkgdir/usr/share/pixmaps/$pkgname.png"
install -Dm644 /dev/stdin "$pkgdir/usr/share/applications/$pkgname.desktop" <<EOF
[Desktop Entry]
Type=Application
Name=Monochrome
GenericName=Music streaming player
Comment=Lossless music streaming
Icon=$pkgname.png
Exec=/usr/bin/$pkgname
Terminal=false
Categories=Audio;Music;Player;
EOF
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 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 |