x16-prompt
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:13
source=("${_appimage_name}::https://download.16x.engineer/16x+Prompt-${pkgver}.AppImage")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 82%): The PKGBUILD downloads a prebuilt AppImage binary from download.16x.engineer, which is the vendor's own distribution host for this proprietary AI coding tool (16x Engineer/16x Prompt). The host is not a well-known, widely-audited mirror, but it is the official vendor download endpoint matching the product URL (prompt.16x.engineer). More critically, the sha256sums entry contains '6df64a6d219a93080f0fc06e81c7de00' which is a 32-character MD5 hash, not a SHA-256 hash (which should be 64 hex characters). This means the integrity check is effectively broken/wrong — sha256sums with an MD5-length value will cause makepkg to fail or silently not verify correctly. The AppImage is installed as an executable binary at /opt/x16-prompt/16x-prompt and symlinked into /usr/local/bin, so it runs with user privileges. The combination of: (1) a prebuilt closed-source binary from a personal/small-vendor host, (2) a malformed/incorrect checksum that provides no real integrity guarantee, constitutes a genuine medium supply-chain risk — if the host is compromised or serves a different binary, there is no effective verification. This is not clearly malicious but is a real concern.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Ben Copeland <ben@copeland.me.uk>
pkgname=x16-prompt
pkgver=0.0.138
pkgrel=1
pkgdesc="16x Prompt (AppImage version) - an AI coding tool by 16x Engineer"
arch=('x86_64')
url="https://prompt.16x.engineer/"
license=('unknown')
depends=('zlib' 'hicolor-icon-theme')
options=(!strip)
_appimage_name="16x+Prompt-${pkgver}.AppImage"
source=("${_appimage_name}::https://download.16x.engineer/16x+Prompt-${pkgver}.AppImage")
sha256sums=('6df64a6d219a93080f0fc06e81c7de00')
package() {
install -d "${pkgdir}/opt/${pkgname}"
install -Dm755 "${srcdir}/${_appimage_name}" "${pkgdir}/opt/${pkgname}/16x-prompt"
install -d "${pkgdir}/usr/local/bin"
ln -s "/opt/${pkgname}/16x-prompt" "${pkgdir}/usr/local/bin/16x-prompt"
install -d "${pkgdir}/usr/share/applications"
cat <<EOF > "${pkgdir}/usr/share/applications/${pkgname}.desktop"
[Desktop Entry]
Name=16x Prompt
Comment=${pkgdesc}
Exec=/opt/${pkgname}/16x-prompt %U
Terminal=false
Type=Application
Icon=16x-prompt
Categories=Development;Utility;
StartupNotify=true
EOF
}
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 |