hammer-dongers
The PKGBUILD dynamically resolves and downloads a prebuilt game binary (a Unity x86_64 executable) from itch.io at build time via a POST request and URL extraction from the response, with no checksum verification (source=() and md5sums=() are empty). This is a genuine supply-chain concern: the downloaded binary is executed by end users, and there is no integrity check whatsoever — any compromise of the itch.io endpoint, a MITM, or a change in the served file would silently deliver a different binary. The host (itch.io) is a legitimate game distribution platform, not a random personal server, which reduces but does not eliminate the risk. The pattern of dynamically constructing a download URL and skipping checksums is a well-known AUR anti-pattern for proprietary game packaging, but it is not inherently malicious. The severity remains MEDIUM due to the executed binary with no integrity verification.
Triggered rules
external_download_not_in_source
curl/wget fetches a URL on a non-allowlisted host that is not part of source=(), so it is not checksum-verified by makepkg.
-
PKGBUILD:24
game_url=$(curl -s -XPOST "https://cravecraw.itch.io/hammer-dongers/file/4119554?after_download_lightbox=true" | grep -Po '"url":.*?[^\\]",' | cut -c8- | rev |cut -c3- | rev | sed 's/\\\//\//g')
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 82%): The PKGBUILD dynamically resolves and downloads a prebuilt game binary (a Unity x86_64 executable) from itch.io at build time via a POST request and URL extraction from the response, with no checksum verification (source=() and md5sums=() are empty). This is a genuine supply-chain concern: the downloaded binary is executed by end users, and there is no integrity check whatsoever — any compromise of the itch.io endpoint, a MITM, or a change in the served file would silently deliver a different binary. The host (itch.io) is a legitimate game distribution platform, not a random personal server, which reduces but does not eliminate the risk. The pattern of dynamically constructing a download URL and skipping checksums is a well-known AUR anti-pattern for proprietary game packaging, but it is not inherently malicious. The severity remains MEDIUM due to the executed binary with no integrity verification.
PKGBUILD
1 offending line(s) highlighted# Mantainer: MCMic <come@chilliet.eu>
pkgname=hammer-dongers
pkgver=0.55
pkgrel=1
pkgdesc="Up to 4 player party game with destroyable terrain!"
arch=('x86_64')
url="https://cravecraw.itch.io/hammer-dongers"
license=('nonfree')
makedepends=('unzip' 'curl' 'gendesk')
depends=()
source=()
md5sums=()
_name='Hammer Dongers'
_categories='Game;ActionGame'
prepare() {
gendesk -n -f ../PKGBUILD
}
build() {
cd ${srcdir}/
# https://cravecraw.itch.io/hammer-dongers/data.json
game_url=$(curl -s -XPOST "https://cravecraw.itch.io/hammer-dongers/file/4119554?after_download_lightbox=true" | grep -Po '"url":.*?[^\\]",' | cut -c8- | rev |cut -c3- | rev | sed 's/\\\//\//g')
curl -o ${pkgname}-linux.zip ${game_url}
unzip -o ${pkgname}-linux.zip
}
package() {
cd "${srcdir}/${_name} Linux - ${pkgver}"
mkdir -p ${pkgdir}/usr/share/games/${pkgname}
mkdir -p ${pkgdir}/usr/bin/
mkdir -p ${pkgdir}/usr/share/icons/hicolor/64x64/apps/
install -Dm644 "${srcdir}/${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
cp "${pkgname}-${pkgver}_Data/Resources/UnityPlayer.png" ${pkgdir}/usr/share/icons/hicolor/64x64/apps/${pkgname}.png
cp -a . ${pkgdir}/usr/share/games/${pkgname}
chmod +x "${pkgdir}/usr/share/games/${pkgname}/${pkgname}-${pkgver}.x86_64"
# The game needs to be launched from the data parent directory and it needs write access to this folder
echo -e "#!/bin/sh\ncd /usr/share/games/${pkgname}\n./\"${pkgname}-${pkgver}.x86_64\"" > ${pkgdir}/usr/bin/${pkgname}
chmod +x ${pkgdir}/usr/bin/${pkgname}
}
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 |