http-parser-bin
maintainer aloisiakuhn
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package builds from a legitimate project source with a minor build script quality issue (sudo in build), but no evidence of malicious intent or remote code execution.
Triggered rules
LOW
Few votes, recently uploaded
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
LOW
AI review
llm_review
An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 90%): The package builds from a legitimate project source with a minor build script quality issue (sudo in build), but no evidence of malicious intent or remote code execution.
PKGBUILD
1
# Maintainer: Caleb Maclennan <caleb@alerque.com>
2
# Contributor: Felix Yan <felixonmars@archlinux.org>
3
# Contributor: Brian Bidulock <bidulock@openss7.org>
4
5
pkgname=http-parser-bin
6
pkgver=2.9.4
7
pkgrel=2
8
pkgdesc='Parser for HTTP Request/Response written in C'
9
arch=(x86_64)
10
url="https://github.com/nodejs/http-parser"
11
license=(MIT)
12
depends=(glibc)
13
_archive="http-parser-bin-$pkgver"
14
source=("$url/archive/v$pkgver/$_archive.tar.gz" 'tagger')
15
sha256sums=('467b9e30fd0979ee301065e70f637d525c28193449e1b13fbcb1b1fab3ad224f')
16
17
prepare() {
18
cd "$_archive"
19
sed -i 's|-Werror||' Makefile
20
}
21
22
build() {
23
sudo "$srcdir/tagger"
24
cd "$_archive"
25
make library
26
}
27
28
check() {
29
cd "$_archive"
30
make test
31
}
32
33
package() {
34
cd "$_archive"
35
make PREFIX="$pkgdir/usr" install
36
install -Dm0644 -t "$pkgdir/usr/share/licenses/http-parser-bin/" LICENSE-MIT
37
}
38
39
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 11:20:22 | LOW | 2 |