rootchat-bin
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=("Root-${pkgver}.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 72%): The PKGBUILD downloads a prebuilt AppImage from installer.rootapp.com, which appears to be the official vendor's CDN/installer host for rootapp.com. The AppImage is executed during prepare() via --appimage-extract to unpack it, and the resulting binaries are installed. The sha256sum is pinned, which mitigates MITM risk, but the URL points to a mutable path (Root.AppImage without version in the path), meaning the checksum could become stale or the file could be silently replaced at the source. This is a standard pattern for binary AppImage packages in the AUR, but the non-versioned URL means the checksum is the only integrity guarantee. The host (installer.rootapp.com) is plausibly the official vendor infrastructure. Overall this is a legitimate medium-risk pattern: executed binary from a vendor host with a fixed checksum but a mutable URL — not clearly malicious, but a real supply-chain concern if the host or the file is ever substituted.
PKGBUILD
1 offending line(s) highlighted# Maintainer: cloudwithax <heyimnick14@gmail.com>
pkgname=rootchat-bin
pkgver=0.9.84
pkgrel=1
pkgdesc="A community platform combining chat with task management, raid planning, and customizable apps"
arch=('x86_64')
url="https://rootapp.com"
license=('custom')
depends=('zlib' 'gcc-libs' 'glibc' 'fuse2')
provides=('rootchat')
conflicts=('rootchat')
options=('!strip' '!debug')
source=("Root-${pkgver}.AppImage::https://installer.rootapp.com/installer/Linux/X64/Root.AppImage")
sha256sums=('06a5564ccaaf38eab76f6a3a0e49cca2db822028a1d1a7be2dafd9a8f47bf4f9')
noextract=("Root-${pkgver}.AppImage")
prepare() {
chmod +x "${srcdir}/Root-${pkgver}.AppImage"
"${srcdir}/Root-${pkgver}.AppImage" --appimage-extract
}
package() {
install -dm755 "${pkgdir}/opt/${pkgname}"
cp -r "${srcdir}/squashfs-root/usr/bin/"* "${pkgdir}/opt/${pkgname}/"
install -dm755 "${pkgdir}/usr/bin"
ln -s "/opt/${pkgname}/Root" "${pkgdir}/usr/bin/rootchat"
install -Dm644 "${srcdir}/squashfs-root/Root.png" "${pkgdir}/usr/share/pixmaps/rootchat.png"
install -Dm644 /dev/stdin "${pkgdir}/usr/share/applications/rootchat.desktop" <<EOF
[Desktop Entry]
Type=Application
Name=Root
Comment=Community platform combining chat with task management and customizable apps
Exec=rootchat
Icon=rootchat
Terminal=false
StartupWMClass=Root
Categories=Network;InstantMessaging;
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 |