band

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

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:10 "https://ssl.pstatic.net/cmstatic/desktop/v${pkgver}/BAND-${pkgver}-amd64.deb"
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 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
1# Maintainer: KatTheFox <katthefoxmaid at gmail dot com>
2# Contributor: 7k5x <7k5xlp0onfire at gmail dot com>
3# Submitter : djnk8 <djnk8 at mailinator dot com>
4pkgname='band'
5pkgver=1.10.10
6pkgrel=1
7pkgdesc='BAND desktop application'
8arch=('x86_64')
9source=(
10 "https://ssl.pstatic.net/cmstatic/desktop/v${pkgver}/BAND-${pkgver}-amd64.deb"
11 'LICENSE'
12)
13url='https://band.us/'
14license=('custom:band')
15depends=('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')
16sha256sums=(
17 'c1ed7394c5e6cf010248b241cda9a5249e80930d8c628a5beb15c85ba9422853'
18 '263470054abd943b85dd3fa80807b8747d93dcc514cfc64f547e5029cc48d169'
19)
20pre_install() {
21
22 # 설치전 작업
23
24 # 1. kill BAND process
25 echo "Closing BAND Desktop..."
26 while pkill -TERM -f "/usr/share/BAND/BAND" > /dev/null
27 do
28 sleep 1
29 done
30
31}
32
33post_install() {
34 gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
35
36 # Link to the binary
37 ln -sf '/opt/BAND/band' '/usr/bin/band'
38
39 # SUID chrome-sandbox for Electron 5+
40 chmod 4755 '/opt/BAND/chrome-sandbox' || true
41
42 update-mime-database /usr/share/mime || true
43 update-desktop-database /usr/share/applications || true
44 update-desktop-database -q
45}
46
47pre_upgrade() {
48 pre_install
49}
50
51post_upgrade() {
52 post_install
53}
54
55post_remove() {
56 gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
57
58 # Delete the link to the binary
59 rm -f '/usr/bin/band'
60 update-desktop-database -q
61}
62
63package() {
64 msg2 "Extracting package binaries(data.tar.xz)..."
65 bsdtar -xf ${srcdir}/data.tar.xz -C "${pkgdir}/"
66 install -Dm644 -t "${pkgdir}/usr/share/licenses/band/LICENSE" ${srcdir}/LICENSE
67}
68

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