quake4
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:17
"https://aur.slashbunny.com/quake4/quake4-linux-${pkgver}.x86.run")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The PKGBUILD downloads and executes a prebuilt binary installer (quake4-linux-1.4.2.x86.run) from aur.slashbunny.com, which is a personal/unofficial host rather than id Software or any official mirror. The binary is executed directly during the build process to extract game files. While a sha256sum is provided (offering some integrity protection against accidental corruption or simple MITM), the trust anchor is the maintainer's own server — if that host were compromised or the maintainer were malicious, the checksum in the PKGBUILD would simply be updated to match a trojaned binary. This is a classic supply-chain concern: an executed binary from a non-upstream, non-authoritative host. The original Quake 4 Linux installer was distributed by id Software/Activision; hosting a copy on a personal AUR-companion server is non-standard. This is a real medium-severity supply-chain risk, not a false positive, though there is no evidence of active malice.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Slash <demodevil5 [at] yahoo [dot] com>
pkgname=quake4
pkgver=1.4.2
pkgrel=5
pkgdesc="Quake 4 Engine. You need the retail .pk4 files to play."
url="https://web.archive.org/web/20061205073314/http://www.idsoftware.com/games/quake/quake4/"
license=('custom:"Quake 4"' \
'custom:"PunkBuster"')
depends_x86_64=('lib32-glibc' 'lib32-sdl' 'lib32-libx11' 'lib32-libxext' 'lib32-zlib')
optdepends_x86_64=('lib32-nvidia-utils: Accelerated 3D with the NVIDIA binary blob video driver'
'lib32-catalyst-utils: Accelerated 3D with the AMD/ATI binary blob video driver')
depends_i686=('gcc-libs' 'libgl' 'sdl' 'zlib')
arch=('i686' 'x86_64')
install=quake4.install
source=('quake4.desktop' 'quake4.launcher' 'quake4-dedicated.launcher' 'quake4-smp.launcher' 'quake4.png' \
"https://aur.slashbunny.com/quake4/quake4-linux-${pkgver}.x86.run")
sha256sums=('eb12f3832213af66eceb3a1639605522d10f7169b0a093b7892738bcab04dcf6'
'3b5e0992f3399e1a01929008fd36b7c0e0216dcdd29da9f0665823f93ee4fb0f'
'cfb3353c8c9d8be8a9a32ba05a48dca7c2125cef20159b85de7135c78a950e73'
'62ba170609ca961430e39f7a24e23e1a3b28376e42f779e7e28714868d7758d1'
'8bb8443f1f95e399ed16f8ae5c56a580185958d49ec1c8ecb29931bcbaa1bf79'
'9203b387b1a4075a1b9ad1eb7be32b49a88141a448d9330d9cbe1f40a145bd6a')
package() {
cd "${srcdir}"
# Create Destination Directories
install -d "${pkgdir}/opt/"
# Make Installer Executable
chmod +x "${srcdir}/quake4-linux-${pkgver}.x86.run"
# Extract Files from Installer
"${srcdir}/quake4-linux-${pkgver}.x86.run" --noexec --target quake4
# Move pk4 files to correct location
mv "${srcdir}/quake4/us/q4base/"*.pk4 \
"${srcdir}/quake4/q4base/"
# Move Executables and Libraries
install -m 755 -t "${srcdir}/quake4/" \
"${srcdir}/quake4/bin/Linux/x86/"{lib*,q4ded*,quake4*}
# Make Everything World-Readable
chmod -R a+r "${srcdir}/quake4/"
# Remove Unneeded Files
rm -rf "${srcdir}/quake4/"{germany/,setup.data/,setup.sh,us/,bin/}
# Move Quake4 to Destination Directory
mv "${srcdir}/quake4" "${pkgdir}/opt/"
# Install Launcher (Client)
install -D -m 755 "${srcdir}/quake4.launcher" \
"${pkgdir}/usr/bin/quake4"
# Install Launcher (Client - SMP)
install -D -m 755 "${srcdir}/quake4-smp.launcher" \
"${pkgdir}/usr/bin/quake4-smp"
# Install Launcher (Server)
install -D -m 755 "${srcdir}/quake4-dedicated.launcher" \
"${pkgdir}/usr/bin/quake4-dedicated"
# Install License (Quake 4)
install -D -m 644 "${pkgdir}/opt/quake4/License.txt" \
"${pkgdir}/usr/share/licenses/quake4/License.txt"
# Install License (PunkBuster)
install -D -m 644 "${pkgdir}/opt/quake4/pb/PBEULA.txt" \
"${pkgdir}/usr/share/licenses/quake4/PBEULA.txt"
# Install Desktop File
install -D -m 644 "${srcdir}/quake4.desktop" \
"${pkgdir}/usr/share/applications/quake4.desktop"
# Install Icon File
install -D -m 644 "${srcdir}/quake4.png" \
"${pkgdir}/usr/share/pixmaps/quake4.png"
# Remove breaking local libraries
rm ${pkgdir}/opt/quake4/{libgcc_s.so.1,libstdc++.so.6}
}
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 |