ishell-pro-desktop
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-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 |