rootapp
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:13
source_x86_64=("Root-x86_64.AppImage::https://installer.rootapp.com/installer/Linux/X64/Root.AppImage")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 78%): This PKGBUILD downloads a prebuilt proprietary AppImage binary from installer.rootapp.com with SKIP'd checksums (no integrity verification), then installs and executes it. The concerns are: (1) SKIP checksums mean any MITM or server-side substitution goes undetected; (2) the AppImage is executed during package() to extract icons (--appimage-extract), meaning arbitrary code runs at build time; (3) installer.rootapp.com is the vendor's own installer subdomain, not a well-known mirror, and 'rootapp' is an obscure/unverified proprietary application. The validpgpkeys entry is present but never actually used to verify the downloaded AppImage (there is no sig source). This is a genuine supply-chain concern: an executed binary from an unverified host with no checksum. Not clearly malicious, but a real medium-severity risk.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Iced-Coded <volkogon212@gmail.com>
pkgname=rootapp
pkgver=1.0.0
pkgrel=1
pkgdesc="Experimental build of Root app via AppImage"
arch=('x86_64' 'aarch64')
url="https://www.rootapp.com"
license=('Proprietary')
depends=('fuse')
options=(!strip)
source_x86_64=("Root-x86_64.AppImage::https://installer.rootapp.com/installer/Linux/X64/Root.AppImage")
source_aarch64=("Root-aarch64.AppImage::https://installer.rootapp.com/installer/Linux/Arm64/Root.AppImage")
sha256sums_x86_64=('SKIP')
sha256sums_aarch64=('SKIP')
validpgpkeys=('172B42B0ABB988FA22047C50B7165C356A3983D9')
prepare() {
chmod +x "$srcdir/"*.AppImage
}
package() {
install -Dm755 "$srcdir/"*.AppImage "$pkgdir/opt/$pkgname/$pkgname.AppImage"
install -d "$pkgdir/usr/bin"
ln -s "/opt/$pkgname/$pkgname.AppImage" "$pkgdir/usr/bin/$pkgname"
if command -v bsdtar >/dev/null 2>&1; then
"$srcdir/"*.AppImage --appimage-extract > /dev/null 2>&1 || true
find "$srcdir/squashfs-root" -type f -name '*.png' -exec install -Dm644 {} \
"$pkgdir/usr/share/icons/hicolor/256x256/apps/$pkgname.png" \; -quit
rm -rf "$srcdir/squashfs-root"
fi
install -Dm644 /dev/stdin "$pkgdir/usr/share/applications/$pkgname.desktop" <<EOF
[Desktop Entry]
Name=Root
Exec=$pkgname
Icon=$pkgname
Type=Application
Categories=Network;
EOF
}
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 |