rootapp

maintainer Iced-Coded · 0 votes · scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged 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.

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:13 source_x86_64=("Root-x86_64.AppImage::https://installer.rootapp.com/installer/Linux/X64/Root.AppImage")
MEDIUM AI review 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
1# Maintainer: Iced-Coded <volkogon212@gmail.com>
2
3pkgname=rootapp
4pkgver=1.0.0
5pkgrel=1
6pkgdesc="Experimental build of Root app via AppImage"
7arch=('x86_64' 'aarch64')
8url="https://www.rootapp.com"
9license=('Proprietary')
10depends=('fuse')
11options=(!strip)
12
13source_x86_64=("Root-x86_64.AppImage::https://installer.rootapp.com/installer/Linux/X64/Root.AppImage")
14source_aarch64=("Root-aarch64.AppImage::https://installer.rootapp.com/installer/Linux/Arm64/Root.AppImage")
15
16sha256sums_x86_64=('SKIP')
17sha256sums_aarch64=('SKIP')
18
19validpgpkeys=('172B42B0ABB988FA22047C50B7165C356A3983D9')
20
21prepare() {
22 chmod +x "$srcdir/"*.AppImage
23}
24
25package() {
26 install -Dm755 "$srcdir/"*.AppImage "$pkgdir/opt/$pkgname/$pkgname.AppImage"
27
28 install -d "$pkgdir/usr/bin"
29 ln -s "/opt/$pkgname/$pkgname.AppImage" "$pkgdir/usr/bin/$pkgname"
30
31 if command -v bsdtar >/dev/null 2>&1; then
32 "$srcdir/"*.AppImage --appimage-extract > /dev/null 2>&1 || true
33 find "$srcdir/squashfs-root" -type f -name '*.png' -exec install -Dm644 {} \
34 "$pkgdir/usr/share/icons/hicolor/256x256/apps/$pkgname.png" \; -quit
35 rm -rf "$srcdir/squashfs-root"
36 fi
37
38 install -Dm644 /dev/stdin "$pkgdir/usr/share/applications/$pkgname.desktop" <<EOF
39[Desktop Entry]
40Name=Root
41Exec=$pkgname
42Icon=$pkgname
43Type=Application
44Categories=Network;
45EOF
46}
47

Scan history

Scanned at (UTC)SeverityRules
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

Report a package

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

0 / 4000
Your suggestion