jre17-zulu-bin
The package downloads prebuilt JRE binaries from Azul's official CDN (cdn.azul.com), which is the legitimate source for Zulu OpenJDK; despite the static analyzer flagging the host as non-standard, this is a trusted vendor distribution, and the downloads are verified via fixed SHA256 checksums, making the risk low.
Triggered rules
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads prebuilt JRE binaries from Azul's official CDN (cdn.azul.com), which is the legitimate source for Zulu OpenJDK; despite the static analyzer flagging the host as non-standard, this is a trusted vendor distribution, and the downloads are verified via fixed SHA256 checksums, making the risk low.
1 higher static finding superseded - not the current verdict (shown for transparency)
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:44
"https://cdn.azul.com/zulu/bin/zulu${_majorver}.${_zulu_build}-ca-jre${_majorver}.${_minorver}.${_securityver}-linux_aarch64.tar.gz"
PKGBUILD
1 offending line(s) highlighted# Maintainer: puddings233 <puddings233 at outlook dot com>
_majorver=17
_minorver=0
_securityver=20.1
_updatever=1
_zulu_build="68.203"
pkgname=jre${_majorver}-zulu-bin
pkgver=${_majorver}.${_minorver}.${_securityver}+${_updatever}
pkgrel=2
pkgdesc='Azul Zulu OpenJDK full runtime environment, bin version.'
arch=('aarch64' 'i686' 'x86_64')
url='https://www.azul.com/downloads/'
license=('custom')
depends=(
"java-runtime-common>=3"
"ca-certificates-utils"
"freetype2"
"glibc"
"harfbuzz"
"lcms2"
"libgcc"
"libjpeg-turbo"
"libnet"
"libstdc++"
"nss"
"giflib"
"libpng"
)
optdepends=(
'alsa-lib: for basic sound support'
'gtk3: for the Gtk+ 3 look and feel - desktop usage'
)
provides=(
"java-runtime=${_majorver}"
"java-runtime-openjdk=${_majorver}"
"jre${_majorver}-openjdk=${pkgver}-${pkgrel}"
"java-runtime-headless=${_majorver}"
"java-runtime-headless-openjdk=${_majorver}"
"jre${_majorver}-openjdk-headless=${pkgver}-${pkgrel}"
)
install="$pkgname.install"
source_aarch64=(
"https://cdn.azul.com/zulu/bin/zulu${_majorver}.${_zulu_build}-ca-jre${_majorver}.${_minorver}.${_securityver}-linux_aarch64.tar.gz"
"freedesktop-java.desktop"
)
source_i686=(
"https://cdn.azul.com/zulu/bin/zulu${_majorver}.${_zulu_build}-ca-jre${_majorver}.${_minorver}.${_securityver}-linux_i686.tar.gz"
"freedesktop-java.desktop"
)
source_x86_64=(
"https://cdn.azul.com/zulu/bin/zulu${_majorver}.${_zulu_build}-ca-jre${_majorver}.${_minorver}.${_securityver}-linux_x64.tar.gz"
"freedesktop-java.desktop"
)
sha256sums_aarch64=(
'12e8a6a0957c38bcb16b0d18187ba60dfe88e9d16dd99e5eefd5929d1b132931'
'4b0278be06c9705063305da113c9b9e6ddf3c00d3a3c51e894885e08ba42dbcb'
)
sha256sums_i686=(
'acda3a3a691df809f7b14b002b7a0db89f9a5733a537ac303fc88568ccb5a4ed'
'4b0278be06c9705063305da113c9b9e6ddf3c00d3a3c51e894885e08ba42dbcb'
)
sha256sums_x86_64=(
'ab4f4e4bee5db1a266ba08134cd93275ca394c025afde58e6cd34f6aee8d6eb9'
'4b0278be06c9705063305da113c9b9e6ddf3c00d3a3c51e894885e08ba42dbcb'
)
_jvmdir=/usr/lib/jvm/java-${_majorver}-zulu
case "${CARCH}" in
aarch64) _JARCH='aarch64';;
i686) _JARCH='i686';;
x86_64) _JARCH='x64';;
esac
package() {
cd "$srcdir/zulu${_majorver}.${_zulu_build}-ca-jre${_majorver}.${_minorver}.${_securityver}-linux_${_JARCH}"
install -dm 755 "${pkgdir}${_jvmdir}"
cp -a bin lib \
"${pkgdir}${_jvmdir}"
# Conf
install -dm 755 "${pkgdir}/etc"
cp -r conf "${pkgdir}/etc/java${_majorver}-zulu"
ln -s "/etc/java${_majorver}-zulu" "${pkgdir}/${_jvmdir}/conf"
# Legal
install -dm 755 "${pkgdir}/usr/share/licenses"
cp -r legal "${pkgdir}/usr/share/licenses/java${_majorver}-zulu"
cp DISCLAIMER "${pkgdir}/usr/share/licenses/java${_majorver}-zulu/"
ln -s "/usr/share/licenses/java${_majorver}-zulu" "${pkgdir}/${_jvmdir}/legal"
# Link JKS keystore from ca-certificates-utils
rm -f "${pkgdir}${_jvmdir}/lib/security/cacerts"
ln -sf /etc/ssl/certs/java/cacerts "${pkgdir}${_jvmdir}/lib/security/cacerts"
# Desktop files
install -Dm 644 \
"${srcdir}/freedesktop-java.desktop" \
"${pkgdir}/usr/share/applications/java-java${_majorver}-zulu.desktop"
}
# vim: ts=2 sw=2 et:
Changes since previous scan
--- PKGBUILD @ 2026-09-02 00:02+++ PKGBUILD @ 2026-09-17 00:27@@ -2,12 +2,12 @@ _majorver=17 _minorver=0-_securityver=20-_updatever=8-_zulu_build="68.17"+_securityver=20.1+_updatever=1+_zulu_build="68.203" pkgname=jre${_majorver}-zulu-bin-pkgver=${_majorver}.${_minorver}.${_securityver}.u${_updatever}-pkgrel=1+pkgver=${_majorver}.${_minorver}.${_securityver}+${_updatever}+pkgrel=2 pkgdesc='Azul Zulu OpenJDK full runtime environment, bin version.' arch=('aarch64' 'i686' 'x86_64') url='https://www.azul.com/downloads/'@@ -53,15 +53,15 @@ "freedesktop-java.desktop" ) sha256sums_aarch64=(- 'dc2004d03e7a8dc82940a35433f1337303dafdbd34a06a030ce957ba38bb3a8a'+ '12e8a6a0957c38bcb16b0d18187ba60dfe88e9d16dd99e5eefd5929d1b132931' '4b0278be06c9705063305da113c9b9e6ddf3c00d3a3c51e894885e08ba42dbcb' ) sha256sums_i686=(- '946b02fe10d6b9832aac69a7ec6670574b4c6e5c9d2e87b9b16c334922981260'+ 'acda3a3a691df809f7b14b002b7a0db89f9a5733a537ac303fc88568ccb5a4ed' '4b0278be06c9705063305da113c9b9e6ddf3c00d3a3c51e894885e08ba42dbcb' ) sha256sums_x86_64=(- '96c6a5cbc4d0c582bb126d41e280b254db0332a93ed37ae2219debfbe4d3e73f'+ 'ab4f4e4bee5db1a266ba08134cd93275ca394c025afde58e6cd34f6aee8d6eb9' '4b0278be06c9705063305da113c9b9e6ddf3c00d3a3c51e894885e08ba42dbcb' ) @@ -96,6 +96,11 @@ # Link JKS keystore from ca-certificates-utils rm -f "${pkgdir}${_jvmdir}/lib/security/cacerts" ln -sf /etc/ssl/certs/java/cacerts "${pkgdir}${_jvmdir}/lib/security/cacerts"++ # Desktop files+ install -Dm 644 \+ "${srcdir}/freedesktop-java.desktop" \+ "${pkgdir}/usr/share/applications/java-java${_majorver}-zulu.desktop" } # vim: ts=2 sw=2 et:Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 2 |
| 2026-09-16 00:03:17 | Low | 2 |
| 2026-09-15 00:25:31 | Low | 2 |
| 2026-09-14 00:27:57 | Low | 2 |
| 2026-09-13 00:19:54 | Low | 2 |
| 2026-09-12 00:25:17 | Low | 2 |
| 2026-09-11 00:19:22 | Low | 2 |
| 2026-09-10 00:22:44 | Low | 2 |
| 2026-09-09 00:04:09 | Low | 2 |
| 2026-09-08 00:18:08 | Low | 2 |
| 2026-09-07 00:30:15 | Low | 2 |
| 2026-09-06 00:17:06 | Low | 2 |
| 2026-09-05 00:16:27 | Low | 2 |
| 2026-09-04 00:03:13 | Low | 2 |
| 2026-09-03 00:15:47 | Low | 2 |
| 2026-09-02 13:50:58 | Medium | 1 |
| 2026-09-02 00:02:31 | Low | 2 |
| 2026-09-01 00:11:19 | Low | 2 |
| 2026-08-31 00:19:57 | Low | 2 |
| 2026-08-30 00:04:14 | Low | 2 |