az-launcher

MEDIUM
maintainer Nixuge 1 votes scanned 2026-09-17 00:27:14.276658
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-09-17 00:27:14 Medium 2
2026-09-16 00:03:17 Medium 2
2026-09-15 00:25:31 Medium 2
2026-09-14 00:27:57 Medium 2
2026-09-13 00:19:54 Medium 2
2026-09-12 00:25:17 Medium 2
2026-09-11 00:19:22 Medium 2
2026-09-10 00:22:44 Medium 2
2026-09-09 00:04:09 Medium 2
2026-09-08 00:18:08 Medium 2
2026-09-07 00:30:15 Medium 2
2026-09-06 00:17:06 Medium 2
2026-09-05 00:16:27 Medium 2
2026-09-04 00:03:13 Medium 2
2026-09-03 00:15:47 Medium 2
2026-09-02 00:02:31 Medium 2
2026-09-01 00:11:19 Medium 2
2026-08-31 00:19:57 Medium 2
2026-08-30 00:04:14 Medium 2
2026-08-29 00:29:17 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