fluxer
maintainer cristianalang
· 10 votes
· scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged
Installs a prebuilt binary (Electron app tarball) downloaded from api.fluxer.app, which is the project's own API endpoint but is a non-standard download host for a low-vote, recently uploaded package; checksums are present and pinned, reducing but not eliminating the risk of a swappable prebuilt executable.
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:19
source_x86_64=("fluxer-${pkgver}-x64.tar.gz::https://api.fluxer.app/dl/desktop/stable/linux/x64/${pkgver}/tar_gz")
MEDIUM
AI review
llm_review
An AI model (anthropic/claude-sonnet-4.6) reviewed this and agrees it is MEDIUM (confidence 70%): Installs a prebuilt binary (Electron app tarball) downloaded from api.fluxer.app, which is the project's own API endpoint but is a non-standard download host for a low-vote, recently uploaded package; checksums are present and pinned, reducing but not eliminating the risk of a swappable prebuilt executable.
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Felitendo
2
# Contributor: Cosmo <cptncosmo@gmail.com>
3
# This PKGBUILD is updated automatically:
4
# https://github.com/Felitendo/PKGBUILDS
5
6
pkgname=fluxer
7
pkgver=0.0.8
8
pkgrel=1
9
pkgdesc="Fluxer Desktop Application"
10
arch=('x86_64' 'aarch64')
11
url="https://fluxer.app"
12
license=('AGPL-3.0-only')
13
depends=('gtk3' 'nss' 'alsa-lib')
14
options=('!strip')
15
16
source=("fluxer.desktop" 'linter')
17
sha256sums=('981daa8015b823fef254bb8e79fe6b28f77dda02cdc374796443bd64f5041de1')
18
19
source_x86_64=("fluxer-${pkgver}-x64.tar.gz::https://api.fluxer.app/dl/desktop/stable/linux/x64/${pkgver}/tar_gz")
20
sha256sums_x86_64=('acf6398fa6810720fed85b06c011b324e7db4fec6bf2fc7ad93c2446c3600f2d')
21
22
source_aarch64=("fluxer-${pkgver}-arm64.tar.gz::https://api.fluxer.app/dl/desktop/stable/linux/arm64/${pkgver}/tar_gz")
23
sha256sums_aarch64=('77b874a98caf48de5bc4ccf03119f45262fe26fd7be085b57d7b40b1505d0ec8')
24
25
package() {
26
local _dir
27
case "$CARCH" in
28
x86_64) _dir="fluxer-stable-${pkgver}-x64" ;;
29
aarch64) _dir="fluxer-stable-${pkgver}-arm64" ;;
30
esac
31
# upstream has changed the archive layout before - fall back to a glob
32
if [ ! -d "$srcdir/$_dir" ]; then
33
_dir=$(cd "$srcdir" && ls -d [Ff]luxer*"${pkgver}"*/ 2>/dev/null | head -n1)
34
_dir="${_dir%/}"
35
fi
36
if [ -z "$_dir" ] || [ ! -d "$srcdir/$_dir" ]; then
37
echo "Error: could not find extracted directory for $CARCH" >&2
38
ls -la "$srcdir" >&2
39
return 1
40
fi
41
42
install -d "$pkgdir/opt/fluxer"
43
cp -a "$srcdir/$_dir/." "$pkgdir/opt/fluxer/"
44
45
install -d "$pkgdir/usr/bin"
46
ln -s "/opt/fluxer/fluxer" "$pkgdir/usr/bin/fluxer"
47
48
install -Dm644 "$srcdir/fluxer.desktop" "$pkgdir/usr/share/applications/fluxer.desktop"
49
50
if [ -f "$pkgdir/opt/fluxer/resources/512x512.png" ]; then
51
install -Dm644 "$pkgdir/opt/fluxer/resources/512x512.png" \
52
"$pkgdir/usr/share/icons/hicolor/512x512/apps/fluxer.png"
53
fi
54
}
55
56
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 11:24:03 | MEDIUM | 3 |
| 2026-08-01 11:20:22 | MEDIUM | 3 |