v2ray-rs
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 setuid binaries and modifies system groups for privilege management, but this is a legitimate requirement for TUN-based networking; the actions are transparent, self-contained, and intended for local privilege separation, not malicious access.
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.
-
.install:15
chmod 4750 /usr/bin/v2ray-rs-run 2>/dev/null || true
PKGBUILD
pkgname=v2ray-rs
pkgver=0.14.0
pkgrel=1
pkgdesc="Linux desktop GUI for v2ray/xray/sing-box proxy management"
arch=('x86_64')
url="https://github.com/victorzhuk/v2ray-rs"
license=('Apache-2.0')
depends=('gtk4' 'libadwaita' 'dbus' 'libcap')
makedepends=('rust' 'cargo')
optdepends=(
'v2ray: V2Ray proxy backend'
'xray: Xray proxy backend'
'sing-box: sing-box proxy backend'
'polkit: one-time TUN privilege grant via pkexec'
)
options=(!lto)
install=v2ray-rs.install
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('850a5ce130494b3a62bcc4c6981fccc82c03f2e93ebd37cd3ad3f64c189202c9')
prepare() {
cd "$pkgname-$pkgver"
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
}
build() {
cd "$pkgname-$pkgver"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cargo build --frozen --release -p v2ray-rs-ui -p v2ray-rs-netctl -p v2ray-rs-run
}
package() {
cd "$pkgname-$pkgver"
install -Dm755 "target/release/v2ray-rs-ui" "$pkgdir/usr/bin/v2ray-rs"
# Privileged TUN helpers. The install hook creates the `v2ray-rs` group,
# restricts these to it (netctl 0750 + cap_net_admin, run 4750 setuid), and
# creates the bypass user. Modes here are the pre-hook defaults.
install -Dm755 "target/release/v2ray-rs-netctl" "$pkgdir/usr/bin/v2ray-rs-netctl"
install -Dm4755 "target/release/v2ray-rs-run" "$pkgdir/usr/bin/v2ray-rs-run"
install_icon "assets/v2ray-rs.svg" \
"crates/ui/icons/hicolor/scalable/apps/com.github.v2ray-rs.svg" \
"$pkgdir/usr/share/icons/hicolor/scalable/apps/com.github.v2ray-rs.svg"
install_optional "assets/v2ray-rs.png" \
"$pkgdir/usr/share/icons/hicolor/256x256/apps/com.github.v2ray-rs.png"
install_icon "crates/ui/icons/hicolor/symbolic/apps/com.github.v2ray-rs-symbolic.svg" \
"assets/v2ray-rs-symbolic.svg" \
"$pkgdir/usr/share/icons/hicolor/symbolic/apps/com.github.v2ray-rs-symbolic.svg"
install_icon "assets/com.github.v2ray-rs.desktop" \
"crates/ui/assets/com.github.v2ray-rs.desktop" \
"$pkgdir/usr/share/applications/com.github.v2ray-rs.desktop"
install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
install_icon() {
local primary=$1
local fallback=$2
local dest=$3
if [[ -f "$primary" ]]; then
install -Dm644 "$primary" "$dest"
return
fi
if [[ -f "$fallback" ]]; then
install -Dm644 "$fallback" "$dest"
return
fi
echo "Missing icon asset: $primary or $fallback" >&2
return 1
}
install_optional() {
local src=$1
local dest=$2
if [[ -f "$src" ]]; then
install -Dm644 "$src" "$dest"
fi
}
Changes since previous scan
--- PKGBUILD @ 2026-07-19 00:17+++ PKGBUILD @ 2026-08-03 00:08@@ -1,5 +1,5 @@ pkgname=v2ray-rs-pkgver=0.13.0+pkgver=0.14.0 pkgrel=1 pkgdesc="Linux desktop GUI for v2ray/xray/sing-box proxy management" arch=('x86_64')@@ -16,7 +16,7 @@ options=(!lto) install=v2ray-rs.install source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")-sha256sums=('261e10fb26465d04fe04f49ab93bdffd37bf7c0fb20c620b6fdc0b40f24cec4a')+sha256sums=('850a5ce130494b3a62bcc4c6981fccc82c03f2e93ebd37cd3ad3f64c189202c9') prepare() { cd "$pkgname-$pkgver"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 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 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 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 17:11:42 | MEDIUM | 1 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |