hexhub
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-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 |