ishell

MEDIUM
maintainer tsaitang 0 votes scanned 2026-09-17 00:27:14.276658
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-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

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion