hexhub
This PKGBUILD downloads a prebuilt AppImage binary from oss.hexhub.cn, which is the vendor's own CDN/OSS host (matching the official site hexhub.cn), extracts it, and installs the contents. The host is not a well-known, independently verifiable mirror, but it does appear to be the vendor's own storage bucket. The core concern is that a prebuilt binary is being executed (chmod +x and --appimage-extract runs the AppImage), and the entire extracted contents are installed to /opt. There is a sha256sum check, which mitigates silent substitution to some degree, but the binary itself is opaque and unauditable. This is a classic medium-risk pattern: a closed-source prebuilt binary from a vendor-controlled but non-mainstream host, with no source build. Not clearly malicious, but a genuine supply-chain concern.
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:14
source=('https://oss.hexhub.cn/plugin/HexHub-amd64-appimage-1.3.0.AppImage')
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): This PKGBUILD downloads a prebuilt AppImage binary from oss.hexhub.cn, which is the vendor's own CDN/OSS host (matching the official site hexhub.cn), extracts it, and installs the contents. The host is not a well-known, independently verifiable mirror, but it does appear to be the vendor's own storage bucket. The core concern is that a prebuilt binary is being executed (chmod +x and --appimage-extract runs the AppImage), and the entire extracted contents are installed to /opt. There is a sha256sum check, which mitigates silent substitution to some degree, but the binary itself is opaque and unauditable. This is a classic medium-risk pattern: a closed-source prebuilt binary from a vendor-controlled but non-mainstream host, with no source build. Not clearly malicious, but a genuine supply-chain concern.
PKGBUILD
1 offending line(s) highlighted# Maintainer: wwxiaoqi <tahicoing@gmail.com>
# 1.3.0 updated by: YangYuS8 <YangYuS8@163.com>
pkgname=hexhub
pkgver=1.3.0
pkgrel=1
pkgdesc="database, docker, ssh, sftp. all in one"
arch=('x86_64')
url='https://www.hexhub.cn/'
license=('GPL')
depends=()
conflicts=()
options=("!strip" "!debug")
source=('https://oss.hexhub.cn/plugin/HexHub-amd64-appimage-1.3.0.AppImage')
sha256sums=('af03d64d97e671c14ffd29fa22bdef4eac5fe00f2448c8acf5b4ef34259dba2a')
_pkgname=HexHub-amd64-appimage-1.3.0.AppImage
noextract=("$_pkgname")
prepare() {
chmod +x "$_pkgname"
./"$_pkgname" --appimage-extract > /dev/null
}
build() {
# Adjust .desktop so it will work autside of AppImage container
sed -i \
-e "s|Exec=HexHub|Exec=/opt/$pkgname/AppRun|" \
-e "s+^Icon=.*+Icon=hexhub-bin+" \
-e "s|^Terminal=true|Terminal=false|" \
-e "s|^NoDisplay=true|NoDisplay=false|" \
"squashfs-root/appimagetool.desktop"
# Fix work no so files.
sed -i \
-e "s|cd \"\$(dirname \"\$0\")\"|cd /opt/$pkgname|" \
"squashfs-root/AppRun"
}
package() {
# Icon images
install -Dm644 "squashfs-root/hexhub.png" \
"$pkgdir/usr/share/icons/hicolor/512x512/apps/hexhub-bin.png"
# Desktop file
install -Dm644 "$srcdir/squashfs-root/appimagetool.desktop" \
"$pkgdir/usr/share/applications/HexHub.desktop"
# Copy executable
mkdir -p "$pkgdir/opt/$pkgname"
cp -r "$srcdir/squashfs-root/." "$pkgdir/opt/$pkgname/"
# Copy Bin run file
install -dm755 "$pkgdir/usr/bin"
cp -r "$pkgdir/opt/$pkgname/AppRun" "$pkgdir/usr/bin/hexhub"
}
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 |