audius
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
source=("Audius-${pkgver}.AppImage::https://download.audius.co/Audius-${pkgver}.AppImage")
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 AppImage binary from download.audius.co (the official Audius download domain) and executes it during prepare() via --appimage-extract to unpack it. The domain appears to be the legitimate official distribution host for Audius desktop releases. However, sha256sums=('SKIP') means there is no integrity verification of the downloaded binary, so any MITM or server-side substitution would go undetected. Executing an unverified binary during the build process is a genuine supply-chain concern. The source host itself is plausibly official, but the lack of checksum verification elevates this above 'low'. This is a real but non-malicious medium-risk pattern: an executed binary from what appears to be the official host, but with no integrity check.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Zaman Huseynli <zamanhuseynli23@gmail.com>
# Backup contact: admin@azccriminal.space
pkgname=audius
pkgver=1.5.156
pkgrel=1
pkgdesc="Audius music streaming client package"
arch=('x86_64')
url="https://audius.co"
license=('Apache')
depends=('fuse2')
provides=('audius')
conflicts=('audius')
options=(!strip)
source=("Audius-${pkgver}.AppImage::https://download.audius.co/Audius-${pkgver}.AppImage")
noextract=("Audius-${pkgver}.AppImage")
sha256sums=('SKIP')
prepare() {
chmod +x "Audius-${pkgver}.AppImage"
"./Audius-${pkgver}.AppImage" --appimage-extract
}
package() {
install -Dm755 "Audius-${pkgver}.AppImage" "$pkgdir/opt/audius/Audius.AppImage"
install -dm755 "$pkgdir/usr/bin"
cat << EOF > "$pkgdir/usr/bin/audius"
#!/bin/bash
exec /opt/audius/Audius.AppImage "\$@"
EOF
chmod +x "$pkgdir/usr/bin/audius"
install -Dm644 squashfs-root/audius-client.desktop "$pkgdir/usr/share/applications/audius.desktop"
sed -i 's|Exec=.*|Exec=/opt/audius/Audius.AppImage|' "$pkgdir/usr/share/applications/audius.desktop"
sed -i 's|Icon=.*|Icon=audius-client|' "$pkgdir/usr/share/applications/audius.desktop"
for size in 16 32 48 64 128 256 512 1024; do
icon_path="squashfs-root/usr/share/icons/hicolor/${size}x${size}/apps/audius-client.png"
if [[ -f "$icon_path" ]]; then
install -Dm644 "$icon_path" "$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/audius-client.png"
fi
done
install -Dm644 squashfs-root/LICENSE.electron.txt "$pkgdir/usr/share/licenses/$pkgname/LICENSE.electron.txt"
install -Dm644 squashfs-root/LICENSES.chromium.html "$pkgdir/usr/share/licenses/$pkgname/LICENSES.chromium.html"
}
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 |