archcraft-pkg
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-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 |