pyinstxtractor-ng-git
The PKGBUILD pulls pyinstxtractor-ng from its official GitHub repository (github.com/pyinstxtractor/pyinstxtractor-ng-git) and uses uv to install pyinstaller from PyPI solely as a build tool to bundle the Python script into a standalone binary. PyInstaller is a well-known, widely-used PyPI package. The resulting installed artifact is a single compiled binary placed in /usr/bin. While installing an unversioned/unpinned PyPI package at build time is not ideal from a reproducibility standpoint, this is a standard pattern for packaging Python tools and does not represent a meaningful supply-chain risk beyond what any PyPI-dependent package carries. The cheaper model's MEDIUM rating is a false positive — there is no unofficial or personal host involved, no obfuscation, and no executed binary from an untrusted source. The main concern is the lack of a pinned pyinstaller version, which is a low-severity packaging quality issue.
Triggered rules
llm_review
The static rules flagged this MEDIUM, but an AI model (anthropic/claude-4.6-sonnet-20260217) reviewed the full PKGBUILD and judged it LOW (confidence 72%): The PKGBUILD pulls pyinstxtractor-ng from its official GitHub repository (github.com/pyinstxtractor/pyinstxtractor-ng-git) and uses uv to install pyinstaller from PyPI solely as a build tool to bundle the Python script into a standalone binary. PyInstaller is a well-known, widely-used PyPI package. The resulting installed artifact is a single compiled binary placed in /usr/bin. While installing an unversioned/unpinned PyPI package at build time is not ideal from a reproducibility standpoint, this is a standard pattern for packaging Python tools and does not represent a meaningful supply-chain risk beyond what any PyPI-dependent package carries. The cheaper model's MEDIUM rating is a false positive — there is no unofficial or personal host involved, no obfuscation, and no executed binary from an untrusted source. The main concern is the lack of a pinned pyinstaller version, which is a low-severity packaging quality issue.
2 higher static findings superseded - not the current verdict (shown for transparency)
pip_install_external
`pip install <package>` fetches an unpinned package from PyPI at build time, outside source=() and makepkg's checksums.
-
PKGBUILD:25
uv pip install pyinstaller
alt_pkg_manager_install
A non-pip/npm package manager (pipx, uv, poetry, cargo install, go install, gem, conda…) fetches and builds an external package at build time, outside source=() and makepkg's checksums.
-
PKGBUILD:25
uv pip install pyinstaller
PKGBUILD
1 offending line(s) highlighted# Maintainer: oldkingOK <oldkingok.creeper@gmail.com>
pkgname=pyinstxtractor-ng-git
_pkgname="${pkgname%-git}"
pkgver=r28.b733293
pkgrel=1
pkgdesc="PyInstaller Extractor Next Generation"
arch=('any')
license=('GPL-3.0-only')
makedepends=('uv')
_main_py="pyinstxtractor_ng.py"
_main="${_pkgname}"
url="https://github.com/pyinstxtractor/${_pkgname}"
source=("git+${url}.git")
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/${_pkgname}"
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
package() {
cd "${srcdir}/${_pkgname}"
uv sync
source .venv/bin/activate
uv pip install pyinstaller
pyinstaller -F pyinstxtractor_ng.py --name pyinstxtractor-ng
install -Dm755 "${srcdir}/${_pkgname}/dist/${_main}" "${pkgdir}/usr/bin/${_main}"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 3 |
| 2026-09-16 00:03:17 | Low | 3 |
| 2026-09-15 00:25:31 | Low | 3 |
| 2026-09-14 00:27:57 | Low | 3 |
| 2026-09-13 00:19:54 | Low | 3 |
| 2026-09-12 00:25:17 | Low | 3 |
| 2026-09-11 00:19:22 | Low | 3 |
| 2026-09-10 00:22:44 | Low | 3 |
| 2026-09-09 00:04:09 | Low | 3 |
| 2026-09-08 00:18:08 | Low | 3 |
| 2026-09-07 00:30:15 | Low | 3 |
| 2026-09-06 00:17:06 | Low | 3 |
| 2026-09-05 00:16:27 | Low | 3 |
| 2026-09-04 00:03:13 | Low | 3 |
| 2026-09-03 00:15:47 | Low | 3 |
| 2026-09-02 00:02:31 | Low | 3 |
| 2026-09-01 00:11:19 | Low | 3 |
| 2026-08-31 00:19:57 | Low | 3 |
| 2026-08-30 00:04:14 | Low | 3 |
| 2026-08-29 00:29:17 | Low | 3 |