moga-neon-cursor-theme

LOW
maintainer gaougalos 0 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

The package downloads cursor theme ZIP files from gnome-look.org, a plausible project host, and extracts them into the icon directory; these are non-executable data files, so even if the source were compromised, the worst case is theme corruption, not code execution.

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 package downloads cursor theme ZIP files from gnome-look.org, a plausible project host, and extracts them into the icon directory; these are non-executable data files, so even if the source were compromised, the worst case is theme corruption, not code execution.

1 higher static finding superseded - not the current verdict (shown for transparency)
Medium External download from an untrusted host, not in source=() external_download_not_in_source

curl/wget fetches a URL on a non-allowlisted host that is not part of source=(), so it is not checksum-verified by makepkg.

  • PKGBUILD:27 active_files=$(curl -Lsf "https://www.gnome-look.org/p/${_pkgid}/loadFiles" | \

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Gaou Piou <i.am.piou@gmail.com>
2
3pkgname=moga-neon-cursor-theme
4pkgver=2026.05.11.063410
5pkgrel=1
6_pkgid=2302110
7pkgdesc="Neon cursor theme with multiple color variants (Blue, Cyan, Green, Magenta, Orange, Purple, Red, Rose, Sandy, Sky, Water, Yellow, Butter, Olieve)"
8arch=('any')
9url="https://www.gnome-look.org/p/${_pkgid}"
10license=('GPL-3.0-or-later')
11depends=()
12makedepends=('curl' 'jq' 'perl' 'unzip')
13options=('!strip' '!docs' '!debug')
14install=moga-neon-cursor-theme.install
15source=()
16sha256sums=()
17
18pkgver() {
19 local json timestamp
20 json=$(curl -sL "https://www.gnome-look.org/p/${_pkgid}/loadFiles")
21 timestamp=$(echo "$json" | jq -r '[.files[]] | sort_by(.updated_timestamp) | last | .updated_timestamp')
22 date -d"$timestamp" +%Y.%m.%d.%H%M%S
23}
24
25prepare() {
26 local active_files sorted_files download_url filename
27 active_files=$(curl -Lsf "https://www.gnome-look.org/p/${_pkgid}/loadFiles" | \
28 jq -r '.files[] | select(.active == "1")')
29 sorted_files=$(echo "$active_files" | jq -s 'sort_by(.updated_timestamp)')
30
31 while IFS= read -r file; do
32 download_url=$(echo "$file" | perl -pe 's/\%(\w\w)/chr hex $1/ge')
33 filename=$(basename "$download_url")
34 if [[ -f "$filename" ]]; then
35 echo "$filename already downloaded"
36 continue
37 fi
38 echo "downloading $filename"
39 if ! curl -Lsf "$download_url" -o "$filename"; then
40 echo "failed to download $filename, retrying in 7 minutes..."
41 sleep 420
42 curl -Lf "$download_url" -o "$filename"
43 fi
44 sleep 10
45 done < <(echo "$sorted_files" | jq -r '.[].url')
46}
47
48build() {
49 for f in *.zip; do
50 [[ -f "$f" ]] || continue
51 unzip -o "$f"
52 done
53 rm -f ./*.zip
54}
55
56package() {
57 install -dm755 "$pkgdir/usr/share/icons"
58 find "$srcdir" -mindepth 2 -maxdepth 2 -type d \
59 -exec cp -dr --no-preserve=ownership {} "$pkgdir/usr/share/icons/" \;
60}
61

Scan history

Scanned at (UTC)SeverityRules
2026-09-17 00:27:14 Low 2
2026-09-16 00:03:17 Low 2
2026-09-15 00:25:31 Low 2
2026-09-14 00:27:57 Low 2
2026-09-13 00:19:54 Low 2
2026-09-12 00:25:17 Low 2
2026-09-11 00:19:22 Low 2
2026-09-10 11:20:36 Medium 1
2026-09-10 00:22:44 Low 2
2026-09-09 00:04:09 Low 2
2026-09-08 00:18:08 Low 2
2026-09-07 00:30:15 Low 2
2026-09-06 00:17:06 Low 2
2026-09-05 00:16:27 Low 2
2026-09-04 00:03:13 Low 2
2026-09-03 00:15:47 Low 2
2026-09-02 00:02:31 Low 2
2026-09-01 00:11:19 Low 2
2026-08-31 00:19:57 Low 2
2026-08-30 00:04:14 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