pheonix-nfx-bin
A prebuilt binary is downloaded from a GitHub Pages host (pheonix-studios-git.github.io) rather than from official GitHub release assets; while this is plausibly the project's own infrastructure, GitHub Pages is a static hosting service where the content could be swapped without a code-signed release, and the package is new with few votes, making it an unverifiable prebuilt executable from a potentially swappable host — though the sha256 checksum does provide some integrity guarantee.
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:22
"NFX-v${pkgver}.zip::https://pheonix-studios-git.github.io/PPI/data/NFX/nfx_zip/NFX-v${pkgver}.zip"
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
An AI model (anthropic/claude-sonnet-4.6) reviewed this and agrees it is MEDIUM (confidence 72%): A prebuilt binary is downloaded from a GitHub Pages host (pheonix-studios-git.github.io) rather than from official GitHub release assets; while this is plausibly the project's own infrastructure, GitHub Pages is a static hosting service where the content could be swapped without a code-signed release, and the package is new with few votes, making it an unverifiable prebuilt executable from a potentially swappable host — though the sha256 checksum does provide some integrity guarantee.
PKGBUILD
1 offending line(s) highlightedpkgname=pheonix-nfx-bin
pkgver=1.0.2
pkgrel=3
pkgdesc="Cross-platform package manager for the Pheonix Studios ecosystem"
arch=('x86_64')
url="https://github.com/Pheonix-Studios-Git/NFX"
license=('MIT')
depends=('glibc')
provides=('nfx')
conflicts=('nfx')
groups=('pheonix-ecosystem')
options=('!strip')
source=(
"NFX-v${pkgver}.zip::https://pheonix-studios-git.github.io/PPI/data/NFX/nfx_zip/NFX-v${pkgver}.zip"
)
sha256sums=('73ed4b676f15ef08ea66adae1d9fdc870cb85e6a4d66b61345a3590545131fb2')
prepare() {
cd "$srcdir"
bsdtar -xf NFX-v${pkgver}.zip
}
check() {
"$srcdir/bin/linux/x86_64/dist/nfx" version >/dev/null
}
package() {
install -Dm755 \
"$srcdir/bin/linux/x86_64/dist/nfx" \
"$pkgdir/usr/bin/nfx"
if [[ -f "$srcdir/LICENSE" ]]; then
install -Dm644 \
"$srcdir/LICENSE" \
"$pkgdir/usr/share/licenses/$pkgname/LICENSE"
fi
if [[ -f "$srcdir/README.md" ]]; then
install -Dm644 \
"$srcdir/README.md" \
"$pkgdir/usr/share/doc/$pkgname/README.md"
fi
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-25 21:17:07 | Medium | 3 |
| 2026-09-25 21:13:17 | Medium | 3 |