chatbox-bin

maintainer richin13 · 14 votes · scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged 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

MEDIUM source=() URL on a non-standard host 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}")
MEDIUM AI review 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
1# Contributor: redponike <proton (dot) me>
2# Contributor: Frederik Holm Strøm <aur@frederikstroem.com>
3# Contributor: Asuka Minato <i at asukaminato dot eu dot org>
4# Contributor: Aron Young <tkf6fkt at gmail dot com>
5# Contributor: Ricardo Madriz <richin13 at gmail dot com>
6
7_pkgname=Chatbox
8pkgname="chatbox-bin"
9pkgver=1.21.0
10pkgrel=1
11pkgdesc="User-friendly Desktop Client App for AI Models/LLMs (GPT, Claude, Gemini, Ollama...)"
12arch=('x86_64')
13url="https://chatboxai.app"
14license=('GPL-3.0')
15depends=('fuse2')
16provides=("$pkgname")
17conflicts=("chatbox-bin" "chatbox-git")
18options=(!strip)
19_appimage="${_pkgname}-${pkgver}-${arch}.AppImage"
20_pkgid="xyz.chatboxapp.app"
21source=("https://download.chatboxai.app/releases/${_appimage}")
22noextract=("$_appimage")
23sha512sums=('7109c9e551fd2165d0c158bede0057785396ce7b7cd77cb1132b44abef3565967fafdaf477e8e5dfd6520d272b81afb8324c3a6118199cc549f3fa6dd7e21332')
24
25prepare() {
26 # Make the AppImage executable
27 chmod +x "$_appimage"
28
29 # Extract the AppImage
30 "./$_appimage" --appimage-extract
31
32 # Update the Exec line in the desktop entry file and fix the icon.
33 sed -i -E "s:Exec=AppRun:Exec=/opt/${_pkgname}/${_appimage}:" "squashfs-root/${_pkgid}.desktop"
34 sed -i -E "s:StartupWMClass=Chatbox:StartupWMClass=${_pkgid}:" "squashfs-root/${_pkgid}.desktop"
35}
36
37package() {
38 # Install the AppImage and create a symlink
39 install -Dpm755 "${_appimage}" "${pkgdir}/opt/${_pkgname}/${_appimage}"
40 install -dm755 "${pkgdir}/usr/bin"
41 ln -s "/opt/${_pkgname}/${_appimage}" "${pkgdir}/usr/bin/${_pkgname}"
42
43 # Install the desktop entry file
44 install -Dm644 "${srcdir}/squashfs-root/${_pkgid}.desktop" "${pkgdir}/usr/share/applications/${_pkgid}.desktop"
45
46 # Install the icon
47 install -dm755 "${pkgdir}/usr/share/pixmaps/"
48 cp --no-preserve=mode,ownership "${srcdir}/squashfs-root/${_pkgid}.png" "${pkgdir}/usr/share/pixmaps/${_pkgid}.png"
49}
50

Scan history

Scanned at (UTC)SeverityRules
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

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion