ishell-pro-desktop
This PKGBUILD downloads and installs a prebuilt binary (ishell_pro, a Flutter-based SSH client) from down.ishell.cc, which is the vendor's own download subdomain matching the product's official URL (www.ishell.cc). The host appears to be the legitimate vendor distribution point rather than a random personal host, which reduces but does not eliminate supply-chain risk — there is no code-signing or GPG verification, only a sha256sum. The binary is an SSH client that handles credentials and connections, making any compromise particularly impactful. The sha256sum has only 63 hex characters (should be 64), which is a checksum integrity issue. The PKGBUILD also has shell syntax errors (missing spaces in `if [!` and `if [-f`), making it likely broken. Overall: a prebuilt closed-source binary from a vendor subdomain with a malformed checksum and no signature verification is a genuine medium supply-chain concern, not a false positive.
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:34
source=("https://down.ishell.cc/ishell_linux_2.0.5.zip")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 82%): This PKGBUILD downloads and installs a prebuilt binary (ishell_pro, a Flutter-based SSH client) from down.ishell.cc, which is the vendor's own download subdomain matching the product's official URL (www.ishell.cc). The host appears to be the legitimate vendor distribution point rather than a random personal host, which reduces but does not eliminate supply-chain risk — there is no code-signing or GPG verification, only a sha256sum. The binary is an SSH client that handles credentials and connections, making any compromise particularly impactful. The sha256sum has only 63 hex characters (should be 64), which is a checksum integrity issue. The PKGBUILD also has shell syntax errors (missing spaces in `if [!` and `if [-f`), making it likely broken. Overall: a prebuilt closed-source binary from a vendor subdomain with a malformed checksum and no signature verification is a genuine medium supply-chain concern, not a false positive.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Lenn <huangyanjie@huangyanjie.com>
pkgname=ishell-pro-desktop
pkginstallname=ishell-pro
pkgver=2.0.5
pkgrel=1
pkgdesc="基于flutter的轻量级功能强大的SSH客户端"
arch=('x86_64')
url="https://www.ishell.cc/en"
license=('unknow')
depends=(
'gtk3'
'libayatana-appindicator'
'glibc'
'gcc-libs'
'pango'
'cairo'
'glib2'
'libx11'
'libxcb'
'zlib'
'libpng'
'freetype2'
'harfbuzz'
'atk'
'libepoxy'
)
optdepends=(
'xclip: 剪贴板支持'
'libnotify: 桌面通知'
'libappindicator-gtk3: 系统托盘支持'
'libxtst: 屏幕截图增强'
)
source=("https://down.ishell.cc/ishell_linux_2.0.5.zip")
sha256sums=('3f98cf9af95200d647ee8f61a885bd800b360254141191f45cf8a0a7660b9215')
prepare(){
if [! -f "$srcdir/ishell_pro"]; then
error "Main executable ishell_pro not found in the source!"
return 1
fi
}
package() {
install -dm755 "$pkgdir/opt/$pkginstallname"
#install -dm755 "$pkgdir/usr/bin"
# 复制全部文件到 /opt
cp -r --no-preserve=ownership --preserve=mode \
"$srcdir"/bundle/{data,ishell_pro,lib} \
"$pkgdir/opt/$pkginstallname"
install -Dm755 /dev/null "$pkgdir/usr/bin/$pkginstallname"
cat > "$pkgdir/usr/bin/$pkginstallname" <<EOF
#!/bin/sh
cd /opt/$pkginstallname
exec ./ishell_pro "\$@"
EOF
chmod +x "$pkgdir/usr/bin/$pkginstallname"
install -Dm644 /dev/null "$pkgdir/usr/share/applications/$pkginstallname.desktop"
cat > "$pkgdir/usr/share/applications/$pkginstallname.desktop" <<EOF
[Desktop Entry]
Name=iShell Pro
Comment=Modern Flutter-based SSH client
Exec=$pkginstallname
Icon=/opt/$pkginstallname/data/flutter_assets/static/img/new_logo_black_512.png
Terminal=false
Type=Application
Categories=Utility;TerminalEmulator;
StartupWMClass=ishell_pro
EOF
if [-f "$srcdir/data/flutter_assets/static/img/new_logo_black_512.png"]; then
install -Dm644 "$srcdir/data/flutter_assets/static/img/new_logo_black_512.png $pkgdir/usr/share/pixmaps/$pkginstallname.png"
fi
}
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 |