tlauncher-installer
This PKGBUILD downloads a prebuilt binary .deb from dl1.tlauncher.org via a PHP redirect URL (f.php?f=...), extracts it, and installs executables into the package. The host is the official TLauncher distribution server (tlauncher.org is the upstream vendor), so this is not a random personal host. However, TLauncher itself is a controversial Minecraft launcher that has historically been associated with piracy (allowing play without a legitimate Mojang/Microsoft account) and has had malware bundled in past versions. The PHP redirect URL is somewhat obfuscated but is pinned with a sha256sum, which mitigates substitution attacks at build time. The core concern is: (1) TLauncher is widely considered a piracy-enabling tool for Minecraft, and (2) the package installs prebuilt binaries from a vendor with a poor security reputation. The sha256sum provides integrity but not authenticity. The piracy flag is borderline — TLauncher does enable playing Minecraft without a paid account, which constitutes circumvention of license enforcement, but the PKGBUILD itself does not crack anything. Given TLauncher's well-documented history of enabling unlicensed Minecraft play, the piracy flag applies.
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:9
source=("tlauncher-linux-installer.deb::https://dl1.tlauncher.org/f.php?f=files%2Ftlauncher-linux-installer.deb")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): This PKGBUILD downloads a prebuilt binary .deb from dl1.tlauncher.org via a PHP redirect URL (f.php?f=...), extracts it, and installs executables into the package. The host is the official TLauncher distribution server (tlauncher.org is the upstream vendor), so this is not a random personal host. However, TLauncher itself is a controversial Minecraft launcher that has historically been associated with piracy (allowing play without a legitimate Mojang/Microsoft account) and has had malware bundled in past versions. The PHP redirect URL is somewhat obfuscated but is pinned with a sha256sum, which mitigates substitution attacks at build time. The core concern is: (1) TLauncher is widely considered a piracy-enabling tool for Minecraft, and (2) the package installs prebuilt binaries from a vendor with a poor security reputation. The sha256sum provides integrity but not authenticity. The piracy flag is borderline — TLauncher does enable playing Minecraft without a paid account, which constitutes circumvention of license enforcement, but the PKGBUILD itself does not crack anything. Given TLauncher's well-documented history of enabling unlicensed Minecraft play, the piracy flag applies.
PKGBUILD
1 offending line(s) highlightedpkgname=tlauncher-installer
pkgver=1.0
pkgrel=1
arch=('any')
pkgdesc="TLauncher (prebuilt binary from upstream .deb)"
url="https://tlauncher.org"
license=('MIT')
depends=()
source=("tlauncher-linux-installer.deb::https://dl1.tlauncher.org/f.php?f=files%2Ftlauncher-linux-installer.deb")
noextract=("tlauncher-linux-installer.deb")
sha256sums=('418871838de35f024a285a7cebff5eb31b24cc3b3ddb086946a7027855cbff1a')
package() {
cd "${srcdir}"
# resolve potential name::url source syntax
debfile="${source[0]}"
if printf '%s' "$debfile" | grep -q '::'; then
debfile="${debfile%%::*}"
fi
[ -f "$debfile" ] || { echo "Source .deb not found: $debfile"; return 1; }
# extract .deb and data archive
ar x "$debfile" || return 1
data_tar=$(ls -1 data.tar.* 2>/dev/null | head -n1)
[ -n "$data_tar" ] || { echo "data.tar.* not found"; return 1; }
tmpdir="${srcdir}/.deb_tmp"
rm -rf "$tmpdir" && mkdir -p "$tmpdir"
tar -xpf "$data_tar" -C "$tmpdir" || return 1
# move only the runtime files into the package: usr/games and usr/share
if [ -d "$tmpdir/usr/games" ]; then
mkdir -p "$pkgdir/usr"
mv "$tmpdir/usr/games" "$pkgdir/usr/"
fi
if [ -d "$tmpdir/usr/share" ]; then
mkdir -p "$pkgdir/usr/share"
cp -a "$tmpdir/usr/share/." "$pkgdir/usr/share/"
fi
rm -rf "$tmpdir"
# ensure directories have sensible permissions
find "$pkgdir" -type d -exec chmod 755 {} + || true
}
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 |