streamcraft
Triggered rules
external_download_not_in_source
curl/wget fetches a URL on a non-allowlisted host that is not part of source=(), so it is not checksum-verified by makepkg.
-
PKGBUILD:29
curl -fsSL "https://streamcraft.net/api/pages/download" |
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:17
source=("streamcraft-bootstrap-${pkgver}.jar::https://s3.streamcraft.net/uploads/launcher-download/streamcraft-bootstrap-${pkgver}-all.jar"
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 70%): The JAR is downloaded from an S3 bucket (s3.streamcraft.net) that is a personal/project-controlled object store rather than a well-known official release infrastructure, and the package description explicitly states the bootstrap 'self-downloads' additional JRE and game payload at runtime from unspecified sources with no checksum verification possible; the prebuilt JAR itself runs arbitrary code at launch time, making a silently swapped artifact a realistic supply-chain risk.
PKGBUILD
2 offending line(s) highlighted# Maintainer: Yakov Till <yakov.till@gmail.com>
pkgname=streamcraft
pkgver=2.0.1
pkgrel=1
pkgdesc="Proprietary Minecraft launcher (Linux bootstrap)"
# x86_64 only: the bootstrap self-downloads an x64-only JRE8 and game payload at
# runtime (no aarch64 Linux runtime is offered upstream), so it only functions
# there. Contents are arch-independent (a JAR), hence namcap's "no ELF / not any"
# warning; x86_64 is the honest, broken-on-ARM-preventing choice.
arch=('x86_64')
url="https://streamcraft.net"
# Proprietary: upstream ships no license/EULA file, so none is installed (blocker).
license=('LicenseRef-proprietary')
# gtk2: the launcher is JavaFX 8 forced to GTK2 by the wrapper (see streamcraft.sh).
depends=('java-runtime>=8' 'gtk2' 'hicolor-icon-theme')
source=("streamcraft-bootstrap-${pkgver}.jar::https://s3.streamcraft.net/uploads/launcher-download/streamcraft-bootstrap-${pkgver}-all.jar"
'streamcraft.sh'
'streamcraft.desktop')
noextract=("streamcraft-bootstrap-${pkgver}.jar")
sha256sums=('62aa9ff211577d278ebb696e523c247e3e877bfecb47b1dee15dab50180a7b0c'
'4541ed1ffd1bed4f0ac74b3c240bf0daf76429c4d8d1b15271d3d686f265f556'
'e842335b2abfc3cee9f7765d36a219446348ce1b653958b8048d7b3bb9ea1e86')
options=('!debug')
# Canonical version source: the download page API embeds the Linux bootstrap
# jar filename with its version (plain curl, no auth).
latestver() {
curl -fsSL "https://streamcraft.net/api/pages/download" |
grep -aoE 'streamcraft-bootstrap-[0-9.]+-all\.jar' |
grep -aoE '[0-9]+(\.[0-9]+)+' | sort -V | tail -1
}
package() {
install -Dm644 "streamcraft-bootstrap-${pkgver}.jar" \
"${pkgdir}/usr/share/streamcraft/streamcraft-bootstrap.jar"
install -Dm755 streamcraft.sh "${pkgdir}/usr/bin/streamcraft"
install -Dm644 streamcraft.desktop "${pkgdir}/usr/share/applications/streamcraft.desktop"
bsdtar -xOf "streamcraft-bootstrap-${pkgver}.jar" assets/icons/icon.png |
install -Dm644 /dev/stdin "${pkgdir}/usr/share/icons/hicolor/64x64/apps/streamcraft.png"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | MEDIUM | 3 |
| 2026-08-02 00:16:08 | MEDIUM | 3 |
| 2026-08-01 00:11:18 | MEDIUM | 3 |
| 2026-07-31 00:14:10 | MEDIUM | 3 |
| 2026-07-30 00:17:23 | MEDIUM | 3 |
| 2026-07-29 00:25:53 | MEDIUM | 3 |
| 2026-07-28 00:07:28 | MEDIUM | 3 |
| 2026-07-27 00:24:32 | MEDIUM | 3 |
| 2026-07-26 00:07:32 | MEDIUM | 4 |
| 2026-07-25 00:13:44 | MEDIUM | 4 |
| 2026-07-24 00:02:28 | MEDIUM | 4 |
| 2026-07-23 00:14:47 | MEDIUM | 4 |
| 2026-07-22 00:29:32 | MEDIUM | 4 |
| 2026-07-21 00:24:15 | MEDIUM | 4 |
| 2026-07-20 00:19:49 | MEDIUM | 4 |
| 2026-07-19 00:17:08 | MEDIUM | 4 |
| 2026-07-18 00:14:48 | MEDIUM | 4 |
| 2026-07-17 00:06:16 | MEDIUM | 4 |
| 2026-07-16 00:05:41 | MEDIUM | 4 |
| 2026-07-15 00:09:25 | MEDIUM | 4 |