hyperbeam
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:14
source=("https://cdn.hyperbeam.com/${_file}")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The PKGBUILD downloads a prebuilt AppImage binary from cdn.hyperbeam.com, which is the official CDN for the Hyperbeam project. The binary is executed during prepare() to extract its contents (--appimage-extract), and the extracted native application is then installed to /opt. A sha256sum is provided, which pins the specific binary. The concern is that this is a closed-source, prebuilt executable from a vendor CDN rather than built from source — standard for proprietary AppImage packaging in the AUR. The risk is real but typical for this class of package: if the CDN were compromised or the vendor pushed a malicious update, users would execute arbitrary code. This is a genuine medium-severity supply-chain concern (prebuilt binary from a non-reproducible source), not a false positive, but also not evidence of active malice.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Cebtenzzre <cebtenzzre (at) gmail (dot) com>
# Contributor: Marcel O'Neil <marcel at marceloneil dot com>
pkgname=hyperbeam
pkgver=0.21.0
pkgrel=1
pkgdesc='Shared Browser App'
arch=('x86_64')
depends=(dbus-glib gtk3 libdbusmenu-gtk2 libindicator-gtk2 nss)
url='https://hyperbeam.com/'
license=('custom')
_file="Hyperbeam-${pkgver}.AppImage"
source=("https://cdn.hyperbeam.com/${_file}")
sha256sums=('ed4631b5ba93eb9080767826ac8ab8dbdd0dcbcb02c9bb7815081b5191cc77b2')
prepare() {
chmod +x "${_file}"
"./${_file}" --appimage-extract &> /dev/null
# update executable path in .desktop file
sed -i "s/Exec=/Exec=${pkgname}/" "squashfs-root/resources/assets/xdg.desktop"
}
package() {
cd squashfs-root/
chmod 755 -R .
# application
install -dm 755 "${pkgdir}/opt/${pkgname}"
cp -a . "${pkgdir}/opt/${pkgname}"
# executable
install -dm 755 "${pkgdir}/usr/bin"
ln -s "/opt/${pkgname}/${pkgname}" "${pkgdir}/usr/bin"
# .desktop file
install -Dm 644 "resources/assets/xdg.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
# icons
for i in 16 24 32 48 64 128 256 512 1024; do
install -Dm 644 "resources/assets/icons/png/${i}x${i}.png" \
"${pkgdir}/usr/share/icons/hicolor/${i}x${i}/apps/${pkgname}.png"
done
}
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 |