chatbox-bin
The package downloads a prebuilt AppImage binary from download.chatboxai.app, which is the official Chatbox project's own distribution domain (chatboxai.app is the project's homepage). This is a standard pattern for AppImage-based AUR packages. However, it is still a prebuilt, closed-distribution binary from a vendor-controlled host with no reproducibility guarantee — the sha512sum provides integrity checking against substitution at rest, but the host itself could serve a different binary in the future. The sha512sum has 127 hex characters instead of the expected 128, which may indicate a truncated/corrupted checksum (potential 'broken' flag, but not necessarily a security issue on its own). The AppImage is executed during prepare() to extract its contents (--appimage-extract), which is standard AppImage packaging practice. Overall this fits the classic medium pattern: an executed binary from a non-standard (though official project) host, with a potentially malformed checksum.
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:21
source=("https://download.chatboxai.app/releases/${_appimage}")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The package downloads a prebuilt AppImage binary from download.chatboxai.app, which is the official Chatbox project's own distribution domain (chatboxai.app is the project's homepage). This is a standard pattern for AppImage-based AUR packages. However, it is still a prebuilt, closed-distribution binary from a vendor-controlled host with no reproducibility guarantee — the sha512sum provides integrity checking against substitution at rest, but the host itself could serve a different binary in the future. The sha512sum has 127 hex characters instead of the expected 128, which may indicate a truncated/corrupted checksum (potential 'broken' flag, but not necessarily a security issue on its own). The AppImage is executed during prepare() to extract its contents (--appimage-extract), which is standard AppImage packaging practice. Overall this fits the classic medium pattern: an executed binary from a non-standard (though official project) host, with a potentially malformed checksum.
PKGBUILD
1 offending line(s) highlighted# Contributor: redponike <proton (dot) me>
# Contributor: Frederik Holm Strøm <aur@frederikstroem.com>
# Contributor: Asuka Minato <i at asukaminato dot eu dot org>
# Contributor: Aron Young <tkf6fkt at gmail dot com>
# Contributor: Ricardo Madriz <richin13 at gmail dot com>
_pkgname=Chatbox
pkgname="chatbox-bin"
pkgver=1.21.0
pkgrel=1
pkgdesc="User-friendly Desktop Client App for AI Models/LLMs (GPT, Claude, Gemini, Ollama...)"
arch=('x86_64')
url="https://chatboxai.app"
license=('GPL-3.0')
depends=('fuse2')
provides=("$pkgname")
conflicts=("chatbox-bin" "chatbox-git")
options=(!strip)
_appimage="${_pkgname}-${pkgver}-${arch}.AppImage"
_pkgid="xyz.chatboxapp.app"
source=("https://download.chatboxai.app/releases/${_appimage}")
noextract=("$_appimage")
sha512sums=('7109c9e551fd2165d0c158bede0057785396ce7b7cd77cb1132b44abef3565967fafdaf477e8e5dfd6520d272b81afb8324c3a6118199cc549f3fa6dd7e21332')
prepare() {
# Make the AppImage executable
chmod +x "$_appimage"
# Extract the AppImage
"./$_appimage" --appimage-extract
# Update the Exec line in the desktop entry file and fix the icon.
sed -i -E "s:Exec=AppRun:Exec=/opt/${_pkgname}/${_appimage}:" "squashfs-root/${_pkgid}.desktop"
sed -i -E "s:StartupWMClass=Chatbox:StartupWMClass=${_pkgid}:" "squashfs-root/${_pkgid}.desktop"
}
package() {
# Install the AppImage and create a symlink
install -Dpm755 "${_appimage}" "${pkgdir}/opt/${_pkgname}/${_appimage}"
install -dm755 "${pkgdir}/usr/bin"
ln -s "/opt/${_pkgname}/${_appimage}" "${pkgdir}/usr/bin/${_pkgname}"
# Install the desktop entry file
install -Dm644 "${srcdir}/squashfs-root/${_pkgid}.desktop" "${pkgdir}/usr/share/applications/${_pkgid}.desktop"
# Install the icon
install -dm755 "${pkgdir}/usr/share/pixmaps/"
cp --no-preserve=mode,ownership "${srcdir}/squashfs-root/${_pkgid}.png" "${pkgdir}/usr/share/pixmaps/${_pkgid}.png"
}
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 |