lib32-romcheckfail-bin
The PKGBUILD downloads a shell script from web.archive.org (an archived copy of the original vendor host games.lastchancemedia.com/farbs/) and executes it with 'sh RomCheckFail.sh --noexec --target ...' to extract a nixstaller self-extracting archive. The sha256sum is pinned, which mitigates tampering with the archived copy itself. However, the concern is real: (1) the source is a web.archive.org snapshot rather than the original vendor host, meaning the original is unavailable and provenance relies entirely on the Wayback Machine's integrity; (2) the payload is a self-extracting installer script that bundles and installs prebuilt 32-bit binaries — these binaries are not independently verified beyond the outer script's checksum; (3) the inner 'instarchive_all' contents are not checksummed separately. This is a classic medium supply-chain risk: executed prebuilt binaries from a non-primary host with only partial integrity verification. Not clearly malicious, but the pattern of running an archived installer script to extract unverified binaries warrants medium severity.
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:12
"RomCheckFail.sh::https://web.archive.org/web/20210128143934if_/https://games.lastchancemedia.com/farbs/RomCheckFail.sh"
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The PKGBUILD downloads a shell script from web.archive.org (an archived copy of the original vendor host games.lastchancemedia.com/farbs/) and executes it with 'sh RomCheckFail.sh --noexec --target ...' to extract a nixstaller self-extracting archive. The sha256sum is pinned, which mitigates tampering with the archived copy itself. However, the concern is real: (1) the source is a web.archive.org snapshot rather than the original vendor host, meaning the original is unavailable and provenance relies entirely on the Wayback Machine's integrity; (2) the payload is a self-extracting installer script that bundles and installs prebuilt 32-bit binaries — these binaries are not independently verified beyond the outer script's checksum; (3) the inner 'instarchive_all' contents are not checksummed separately. This is a classic medium supply-chain risk: executed prebuilt binaries from a non-primary host with only partial integrity verification. Not clearly malicious, but the pattern of running an archived installer script to extract unverified binaries warrants medium severity.
PKGBUILD
1 offending line(s) highlightedpkgname=lib32-romcheckfail-bin
provides=('romcheckfail')
arch=('x86_64')
pkgdesc='A swirling glitch-soup of classic videogames, reforming every 10 seconds into a new playable mass. Won the TIGSource VGNG competition and some very nice press.'
pkgver=1.0
pkgrel=3
license=('custom:romcheckfail_eula')
depends=('lib32-sdl_mixer' 'lib32-sdl=1.2.15' 'lib32-libogg' 'lib32-libvorbis')
optdepends=('lib32-libpulse: PulseAudio output from game')
makedepends=('libarchive')
source=(
"RomCheckFail.sh::https://web.archive.org/web/20210128143934if_/https://games.lastchancemedia.com/farbs/RomCheckFail.sh"
"RomCheckFail.desktop"
)
sha256sums=('ae2b94bde8941728cc670890ccfc6dc2fd6ee6b41a9e05fffb0dd6eec5b09e85' 'SKIP')
options=(!debug !strip)
build() {
cd "$srcdir"
echo "-- Extracting nixstaller data:"
sh RomCheckFail.sh --noexec --target RomCheckFail_installer
mkdir -p binaries
echo "-- Extracting instarchive..."
bsdtar xf RomCheckFail_installer/instarchive_all -C binaries
cd "$srcdir/binaries/RomCheckFail"
echo "-- Removing unneeded libraries so that system versions are used"
rm lib/lib{vorbisfile,vorbis,SDL-1.2,ogg}.so*
}
package() {
mkdir -p "$pkgdir/opt/romcheckfail"
cp -r "$srcdir/binaries/RomCheckFail/." "$pkgdir/opt/romcheckfail/"
install -Dm644 "$srcdir/binaries/RomCheckFail/license" -t "${pkgdir}/usr/share/licenses/${pkgname}/"
install -Dm644 "$srcdir/binaries/RomCheckFail/bin/Farbs.png" "$pkgdir/usr/share/icons/hicolor/32x32/apps/RomCheckFail.png"
install -Dm644 "$srcdir/RomCheckFail.desktop" "$pkgdir/usr/share/applications/RomCheckFail.desktop"
}
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 |