ishell

maintainer tsaitang · 0 votes · scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged This PKGBUILD downloads a prebuilt binary ZIP from an Aliyun OSS bucket (ishell-down.oss-cn-beijing.aliyuncs.com) — a personal/vendor-controlled object storage bucket rather than an official distribution channel like GitHub releases or a distro mirror. The binary is then installed and symlinked into /usr/bin for execution. The sha256sum provides integrity checking against accidental corruption but does not protect against the bucket owner substituting a malicious binary at the same URL. The host is not a recognized official release infrastructure (no GitHub, no official project CDN with transparent release process), and the package is a closed-source SSH tool with AI features, making the supply-chain risk real: if the OSS bucket is compromised or the owner pushes a malicious update, users execute arbitrary code. This is a textbook medium-severity supply-chain concern: executed binary from an unofficial/personal host with no source transparency.

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:9 source=("$pkgname-$pkgver.zip::https://ishell-down.oss-cn-beijing.aliyuncs.com/ishell_linux_$pkgver.zip")
MEDIUM AI review llm_review

An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 82%): This PKGBUILD downloads a prebuilt binary ZIP from an Aliyun OSS bucket (ishell-down.oss-cn-beijing.aliyuncs.com) — a personal/vendor-controlled object storage bucket rather than an official distribution channel like GitHub releases or a distro mirror. The binary is then installed and symlinked into /usr/bin for execution. The sha256sum provides integrity checking against accidental corruption but does not protect against the bucket owner substituting a malicious binary at the same URL. The host is not a recognized official release infrastructure (no GitHub, no official project CDN with transparent release process), and the package is a closed-source SSH tool with AI features, making the supply-chain risk real: if the OSS bucket is compromised or the owner pushes a malicious update, users execute arbitrary code. This is a textbook medium-severity supply-chain concern: executed binary from an unofficial/personal host with no source transparency.

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Tsaitang <tsaitang404@@gmail.com>
2pkgname=ishell
3pkgver=2.0.5
4pkgrel=1
5pkgdesc="轻量又高性能的SSH工具IShell:AI加持,快人一步"
6arch=('x86_64')
7url="https://ishell.cc/"
8depends=()
9source=("$pkgname-$pkgver.zip::https://ishell-down.oss-cn-beijing.aliyuncs.com/ishell_linux_$pkgver.zip")
10sha256sums=('3f98cf9af95200d647ee8f61a885bd800b360254141191f45cf8a0a7660b9215')
11
12package() {
13 # 定义安装目标路径
14 install_dir="$pkgdir/usr/share/ishell"
15
16 # 创建安装目标路径
17 mkdir -p "$install_dir"
18
19 # 解压软件包到安装目标路径
20 bsdtar xf "$srcdir/ishell-$pkgver.zip" -C "$install_dir"
21
22 # 在安装目标路径创建快捷方式
23 mkdir -p "$pkgdir/usr/bin"
24 ln -s "/usr/share/ishell/bundle/ishell" "$pkgdir/usr/bin/ishell"
25
26 # 在安装目标路径创建.desktop文件
27 mkdir -p "$pkgdir/usr/share/applications/"
28 echo "[Desktop Entry]
29 Name=ishell
30 Exec=ishell
31 Icon=/usr/share/ishell/bundle/data/flutter_assets/static/img/logo.png
32 Type=Application
33 Categories=Utility;" > "$pkgdir/usr/share/applications/ishell.desktop"
34}
35
36

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