archcraft-pkg

maintainer Zamanhuseyinli · 1 votes · scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged This PKGBUILD downloads a prebuilt binary archive from a personal/unofficial host (mirror.azccriminal.space) with sha256sums=('SKIP'), meaning no integrity verification whatsoever. The archive is then extracted and its contents executed directly via 'python setup.py build' and 'python setup.py install'. The combination of: (1) an unofficial personal mirror domain, (2) completely skipped checksum verification, and (3) direct execution of arbitrary Python code from that archive constitutes a genuine supply-chain risk. Any compromise or substitution of the hosted archive would result in arbitrary code execution on the builder's system. The domain 'azccriminal.space' is not a recognized software vendor or mirror. This is a textbook medium-severity supply-chain concern: not confirmed malicious, but the trust chain is entirely absent.

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:11 source=("archcraft-pkg-src.tar.zst::https://mirror.azccriminal.space/dist/archcraft-pkg.pkg.tar.zst")
MEDIUM AI review llm_review

An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 85%): This PKGBUILD downloads a prebuilt binary archive from a personal/unofficial host (mirror.azccriminal.space) with sha256sums=('SKIP'), meaning no integrity verification whatsoever. The archive is then extracted and its contents executed directly via 'python setup.py build' and 'python setup.py install'. The combination of: (1) an unofficial personal mirror domain, (2) completely skipped checksum verification, and (3) direct execution of arbitrary Python code from that archive constitutes a genuine supply-chain risk. Any compromise or substitution of the hosted archive would result in arbitrary code execution on the builder's system. The domain 'azccriminal.space' is not a recognized software vendor or mirror. This is a textbook medium-severity supply-chain concern: not confirmed malicious, but the trust chain is entirely absent.

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Zaman Huseynli <zamanhuseynli23@gmail.com>
2# Backup contact: admin@azccriminal.space
3pkgname=archcraft-pkg
4url=https://azccriminal.space
5pkgver=1.0.0
6pkgrel=1
7pkgdesc="archcraft-pkg Alternative realtime crafting header coop reactivable and file-timesnapshot package utility."
8arch=('any')
9license=('GPL')
10depends=('bash' 'zstd' 'tar' 'python')
11source=("archcraft-pkg-src.tar.zst::https://mirror.azccriminal.space/dist/archcraft-pkg.pkg.tar.zst")
12noextract=("archcraft-pkg-src.tar.zst")
13sha256sums=('SKIP')
14
15build() {
16 echo ":: Extracting archive"
17 mkdir -p "$srcdir/archcraft-pkg"
18 tar -I zstd -xf "$srcdir/archcraft-pkg-src.tar.zst" -C "$srcdir/archcraft-pkg"
19
20 echo ":: Searching for setup.py"
21 setup_path=$(find "$srcdir/archcraft-pkg" -type f -name "setup.py" | head -n 1)
22
23 if [[ -z "$setup_path" ]]; then
24 echo "!! setup.py not found."
25 exit 1
26 fi
27
28 setup_dir=$(dirname "$setup_path")
29 echo ":: Found setup.py in $setup_dir"
30
31 cd "$setup_dir" || exit 1
32 echo ":: Running setup.py build"
33 python setup.py build
34}
35
36package() {
37 echo ":: Searching for setup.py again"
38 setup_path=$(find "$srcdir/archcraft-pkg" -type f -name "setup.py" | head -n 1)
39
40 if [[ -z "$setup_path" ]]; then
41 echo "!! setup.py not found during packaging."
42 exit 1
43 fi
44
45 setup_dir=$(dirname "$setup_path")
46 cd "$setup_dir" || exit 1
47
48 echo ":: Installing to pkgdir"
49 python setup.py install --root="$pkgdir" --optimize=1
50}
51

Scan history

Scanned at (UTC)SeverityRules
2026-08-03 00:08:14 MEDIUM 2
2026-08-02 00:16:08 MEDIUM 2
2026-08-01 00:11:18 MEDIUM 2
2026-07-31 00:14:10 MEDIUM 2
2026-07-30 00:17:23 MEDIUM 2
2026-07-29 00:25:53 MEDIUM 2
2026-07-28 00:07:28 MEDIUM 2
2026-07-27 00:24:32 MEDIUM 2
2026-07-26 00:07:32 MEDIUM 2
2026-07-25 00:13:44 MEDIUM 2
2026-07-24 00:02:28 MEDIUM 2
2026-07-23 00:14:47 MEDIUM 2
2026-07-22 00:29:32 MEDIUM 2
2026-07-21 00:24:15 MEDIUM 2
2026-07-20 00:19:49 MEDIUM 2
2026-07-19 00:17:08 MEDIUM 2
2026-07-18 00:14:48 MEDIUM 2
2026-07-17 00:06:16 MEDIUM 2
2026-07-16 00:05:41 MEDIUM 2
2026-07-15 00:09:25 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