cliprithm

maintainer edwardiazdev · 0 votes · scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged The PKGBUILD builds the binary from source and installs it via standard packaging steps; the flagged 'self-update' pattern refers to rustup's internal toolchain setup, which does not affect the package's installed files or runtime behavior.

Triggered rules

LOW AI review downgraded a static finding 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 PKGBUILD builds the binary from source and installs it via standard packaging steps; the flagged 'self-update' pattern refers to rustup's internal toolchain setup, which does not affect the package's installed files or runtime behavior.

1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM Privileged / out-of-pacman install (sudoers, setuid, or self-update) 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:29 rustup toolchain install stable --profile minimal --no-self-update

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Edwar Diaz <edwardiaz.dev@gmail.com>
2
3pkgname=cliprithm
4pkgver=1.5.3
5pkgrel=1
6pkgdesc="Smart desktop video silence remover and clip editor built with Tauri and FFmpeg"
7arch=('x86_64')
8url="https://github.com/BOTOOM/Cliprithm"
9license=('MIT')
10depends=('ffmpeg' 'glibc' 'gtk3' 'hicolor-icon-theme' 'libayatana-appindicator' 'webkit2gtk-4.1')
11makedepends=('cargo' 'nodejs' 'patchelf' 'pnpm' 'rust')
12optdepends=('xdg-desktop-portal: improved desktop integration for file dialogs and portals')
13provides=('cliprithm')
14conflicts=('cliprithm-bin')
15source=("cliprithm-1.5.3.tar.gz::https://github.com/BOTOOM/Cliprithm/archive/refs/tags/cliprithm-v1.5.3.tar.gz"
16 "cliprithm"
17 "cliprithm.desktop")
18sha256sums=('e6a3dc196710cf8d2008ac23d941b2af6435288622308d4f5ff252eaf0e01a8a'
19 'fb39cdb168e8c849348069eaf812712f206694268da8228b7d03972b77fadbd5'
20 'fc1f073620a6ea5283c288a5870941eea57dc2369b691c0788ec8fb16260045f')
21options=('!lto')
22
23_setup_rust_toolchain() {
24 export CARGO_HOME="$srcdir/cargo-home"
25
26 if command -v rustup >/dev/null 2>&1; then
27 export RUSTUP_HOME="$srcdir/rustup-home"
28 export RUSTUP_TOOLCHAIN=stable
29 rustup toolchain install stable --profile minimal --no-self-update
30 fi
31}
32
33prepare() {
34 cd "Cliprithm-cliprithm-v1.5.3"
35 _setup_rust_toolchain
36 export PNPM_HOME="$srcdir/pnpm-home"
37 export XDG_CACHE_HOME="$srcdir/pnpm-cache"
38 pnpm install --frozen-lockfile
39}
40
41build() {
42 cd "Cliprithm-cliprithm-v1.5.3"
43 _setup_rust_toolchain
44 export CARGO_TARGET_DIR="$srcdir/target"
45 pnpm run tauri build -- --no-bundle --ci --no-sign
46}
47
48package() {
49 cd "Cliprithm-cliprithm-v1.5.3"
50
51 install -Dm755 "$srcdir/target/release/cliprithm" "$pkgdir/usr/lib/cliprithm/cliprithm"
52 install -Dm644 "src-tauri/icons/128x128.png" "$pkgdir/usr/share/icons/hicolor/128x128/apps/cliprithm.png"
53 install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
54
55 install -Dm755 "$srcdir/cliprithm" "$pkgdir/usr/bin/cliprithm"
56 install -Dm644 "$srcdir/cliprithm.desktop" "$pkgdir/usr/share/applications/cliprithm.desktop"
57}
58

Changes since previous scan

--- PKGBUILD @ 2026-07-24 00:02
+++ PKGBUILD @ 2026-08-03 00:08
@@ -1,7 +1,7 @@
# Maintainer: Edwar Diaz <edwardiaz.dev@gmail.com>
pkgname=cliprithm
-pkgver=1.4.5
+pkgver=1.5.3
pkgrel=1
pkgdesc="Smart desktop video silence remover and clip editor built with Tauri and FFmpeg"
arch=('x86_64')
@@ -12,10 +12,10 @@
optdepends=('xdg-desktop-portal: improved desktop integration for file dialogs and portals')
provides=('cliprithm')
conflicts=('cliprithm-bin')
-source=("cliprithm-1.4.5.tar.gz::https://github.com/BOTOOM/Cliprithm/archive/refs/tags/cliprithm-v1.4.5.tar.gz"
+source=("cliprithm-1.5.3.tar.gz::https://github.com/BOTOOM/Cliprithm/archive/refs/tags/cliprithm-v1.5.3.tar.gz"
"cliprithm"
"cliprithm.desktop")
-sha256sums=('6ddc3f6249e54cc8dc3a71bfac8481c697463aa260b692718d53eed030e0f851'
+sha256sums=('e6a3dc196710cf8d2008ac23d941b2af6435288622308d4f5ff252eaf0e01a8a'
'fb39cdb168e8c849348069eaf812712f206694268da8228b7d03972b77fadbd5'
'fc1f073620a6ea5283c288a5870941eea57dc2369b691c0788ec8fb16260045f')
options=('!lto')
@@ -31,7 +31,7 @@
}
prepare() {
- cd "Cliprithm-cliprithm-v1.4.5"
+ cd "Cliprithm-cliprithm-v1.5.3"
_setup_rust_toolchain
export PNPM_HOME="$srcdir/pnpm-home"
export XDG_CACHE_HOME="$srcdir/pnpm-cache"
@@ -39,14 +39,14 @@
}
build() {
- cd "Cliprithm-cliprithm-v1.4.5"
+ cd "Cliprithm-cliprithm-v1.5.3"
_setup_rust_toolchain
export CARGO_TARGET_DIR="$srcdir/target"
pnpm run tauri build -- --no-bundle --ci --no-sign
}
package() {
- cd "Cliprithm-cliprithm-v1.4.5"
+ cd "Cliprithm-cliprithm-v1.5.3"
install -Dm755 "$srcdir/target/release/cliprithm" "$pkgdir/usr/lib/cliprithm/cliprithm"
install -Dm644 "src-tauri/icons/128x128.png" "$pkgdir/usr/share/icons/hicolor/128x128/apps/cliprithm.png"

Scan history

Scanned at (UTC)SeverityRules
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 03:27:03 MEDIUM 1
2026-07-24 01:26:42 MEDIUM 1
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 00:17:08 LOW 2
2026-07-18 05:56:57 MEDIUM 1
2026-07-18 00:14:48 LOW 2

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion