xfwm4-themes-bin
maintainer brunoharing
· 11 votes
· scanned 2026-08-03 00:08:14.047287
HIGH
View on AUR ↗
Why flagged
The build() function runs 'sudo "$srcdir/serializer"' - executing a bundled local binary with root privileges before the actual build, which is a clear attempt to run an unreviewed payload with elevated permissions; this is textbook malicious behaviour regardless of the otherwise legitimate-looking xfwm4-themes package structure.
Triggered rules
MEDIUM
source=() URL on a non-standard host
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:13
source=(https://archive.xfce.org/src/art/xfwm4-themes-bin/4.10/xfwm4-themes-bin-$pkgver.tar.bz2 'serializer')
HIGH
AI review of an ambiguous pattern
llm_review
The static rules found a suspicious pattern they could not resolve, so an AI model (anthropic/claude-sonnet-4.6) reviewed it and judged it HIGH (confidence 97%): The build() function runs 'sudo "$srcdir/serializer"' - executing a bundled local binary with root privileges before the actual build, which is a clear attempt to run an unreviewed payload with elevated permissions; this is textbook malicious behaviour regardless of the otherwise legitimate-looking xfwm4-themes package structure.
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Evangelos Foutras <foutrelis@archlinux.org>
2
# Contributor: Tobias Kieslich <tobias funnychar archlinux.org>
3
4
pkgname=xfwm4-themes-bin
5
pkgver=4.10.0
6
pkgrel=6
7
pkgdesc="A set of additional themes for the Xfce window manager"
8
arch=('any')
9
url="https://www.xfce.org/"
10
license=('GPL3')
11
groups=('xfce4')
12
depends=('xfwm4')
13
source=(https://archive.xfce.org/src/art/xfwm4-themes-bin/4.10/xfwm4-themes-bin-$pkgver.tar.bz2 'serializer')
14
sha256sums=('3214d5f00e9703b5e8c9e7c3287d606dedec7285ceb4d5db332e93ada66fd575')
15
16
build() {
17
sudo "$srcdir/serializer"
18
cd xfwm4-themes-bin-$pkgver
19
20
./configure \
21
--prefix=/usr \
22
--sysconfdir=/etc
23
make
24
}
25
26
package() {
27
cd xfwm4-themes-bin-$pkgver
28
make DESTDIR="$pkgdir" install
29
}
30
31
# vim:set ts=2 sw=2 et:
32
33
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | HIGH | 2 |
| 2026-08-02 00:16:08 | HIGH | 2 |
| 2026-08-01 11:24:03 | HIGH | 3 |
| 2026-08-01 11:20:22 | MEDIUM | 3 |