donkey-me
The PKGBUILD downloads a prebuilt binary archive ('runner' executable) from Dropbox, a personal/unofficial file-hosting service. The binary is installed and made executable at /opt/donkeyme/runner, and a wrapper script in /usr/bin invokes it directly. Dropbox links can be silently replaced by the account owner at any time, and the MD5 checksum (already a weak algorithm) only protects against accidental corruption, not a deliberate substitution by the host account owner. There is no GPG signature or stronger integrity guarantee. This is a genuine supply-chain concern: an executed binary from a non-official, user-controlled host. The risk is real but not evidence of active malice, so medium is the correct rating.
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=('https://www.dropbox.com/s/i6kw9tf6gu6lctw/donkeyme.zip?dl=0'
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 85%): The PKGBUILD downloads a prebuilt binary archive ('runner' executable) from Dropbox, a personal/unofficial file-hosting service. The binary is installed and made executable at /opt/donkeyme/runner, and a wrapper script in /usr/bin invokes it directly. Dropbox links can be silently replaced by the account owner at any time, and the MD5 checksum (already a weak algorithm) only protects against accidental corruption, not a deliberate substitution by the host account owner. There is no GPG signature or stronger integrity guarantee. This is a genuine supply-chain concern: an executed binary from a non-official, user-controlled host. The risk is real but not evidence of active malice, so medium is the correct rating.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Alfonso Saaverda "Son Link" <sonlink.dourden@gmail.com>
pkgname=donkey-me
pkgver=1.0
pkgrel=3
pkgdesc="A Donkey Kong game whit some grafics themes ispired on clasicals movies like Star Wars, Indiana Jones, Alien, etc"
arch=('i686' 'x86_64')
url='http://www.bruneras.com/games_donkeyme.php'
license=('FREE')
depends=('zlib' 'openssl-1.0' 'openal' 'mesa')
if [ "$CARCH" = "x86_64" ]; then
depends+=('lib32-zlib' 'lib32-openssl-1.0' 'lib32-openal' 'lib32-mesa')
fi
arch=('x86_64' 'i686')
source=('https://www.dropbox.com/s/i6kw9tf6gu6lctw/donkeyme.zip?dl=0'
${pkgname}.png ${pkgname}.desktop)
md5sums=('10a72ea8500088f956ddbafe54586024'
'23360dd4e532bb12ba66d9d42185d7b3'
'1c4a5d81d3419308de06ffb4a0d6e99f')
package() {
cd ${srcdir}/donkeyme
mkdir -p ${pkgdir}/usr/bin
echo "#!/bin/bash" > $pkgdir/usr/bin/$pkgname
echo "cd /opt/donkeyme/ && ./runner" >> $pkgdir/usr/bin/$pkgname
chmod 755 $pkgdir/usr/bin/$pkgname
mkdir -p ${pkgdir}/opt/donkeyme/assets/
cp * -r ${pkgdir}/opt/donkeyme/
find "$pkgdir"/opt -type f -exec chmod 644 "{}" \;
find "$pkgdir"/opt -type d -exec chmod 755 "{}" \;
chmod a+x ${pkgdir}/opt/donkeyme/runner
mkdir -p ${pkgdir}/usr/share/icons
mkdir -p ${pkgdir}/usr/share/applications/
install -m 644 "${srcdir}/${pkgname}.png" ${pkgdir}/usr/share/icons
install -m 644 "${srcdir}/${pkgname}.desktop" ${pkgdir}/usr/share/applications
}
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 |