ggdo
The package builds a sudo-like tool from its own Codeberg source and intentionally sets the setuid bit on the binary, which is expected behavior for a privilege-escalation utility; the main concerns are the SKIP'd checksum on a git source and that it's a low-vote package, but there is no obfuscation, exfiltration, or unverifiable prebuilt binary involved.
Triggered rules
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
The static rules flagged this MEDIUM, but an AI model (anthropic/claude-sonnet-4.6) reviewed the full PKGBUILD and judged it LOW (confidence 70%): The package builds a sudo-like tool from its own Codeberg source and intentionally sets the setuid bit on the binary, which is expected behavior for a privilege-escalation utility; the main concerns are the SKIP'd checksum on a git source and that it's a low-vote package, but there is no obfuscation, exfiltration, or unverifiable prebuilt binary involved.
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:25
chmod u+s "$pkgdir/usr/bin/ggdo"
PKGBUILD
1 offending line(s) highlightedpkgname=ggdo
pkgver=26.08
pkgrel=4
pkgdesc="Simple sudo-like command written in Go with password caching"
arch=('x86_64')
url="https://codeberg.org/ayonelnx/ggdo"
license=('MIT')
depends=('glibc')
makedepends=('go')
provides=('ggdo')
conflicts=('ggdo')
source=("git+$url.git")
sha256sums=('SKIP')
source=("git+https://codeberg.org/ayonelnx/ggdo.git")
build() {
cd "$srcdir/ggdo"
go mod download
go build -o ggdo main.go
}
package() {
cd "$srcdir/ggdo"
install -Dm755 ggdo "$pkgdir/usr/bin/ggdo"
chmod u+s "$pkgdir/usr/bin/ggdo"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-23 21:22:58 | Low | 3 |
| 2026-08-23 21:21:38 | Medium | 3 |