human-mcp-git
The package installs a self-update mechanism via a sudoers file and systemd service, but this is opt-in and requires explicit admin configuration; the source is from the maintainer's own GitHub repo, and no untrusted remote code execution is forced.
Triggered rules
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package installs a self-update mechanism via a sudoers file and systemd service, but this is opt-in and requires explicit admin configuration; the source is from the maintainer's own GitHub repo, and no untrusted remote code execution is forced.
1 higher static finding superseded - not the current verdict (shown for transparency)
privileged_install
The package grants elevated privileges or installs an update path outside pacman: a /etc/sudoers.d rule (often passwordless), a setuid/setgid binary, or a self-update script/service that can fetch and run future code with no checksum verification. The initial install may be verified, but the ongoing privilege + update surface is a real supply-chain / privilege-escalation risk.
-
PKGBUILD:42
install -Dm644 packaging/systemd/human-mcp-self-update.service "$pkgdir/usr/lib/systemd/system/human-mcp-self-update.service" -
PKGBUILD:43
install -Dm755 packaging/scripts/human-mcp-self-update "$pkgdir/usr/lib/human-mcp/human-mcp-self-update" -
PKGBUILD:44
install -Dm440 packaging/sudoers/human-mcp-self-update "$pkgdir/etc/sudoers.d/human-mcp-self-update"
PKGBUILD
3 offending line(s) highlighted# Maintainer: LIghtJUNction
pkgname=human-mcp-git
pkgver=0.1.21.r61.gaeabfaa
pkgrel=1
pkgdesc='Human-in-the-loop MCP server'
arch=('x86_64')
url='https://github.com/LIghtJUNction/human-mcp'
license=('MIT')
depends=('gcc-libs' 'openssl' 'sudo')
makedepends=('bun' 'cargo' 'git')
provides=('human-mcp')
conflicts=('human-mcp')
backup=('etc/human-mcp.env')
install=human-mcp.install
source=('git+https://github.com/LIghtJUNction/human-mcp.git')
sha256sums=('SKIP')
pkgver() {
cd human-mcp
printf '0.1.21.r%s.g%s' "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
prepare() {
cd human-mcp
git submodule update --init human-mcp-webui
}
build() {
cd human-mcp
(
cd human-mcp-webui
bun install --frozen-lockfile
bun run build
)
cargo build --release --locked
}
package() {
cd human-mcp
install -Dm755 target/release/human-mcp "$pkgdir/usr/bin/human-mcp"
install -Dm644 packaging/systemd/human-mcp.service "$pkgdir/usr/lib/systemd/system/human-mcp.service"
install -Dm644 packaging/systemd/human-mcp-self-update.service "$pkgdir/usr/lib/systemd/system/human-mcp-self-update.service"
install -Dm755 packaging/scripts/human-mcp-self-update "$pkgdir/usr/lib/human-mcp/human-mcp-self-update"
install -Dm440 packaging/sudoers/human-mcp-self-update "$pkgdir/etc/sudoers.d/human-mcp-self-update"
install -Dm644 packaging/sysusers/human-mcp.conf "$pkgdir/usr/lib/sysusers.d/human-mcp.conf"
install -Dm644 packaging/tmpfiles/human-mcp.conf "$pkgdir/usr/lib/tmpfiles.d/human-mcp.conf"
install -Dm640 env.example "$pkgdir/etc/human-mcp.env"
install -dm755 "$pkgdir/usr/share/human-mcp/web"
cp -a --no-preserve=ownership human-mcp-webui/dist/. "$pkgdir/usr/share/human-mcp/web/"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 2 |
| 2026-09-16 00:03:17 | Low | 2 |
| 2026-09-15 00:25:31 | Low | 2 |
| 2026-09-14 00:27:57 | Low | 2 |
| 2026-09-13 00:19:54 | Low | 2 |
| 2026-09-12 00:25:17 | Low | 2 |
| 2026-09-11 00:19:22 | Low | 2 |
| 2026-09-10 00:22:44 | Low | 2 |
| 2026-09-09 00:04:09 | Low | 2 |
| 2026-09-08 00:18:08 | Low | 2 |
| 2026-09-07 00:30:15 | Low | 2 |
| 2026-09-06 00:17:06 | Low | 2 |
| 2026-09-05 00:16:27 | Low | 2 |
| 2026-09-04 00:03:13 | Low | 2 |
| 2026-09-03 00:15:47 | Low | 2 |
| 2026-09-02 00:02:31 | Low | 2 |
| 2026-09-01 00:11:19 | Low | 2 |
| 2026-08-31 00:19:57 | Low | 2 |
| 2026-08-30 00:04:14 | Low | 2 |
| 2026-08-29 00:29:17 | Low | 3 |