phoenix-flatpak

maintainer celenity · 0 votes · scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged The package downloads a prebuilt configuration bundle from the maintainer's own release host, which is not whitelisted but plausibly official; the content consists of static configuration files and assets for Firefox, not executable code, limiting the worst-case impact to data tampering rather than 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 a prebuilt configuration bundle from the maintainer's own release host, which is not whitelisted but plausibly official; the content consists of static configuration files and assets for Firefox, not executable code, limiting the worst-case impact to data tampering rather than code execution.

1 higher static finding superseded - not the current verdict (shown for transparency)
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:9 source=("${pkgname}-${pkgver}-${pkgrel}.tar.xz::https://releases.celenity.dev/phoenix/releases/2026.07.27.1/linux-flatpak/phoenix-2026.07.27.1-linux-flatpak.tar.xz")

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: celenity <celenity@celenity.dev>
2pkgname=phoenix-flatpak
3pkgver=202607271
4pkgrel=1
5pkgdesc="Phoenix is a suite of configurations & advanced modifications for Mozilla Firefox, designed to put the user first - with a focus on privacy, security, freedom, & usability."
6arch=(any)
7license=('GPL-3.0-or-later')
8url="https://phoenix.celenity.dev"
9source=("${pkgname}-${pkgver}-${pkgrel}.tar.xz::https://releases.celenity.dev/phoenix/releases/2026.07.27.1/linux-flatpak/phoenix-2026.07.27.1-linux-flatpak.tar.xz")
10sha512sums=('d2cd8eda4d33cca39b023f56c56551a2024b9b9bb0d35a169a0a7eebe8f9ee781b97aa7a454efe1aa4ead6ea20da88b7835e7b847c737d197d81bc2b3eece558')
11
12pkgver() {
13 echo "$pkgver"
14}
15
16package() {
17 local tmpdir=$(mktemp -d)
18
19 tar xJf "$srcdir/${pkgname}-${pkgver}-${pkgrel}.tar.xz" -C "$tmpdir"
20
21 install -Dm644 "$tmpdir/assets/about/attribution.css" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/assets/about/attribution.css"
22 install -Dm644 "$tmpdir/assets/about/attribution.html" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/assets/about/attribution.html"
23 install -Dm644 "$tmpdir/assets/about/phoenix.css" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/assets/about/phoenix.css"
24 install -Dm644 "$tmpdir/assets/about/phoenix.html" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/assets/about/phoenix.html"
25 install -Dm644 "$tmpdir/assets/phoenix.png" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/assets/phoenix.png"
26 install -Dm644 "$tmpdir/defaults/pref/phoenix.js" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/defaults/pref/phoenix.js"
27 install -Dm644 "$tmpdir/phoenix.cfg" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/lib/firefox/phoenix.cfg"
28 install -Dm644 "$tmpdir/policies/policies.json" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/policies/policies.json"
29 install -Dm644 "$tmpdir/specs/phoenix-specialized.cfg" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/phoenix-specialized.cfg"
30 install -Dm644 "$tmpdir/specs/README.md" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/README.md"
31 install -Dm644 "$tmpdir/specs/permissions/apple-maps-permissions.txt" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/permissions/apple-maps-permissions.txt"
32 install -Dm644 "$tmpdir/specs/permissions/discord-permissions.txt" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/permissions/discord-permissions.txt"
33 install -Dm644 "$tmpdir/specs/permissions/element-permissions.txt" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/permissions/element-permissions.txt"
34 install -Dm644 "$tmpdir/specs/permissions/google-maps-permissions.txt" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/permissions/google-maps-permissions.txt"
35 install -Dm644 "$tmpdir/specs/permissions/twitter-permissions.txt" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/permissions/twitter-permissions.txt"
36 install -Dm644 "$tmpdir/specs/userjs/apple-maps/user.js" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/userjs/apple-maps/user.js"
37 install -Dm644 "$tmpdir/specs/userjs/discord/user.js" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/userjs/discord/user.js"
38 install -Dm644 "$tmpdir/specs/userjs/element/user.js" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/userjs/element/user.js"
39 install -Dm644 "$tmpdir/specs/userjs/google-maps/user.js" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/userjs/google-maps/user.js"
40 install -Dm644 "$tmpdir/specs/userjs/photopea/user.js" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/userjs/photopea/user.js"
41 install -Dm644 "$tmpdir/specs/userjs/twitter/user.js" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/userjs/twitter/user.js"
42 install -Dm644 "$tmpdir/specs/userjs/youtube/user.js" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/userjs/youtube/user.js"
43 install -Dm644 "$tmpdir/specs/userjs/youtube-music/user.js" "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/specs/userjs/youtube-music/user.js"
44 install -Dm644 "$tmpdir/COPYING.txt" "$pkgdir/usr/share/doc/phoenix-flatpak/COPYING.txt"
45 install -Dm644 "$tmpdir/README.md" "$pkgdir/usr/share/doc/phoenix-flatpak/README.md"
46
47 rm -f "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/defaults/pref/phoenix-desktop.js"
48 rm -rf "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/configs"
49 rm -rf "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/resources"
50 rm -rf "$pkgdir/var/lib/flatpak/app/org.mozilla.firefox/current/active/files/etc/firefox/phoenix/userjs"
51 rm -rf "$tmpdir"
52}
53

Changes since previous scan

--- PKGBUILD @ 2026-07-27 00:24
+++ PKGBUILD @ 2026-08-03 00:08
@@ -1,13 +1,13 @@
# Maintainer: celenity <celenity@celenity.dev>
pkgname=phoenix-flatpak
-pkgver=202607241
+pkgver=202607271
pkgrel=1
pkgdesc="Phoenix is a suite of configurations & advanced modifications for Mozilla Firefox, designed to put the user first - with a focus on privacy, security, freedom, & usability."
arch=(any)
license=('GPL-3.0-or-later')
url="https://phoenix.celenity.dev"
-source=("${pkgname}-${pkgver}-${pkgrel}.tar.xz::https://releases.celenity.dev/phoenix/releases/2026.07.24.1/linux-flatpak/phoenix-2026.07.24.1-linux-flatpak.tar.xz")
-sha512sums=('a2a26dcca390206560fd6f6bb8424349ce7241dd17df9c59c599548bb97a87e8aaaa1ae6c2a344a5e2f42731fa135c2975af0a16dc050e2a61ae2c5539d34041')
+source=("${pkgname}-${pkgver}-${pkgrel}.tar.xz::https://releases.celenity.dev/phoenix/releases/2026.07.27.1/linux-flatpak/phoenix-2026.07.27.1-linux-flatpak.tar.xz")
+sha512sums=('d2cd8eda4d33cca39b023f56c56551a2024b9b9bb0d35a169a0a7eebe8f9ee781b97aa7a454efe1aa4ead6ea20da88b7835e7b847c737d197d81bc2b3eece558')
pkgver() {
echo "$pkgver"

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 19:35:21 MEDIUM 1
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 05:27:22 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 00:14:48 LOW 2
2026-07-17 00:06:16 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