archcraft-pkg
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
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")
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# Maintainer: Zaman Huseynli <zamanhuseynli23@gmail.com>
# Backup contact: admin@azccriminal.space
pkgname=archcraft-pkg
url=https://azccriminal.space
pkgver=1.0.0
pkgrel=1
pkgdesc="archcraft-pkg Alternative realtime crafting header coop reactivable and file-timesnapshot package utility."
arch=('any')
license=('GPL')
depends=('bash' 'zstd' 'tar' 'python')
source=("archcraft-pkg-src.tar.zst::https://mirror.azccriminal.space/dist/archcraft-pkg.pkg.tar.zst")
noextract=("archcraft-pkg-src.tar.zst")
sha256sums=('SKIP')
build() {
echo ":: Extracting archive"
mkdir -p "$srcdir/archcraft-pkg"
tar -I zstd -xf "$srcdir/archcraft-pkg-src.tar.zst" -C "$srcdir/archcraft-pkg"
echo ":: Searching for setup.py"
setup_path=$(find "$srcdir/archcraft-pkg" -type f -name "setup.py" | head -n 1)
if [[ -z "$setup_path" ]]; then
echo "!! setup.py not found."
exit 1
fi
setup_dir=$(dirname "$setup_path")
echo ":: Found setup.py in $setup_dir"
cd "$setup_dir" || exit 1
echo ":: Running setup.py build"
python setup.py build
}
package() {
echo ":: Searching for setup.py again"
setup_path=$(find "$srcdir/archcraft-pkg" -type f -name "setup.py" | head -n 1)
if [[ -z "$setup_path" ]]; then
echo "!! setup.py not found during packaging."
exit 1
fi
setup_dir=$(dirname "$setup_path")
cd "$setup_dir" || exit 1
echo ":: Installing to pkgdir"
python setup.py install --root="$pkgdir" --optimize=1
}
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 |