jack-editor

MEDIUM
maintainer seeseemelk 1 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

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

Medium source=() URL on a non-standard host 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")
Medium AI review 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
1# Maintainer: Sebastiaan de Schaetzen <sebastiaan.de.schaetzen@gmail.com>
2pkgname=jack-editor
3pkgver=1.1.1064
4pkgrel=2
5pkgdesc="J.A.C.K. is a brand new level editor for games with a quake-style BSP architecture."
6arch=("x86_64")
7url=""
8license=('GPL')
9depends=(nas libpng12)
10source=("jackhammer.run::http://jack.hlfx.ru/en/download_jackhammer_linux64.html")
11sha256sums=("f2d02affd843a0d3191b45096435d7bcd7b2cf0d9d55ff3bc6094b732f41a4fa")
12
13build() {
14 chmod +x jackhammer.run
15 ./jackhammer.run --noexec --keep
16}
17
18package() {
19 mv -f linux_x64 jack
20 rm -f jack/install.sh
21 mv -f jack/Jack.desktop .
22 find jack -type d -exec chmod +x {} \;
23 find jack -type f -exec chmod +r {} \;
24 mkdir -p -m755 ${pkgdir}/opt/jack
25 mkdir -p -m755 ${pkgdir}/usr/bin
26 cp -rv jack ${pkgdir}/opt
27 install -D -m644 Jack.desktop ${pkgdir}/usr/share/applications/Jack.desktop
28 ln -s /opt/jack/Jack.sh ${pkgdir}/usr/bin/Jack
29}
30

Scan history

Scanned at (UTC)SeverityRules
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

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion