az-launcher

maintainer Nixuge · 1 votes · scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged The PKGBUILD downloads a prebuilt AppImage binary from az-launcher.nz, which is the project's own website but is a small, non-major hosting platform. The binary is executed during the build phase (--appimage-extract) and then installed as a runnable executable. A sha256sum is provided, which mitigates substitution risk at the current version, but there is no GPG signature verification. The core concern is that this is a closed-source, prebuilt binary from a small personal/project website with no independent verification mechanism beyond a single hash. This is a genuine supply-chain concern (unverifiable binary from an unofficial host), consistent with a MEDIUM rating. It is not clearly malicious, but users must trust the az-launcher.nz operator entirely.

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:18 source=("https://www.az-launcher.nz/static/launcher/${_filename}")
MEDIUM AI review llm_review

An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The PKGBUILD downloads a prebuilt AppImage binary from az-launcher.nz, which is the project's own website but is a small, non-major hosting platform. The binary is executed during the build phase (--appimage-extract) and then installed as a runnable executable. A sha256sum is provided, which mitigates substitution risk at the current version, but there is no GPG signature verification. The core concern is that this is a closed-source, prebuilt binary from a small personal/project website with no independent verification mechanism beyond a single hash. This is a genuine supply-chain concern (unverifiable binary from an unofficial host), consistent with a MEDIUM rating. It is not clearly malicious, but users must trust the az-launcher.nz operator entirely.

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Nixuge (mail@nixuge.me / @Nixuge on tgm)
2#note: most of this pkgbuild is from the lunar-client one, as both are just similar appimages
3#most credit goes to monosans, current maintainer of the lunar one
4#this one is just for accessibility purposes
5
6pkgname=az-launcher
7_pkgname=azlauncher
8pkgver=3.2.0
9pkgrel=3
10pkgdesc='A simple Minecraft version that offers a common gaming experience'
11url=https://www.az-launcher.nz/
12arch=(x86_64)
13options=(!strip !debug)
14license=(unknown)
15_folder="AZ-Launcher_${pkgver}-linux64"
16_filename="${_folder}.tar"
17_appimage="AZ-Launcher_x86_64.AppImage"
18source=("https://www.az-launcher.nz/static/launcher/${_filename}")
19sha256sums=('7abb5a753d8e3077823b020cb6b631c13c222a8436c4f145c6688fb87ea82015')
20
21prepare() {
22 #extract the appimage (tar extracted automatically)
23 chmod +x "${_folder}/${_appimage}"
24 ./"${_folder}/${_appimage}" --appimage-extract
25}
26
27build() {
28 # Fix the executable name in the desktop file
29 # + add env QT_QPA_PLATFORM=xcb otherwise it doesn't launch at all on Wayland (@bazouzou)
30 sed -i "s|/usr/bin/AZ-Launcher|env QT_QPA_PLATFORM=xcb /usr/bin/azlauncher|g" \
31 "${srcdir}/squashfs-root/${pkgname}.desktop"
32
33 # Fix permissions; .AppImage permissions are 700 for all directories
34 chmod -R a-x+rX squashfs-root/usr
35}
36
37package() {
38 # Appimage
39 install -Dm755 \
40 "${srcdir}/${_folder}/${_appimage}" \
41 "${pkgdir}/opt/${_pkgname}/${_pkgname}.AppImage"
42
43 # Desktop file
44 install -Dm644 \
45 "${srcdir}/squashfs-root/${pkgname}.desktop"\
46 "${pkgdir}/usr/share/applications/${pkgname}.desktop"
47
48 # Icons
49 install -dm755 "${pkgdir}/usr/share/"
50 cp -a \
51 "${srcdir}/squashfs-root/usr/share/icons" \
52 "${pkgdir}/usr/share/"
53
54 # Symlink executable to /usr/bin
55 install -dm755 "${pkgdir}/usr/bin"
56 ln -s \
57 "/opt/${_pkgname}/${_pkgname}.AppImage" \
58 "${pkgdir}/usr/bin/${_pkgname}"
59}

Scan history

Scanned at (UTC)SeverityRules
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 00:14:10 MEDIUM 2
2026-07-30 00:17:23 MEDIUM 2
2026-07-29 00:25:53 MEDIUM 2
2026-07-28 00:07:28 MEDIUM 2
2026-07-27 00:24:32 MEDIUM 2
2026-07-26 00:07:32 MEDIUM 2
2026-07-25 00:13:44 MEDIUM 2
2026-07-24 00:02:28 MEDIUM 2
2026-07-23 00:14:47 MEDIUM 2
2026-07-22 00:29:32 MEDIUM 2
2026-07-21 00:24:15 MEDIUM 2
2026-07-20 00:19:49 MEDIUM 2
2026-07-19 00:17:08 MEDIUM 2
2026-07-18 00:14:48 MEDIUM 2
2026-07-17 00:06:16 MEDIUM 2
2026-07-16 00:05:41 MEDIUM 2
2026-07-15 00:09:25 MEDIUM 2

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion