portal-mc-bin
Installs a prebuilt AppImage binary from a personal/project GitHub release (tiouoo/Portal) with a pinned checksum, which is acceptable, but the icon is fetched from a personal domain (portal.tiouo.cc) with SKIP'd checksum; the main concern is the AppImage itself is an unreviewed prebuilt executable from a low-reputation, few-votes package with a personal domain, making supply-chain trust difficult to verify.
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:17
"portal.png::https://portal.tiouo.cc/portal-logo.png"
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
An AI model (anthropic/claude-sonnet-4.6) reviewed this and agrees it is MEDIUM (confidence 70%): Installs a prebuilt AppImage binary from a personal/project GitHub release (tiouoo/Portal) with a pinned checksum, which is acceptable, but the icon is fetched from a personal domain (portal.tiouo.cc) with SKIP'd checksum; the main concern is the AppImage itself is an unreviewed prebuilt executable from a low-reputation, few-votes package with a personal domain, making supply-chain trust difficult to verify.
PKGBUILD
1 offending line(s) highlighted# Maintainer: tiouoo <tiouo@qq.com>
pkgname=portal-mc-bin
pkgver=1.0.4
pkgrel=1
pkgdesc="Portal - Minecraft launcher/manager (stable release)"
arch=('x86_64')
url="https://portal.tiouo.cc/"
license=('GPL-3.0-or-later')
depends=('fuse2' 'hicolor-icon-theme' 'xdg-utils')
provides=("portal-mc=$pkgver")
conflicts=('portal-mc' 'portal-mc-commit-bin' 'portal-mc-nightly-bin')
options=('!strip' '!emptydirs')
_appimg="Portal.AppImage"
source_x86_64=(
"$_appimg::https://github.com/tiouoo/Portal/releases/latest/download/Portal.linux.x64.AppImage"
"portal.png::https://portal.tiouo.cc/portal-logo.png"
)
sha256sums_x86_64=('c1b9c1b3ea683db9bac7949ba8bf11f00e123fb2e2834f76a80fcff210f13050' 'SKIP')
noextract=("$_appimg")
package() {
install -Dm755 "$srcdir/$_appimg" "$pkgdir/opt/portal/Portal.AppImage"
install -Dm755 /dev/stdin "$pkgdir/usr/bin/portal" <<'EOF'
#!/bin/sh
exec /opt/portal/Portal.AppImage "$@"
EOF
install -Dm644 "$srcdir/portal.png" \
"$pkgdir/usr/share/icons/hicolor/512x512/apps/portal.png"
install -Dm644 /dev/stdin "$pkgdir/usr/share/applications/portal.desktop" <<'EOF'
[Desktop Entry]
Type=Application
Name=Portal
Comment=Portal - Minecraft launcher/manager
Icon=portal
Exec=portal %U
Terminal=false
Categories=Game;
MimeType=x-scheme-handler/portal;application/zip;application/x-zip-compressed;
EOF
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-20 09:12:45 | Medium | 3 |
| 2026-08-20 09:10:51 | Medium | 3 |