zapret-rust-bin
LOW
maintainer yagopop
0 votes
scanned 2026-09-20 21:33:20.035927
Why flagged
The package installs a prebuilt binary from the project's official GitHub releases, which is normal for AUR packages; the low severity is due to limited votes and recent upload, not malicious behavior.
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 95%): The package installs a prebuilt binary from the project's official GitHub releases, which is normal for AUR packages; the low severity is due to limited votes and recent upload, not malicious behavior.
PKGBUILD
1
# Maintainer: yagopop42@gmail.com
2
3
pkgname=zapret-rust-bin
4
_pkgname=zapret-rust
5
pkgver=2.1.0
6
pkgrel=1
7
8
pkgdesc="Zapret-Rust TUI for DPI bypass (prebuilt binary)"
9
arch=('x86_64')
10
url="https://github.com/Sergeydigl3/zapret-discord-youtube-rust"
11
license=('MIT')
12
13
depends=(
14
'glibc'
15
'gcc-libs'
16
'nftables'
17
'polkit'
18
)
19
20
provides=("zapret-rust=${pkgver}")
21
conflicts=('zapret-rust')
22
23
install=zapret-rust.install
24
25
options=('!strip')
26
27
source_x86_64=(
28
"${_pkgname}-${pkgver}::${url}/releases/download/zapret-rust-v${pkgver}/zapret-rust-linux-${arch[0]}"
29
)
30
31
sha256sums_x86_64=(
32
'518409cc1322d21ce2b2497a08a185ce6e1a9604fa8d32b623d5828ac47431c9'
33
)
34
35
package() {
36
# Upstream binary
37
install -Dm755 \
38
"${srcdir}/${_pkgname}-${pkgver}" \
39
"${pkgdir}/usr/lib/${_pkgname}/${_pkgname}"
40
41
# Persistent application data directory
42
install -dm755 \
43
"${pkgdir}/var/lib/${_pkgname}"
44
45
# Wrapper
46
install -dm755 "${pkgdir}/usr/bin"
47
48
cat > "${pkgdir}/usr/bin/${_pkgname}" <<'EOF'
49
#!/bin/sh
50
51
exec /usr/lib/zapret-rust/zapret-rust \
52
--cache-dir /var/lib/zapret-rust \
53
"$@"
54
EOF
55
56
chmod 755 "${pkgdir}/usr/bin/${_pkgname}"
57
}
58
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-20 21:33:20 | Low | 2 |