audius
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.
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-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 |