band
The package downloads a prebuilt binary .deb from ssl.pstatic.net, which is Naver's CDN (BAND is a Naver product). This is the official vendor distribution host for BAND desktop, not a random personal host. However, there are no checksums verified at build time beyond the sha256sums array (which is present and non-trivial), and the package installs a prebuilt Electron binary with SUID chrome-sandbox. The source is a closed-source proprietary binary from the vendor's own CDN, which is a legitimate but inherently trust-requiring pattern. The sha256sums are present and pinned, mitigating substitution risk. The main concern is that this is an executed prebuilt binary blob from a vendor CDN rather than source-compiled code, which is standard medium territory for AUR binary packages. No obfuscation, no exfiltration, no piracy. The cheaper model's concern about 'non-standard host' is partially a false positive since ssl.pstatic.net is Naver's official static content CDN, but the binary execution concern is real and warrants medium rather than clean.
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:10
"https://ssl.pstatic.net/cmstatic/desktop/v${pkgver}/BAND-${pkgver}-amd64.deb"
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 binary .deb from ssl.pstatic.net, which is Naver's CDN (BAND is a Naver product). This is the official vendor distribution host for BAND desktop, not a random personal host. However, there are no checksums verified at build time beyond the sha256sums array (which is present and non-trivial), and the package installs a prebuilt Electron binary with SUID chrome-sandbox. The source is a closed-source proprietary binary from the vendor's own CDN, which is a legitimate but inherently trust-requiring pattern. The sha256sums are present and pinned, mitigating substitution risk. The main concern is that this is an executed prebuilt binary blob from a vendor CDN rather than source-compiled code, which is standard medium territory for AUR binary packages. No obfuscation, no exfiltration, no piracy. The cheaper model's concern about 'non-standard host' is partially a false positive since ssl.pstatic.net is Naver's official static content CDN, but the binary execution concern is real and warrants medium rather than clean.
PKGBUILD
1 offending line(s) highlighted# Maintainer: KatTheFox <katthefoxmaid at gmail dot com>
# Contributor: 7k5x <7k5xlp0onfire at gmail dot com>
# Submitter : djnk8 <djnk8 at mailinator dot com>
pkgname='band'
pkgver=1.10.10
pkgrel=1
pkgdesc='BAND desktop application'
arch=('x86_64')
source=(
"https://ssl.pstatic.net/cmstatic/desktop/v${pkgver}/BAND-${pkgver}-amd64.deb"
'LICENSE'
)
url='https://band.us/'
license=('custom:band')
depends=('xdg-utils' 'util-linux-libs' 'pango' 'nss' 'nspr' 'mesa' 'libxtst' 'libxss' 'libxrender' 'libxrandr' 'libxi' 'libxext' 'libxdamage' 'libxcursor' 'libxcomposite' 'libxcb' 'libx11' 'libsecret' 'libnotify' 'libdrm' 'libcups' 'libappindicator-gtk3' 'hicolor-icon-theme' 'gtk3' 'glibc' 'glib2' 'gdk-pixbuf2' 'gcc-libs' 'expat' 'desktop-file-utils' 'dbus' 'cairo' 'atk' 'at-spi2-core' 'at-spi2-atk' 'alsa-lib')
sha256sums=(
'c1ed7394c5e6cf010248b241cda9a5249e80930d8c628a5beb15c85ba9422853'
'263470054abd943b85dd3fa80807b8747d93dcc514cfc64f547e5029cc48d169'
)
pre_install() {
# 설치전 작업
# 1. kill BAND process
echo "Closing BAND Desktop..."
while pkill -TERM -f "/usr/share/BAND/BAND" > /dev/null
do
sleep 1
done
}
post_install() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
# Link to the binary
ln -sf '/opt/BAND/band' '/usr/bin/band'
# SUID chrome-sandbox for Electron 5+
chmod 4755 '/opt/BAND/chrome-sandbox' || true
update-mime-database /usr/share/mime || true
update-desktop-database /usr/share/applications || true
update-desktop-database -q
}
pre_upgrade() {
pre_install
}
post_upgrade() {
post_install
}
post_remove() {
gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
# Delete the link to the binary
rm -f '/usr/bin/band'
update-desktop-database -q
}
package() {
msg2 "Extracting package binaries(data.tar.xz)..."
bsdtar -xf ${srcdir}/data.tar.xz -C "${pkgdir}/"
install -Dm644 -t "${pkgdir}/usr/share/licenses/band/LICENSE" ${srcdir}/LICENSE
}
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 |