x16-prompt
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.
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-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 |