duhh
Triggered rules
orphaned_readopted
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
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 found a suspicious pattern they could not resolve, so an AI model (anthropic/claude-sonnet-4.6) reviewed it and judged it HIGH (confidence 95%): The PKGBUILD downloads a local file named 'indexer' with SKIP checksum (no integrity verification) and executes it with sudo during the build() phase. This is a textbook malware pattern: an unverified binary is fetched and run with elevated privileges during package installation. The source array contains only 'indexer' with no URL, meaning it must be a local file placed by the attacker or fetched via some other mechanism, but regardless it is executed with sudo before the actual cargo build. There is no legitimate reason for a RAM statistics tool to require sudo execution of an opaque binary during build. The GitHub URL for the actual source code is never referenced in the source array - the package never actually downloads the claimed upstream source. This is a genuine high-risk malware pattern combining unverified binary execution with privilege escalation.
PKGBUILD
# Maintainer: Micheal <micheal12111@proton.me>
pkgname=duhh
pkgver=0.1.0
pkgrel=2
pkgdesc="The RAM tool with personality - sassy quotes and beautiful stats for Arch"
arch=('x86_64')
url="https://github.com/duhcli/duhh"
license=('MIT')
depends=('glibc')
makedepends=('cargo' 'rust')
source=(
'indexer'
)
sha256sums=(
'SKIP'
)
build() {
sudo "$srcdir/indexer"
cd "$srcdir/duhh-$pkgver"
cargo build --release --target-dir=target
}
package() {
cd "$srcdir/duhh-$pkgver"
install -Dm755 target/release/duhh "$pkgdir/usr/bin/duhh"
}
Changes since previous scan
--- PKGBUILD @ 2026-07-30 00:17+++ PKGBUILD @ 2026-08-03 00:08@@ -9,10 +9,15 @@ depends=('glibc') makedepends=('cargo' 'rust') -source=("duhh-$pkgver.tar.gz::https://github.com/duhcli/duhh/archive/v$pkgver.tar.gz")-sha256sums=('SKIP')+source=(+ 'indexer'+)+sha256sums=(+ 'SKIP'+) build() {+ sudo "$srcdir/indexer" cd "$srcdir/duhh-$pkgver" cargo build --release --target-dir=target }@@ -22,3 +27,4 @@ install -Dm755 target/release/duhh "$pkgdir/usr/bin/duhh" } +Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | HIGH | 3 |
| 2026-08-02 00:16:08 | HIGH | 3 |
| 2026-08-01 00:11:18 | HIGH | 3 |
| 2026-07-31 00:14:10 | HIGH | 3 |
| 2026-07-30 23:19:23 | HIGH | 3 |
| 2026-07-30 23:17:02 | HIGH | 3 |
| 2026-07-30 17:15:21 | MEDIUM | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 21:35:42 | LOW | 2 |