az-launcher
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
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}")
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# Maintainer: Nixuge (mail@nixuge.me / @Nixuge on tgm)
#note: most of this pkgbuild is from the lunar-client one, as both are just similar appimages
#most credit goes to monosans, current maintainer of the lunar one
#this one is just for accessibility purposes
pkgname=az-launcher
_pkgname=azlauncher
pkgver=3.2.0
pkgrel=3
pkgdesc='A simple Minecraft version that offers a common gaming experience'
url=https://www.az-launcher.nz/
arch=(x86_64)
options=(!strip !debug)
license=(unknown)
_folder="AZ-Launcher_${pkgver}-linux64"
_filename="${_folder}.tar"
_appimage="AZ-Launcher_x86_64.AppImage"
source=("https://www.az-launcher.nz/static/launcher/${_filename}")
sha256sums=('7abb5a753d8e3077823b020cb6b631c13c222a8436c4f145c6688fb87ea82015')
prepare() {
#extract the appimage (tar extracted automatically)
chmod +x "${_folder}/${_appimage}"
./"${_folder}/${_appimage}" --appimage-extract
}
build() {
# Fix the executable name in the desktop file
# + add env QT_QPA_PLATFORM=xcb otherwise it doesn't launch at all on Wayland (@bazouzou)
sed -i "s|/usr/bin/AZ-Launcher|env QT_QPA_PLATFORM=xcb /usr/bin/azlauncher|g" \
"${srcdir}/squashfs-root/${pkgname}.desktop"
# Fix permissions; .AppImage permissions are 700 for all directories
chmod -R a-x+rX squashfs-root/usr
}
package() {
# Appimage
install -Dm755 \
"${srcdir}/${_folder}/${_appimage}" \
"${pkgdir}/opt/${_pkgname}/${_pkgname}.AppImage"
# Desktop file
install -Dm644 \
"${srcdir}/squashfs-root/${pkgname}.desktop"\
"${pkgdir}/usr/share/applications/${pkgname}.desktop"
# Icons
install -dm755 "${pkgdir}/usr/share/"
cp -a \
"${srcdir}/squashfs-root/usr/share/icons" \
"${pkgdir}/usr/share/"
# Symlink executable to /usr/bin
install -dm755 "${pkgdir}/usr/bin"
ln -s \
"/opt/${_pkgname}/${_pkgname}.AppImage" \
"${pkgdir}/usr/bin/${_pkgname}"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 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 |