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