jack-editor
The PKGBUILD downloads a prebuilt binary installer script (jackhammer.run) from jack.hlfx.ru, which is the vendor's own domain for the J.A.C.K. level editor (SteamPipe/Jackhammer project by Aleksander Shatalov). The domain is not a major CDN or well-known mirror, but it is the actual upstream project host. However, the binary is executed directly (chmod +x; ./jackhammer.run --noexec --keep) without any verification beyond a sha256sum, and the host is a personal/small-vendor domain that could be compromised or silently updated. The sha256sum provides integrity checking against the pinned hash, which mitigates the worst supply-chain risk, but the source is still a prebuilt opaque binary from a non-authoritative third-party host. This is a genuine medium-severity concern: an executed binary from an unofficial/personal host, not clearly malicious but representing a real supply-chain risk if the host or binary is ever compromised.
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:10
source=("jackhammer.run::http://jack.hlfx.ru/en/download_jackhammer_linux64.html")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 82%): The PKGBUILD downloads a prebuilt binary installer script (jackhammer.run) from jack.hlfx.ru, which is the vendor's own domain for the J.A.C.K. level editor (SteamPipe/Jackhammer project by Aleksander Shatalov). The domain is not a major CDN or well-known mirror, but it is the actual upstream project host. However, the binary is executed directly (chmod +x; ./jackhammer.run --noexec --keep) without any verification beyond a sha256sum, and the host is a personal/small-vendor domain that could be compromised or silently updated. The sha256sum provides integrity checking against the pinned hash, which mitigates the worst supply-chain risk, but the source is still a prebuilt opaque binary from a non-authoritative third-party host. This is a genuine medium-severity concern: an executed binary from an unofficial/personal host, not clearly malicious but representing a real supply-chain risk if the host or binary is ever compromised.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Sebastiaan de Schaetzen <sebastiaan.de.schaetzen@gmail.com>
pkgname=jack-editor
pkgver=1.1.1064
pkgrel=2
pkgdesc="J.A.C.K. is a brand new level editor for games with a quake-style BSP architecture."
arch=("x86_64")
url=""
license=('GPL')
depends=(nas libpng12)
source=("jackhammer.run::http://jack.hlfx.ru/en/download_jackhammer_linux64.html")
sha256sums=("f2d02affd843a0d3191b45096435d7bcd7b2cf0d9d55ff3bc6094b732f41a4fa")
build() {
chmod +x jackhammer.run
./jackhammer.run --noexec --keep
}
package() {
mv -f linux_x64 jack
rm -f jack/install.sh
mv -f jack/Jack.desktop .
find jack -type d -exec chmod +x {} \;
find jack -type f -exec chmod +r {} \;
mkdir -p -m755 ${pkgdir}/opt/jack
mkdir -p -m755 ${pkgdir}/usr/bin
cp -rv jack ${pkgdir}/opt
install -D -m644 Jack.desktop ${pkgdir}/usr/share/applications/Jack.desktop
ln -s /opt/jack/Jack.sh ${pkgdir}/usr/bin/Jack
}
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 |