archcraft-pkg

MEDIUM
maintainer Zamanhuseyinli 1 votes scanned 2026-09-17 00:27:14.276658
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-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