rizzo-pii-bin
maintainer SpaceRRock
· 0 votes
· scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged
The package downloads a prebuilt AppImage from GitHub Releases, which is an official and plausible source, but the binary is not reproducible and its contents are extracted and repackaged without verification beyond the hash; worst case, a compromised upstream release could lead to arbitrary 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.
MEDIUM
AI review of an ambiguous pattern
llm_review
The static rules found a suspicious pattern they could not resolve, so an AI model (qwen/qwen3-235b-a22b-2507) reviewed it and judged it MEDIUM (confidence 95%): The package downloads a prebuilt AppImage from GitHub Releases, which is an official and plausible source, but the binary is not reproducible and its contents are extracted and repackaged without verification beyond the hash; worst case, a compromised upstream release could lead to arbitrary code execution.
PKGBUILD
1
pkgname=rizzo-pii-bin
2
pkgver=1.0.0
3
pkgrel=1
4
pkgdesc="Rizzo PII - anonimizzazione in locale"
5
arch=('x86_64')
6
url="https://github.com/Rizzo-AI-Academy/rizzo-pii"
7
license=('MIT')
8
provides=('rizzo-pii')
9
conflicts=('rizzo-pii')
10
options=('!strip' '!debug')
11
source=("${pkgname}-${pkgver}.AppImage::https://github.com/Rizzo-AI-Academy/rizzo-pii/releases/download/v${pkgver}/Rizzo-PII-${pkgver}-Linux-x86_64.AppImage")
12
sha256sums=('0c9059b96c8f5540931e307976fe455174570749dd1d7d939f5343b245653350')
13
14
prepare() {
15
chmod +x "${srcdir}/${pkgname}-${pkgver}.AppImage"
16
"${srcdir}/${pkgname}-${pkgver}.AppImage" --appimage-extract
17
18
cd squashfs-root
19
rm -f usr/lib/libwayland-*.so*
20
rm -f usr/lib/libEGL.so*
21
rm -f usr/lib/libGL.so*
22
}
23
24
package() {
25
install -d "${pkgdir}/opt/${pkgname}"
26
cp -r "${srcdir}/squashfs-root/"* "${pkgdir}/opt/${pkgname}/"
27
28
chmod -R 755 "${pkgdir}/opt/${pkgname}"
29
30
install -d "${pkgdir}/usr/bin"
31
echo '#!/bin/bash
32
export GDK_BACKEND=x11
33
cd /opt/'"${pkgname}"'
34
exec ./AppRun "$@"' > "${pkgdir}/usr/bin/rizzo-pii"
35
chmod +x "${pkgdir}/usr/bin/rizzo-pii"
36
37
install -d "${pkgdir}/usr/share/applications"
38
echo '[Desktop Entry]
39
Categories=Office;
40
Comment=Rizzo PII - anonimizzazione in locale
41
Exec=rizzo-pii
42
StartupWMClass=app
43
Icon=/opt/'"${pkgname}"'/app.png
44
Name=Rizzo PII
45
Terminal=false
46
Type=Application' > "${pkgdir}/usr/share/applications/rizzo-pii.desktop"
47
}
48
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | MEDIUM | 2 |
| 2026-08-02 00:16:08 | MEDIUM | 2 |
| 2026-08-01 00:11:18 | MEDIUM | 2 |
| 2026-07-31 21:18:45 | MEDIUM | 2 |