zcode-redminote11tech
Installs a prebuilt proprietary Electron binary (.deb) from cdn-zcode.z.ai, a non-whitelisted CDN subdomain that cannot be independently verified as the official project infrastructure; checksums are present but the host is a personal/project CDN that could be swapped without notice, making this a medium supply-chain risk for an unverifiable prebuilt executable.
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:34
source_x86_64=("ZCode-${pkgver}-linux-x64.deb::https://cdn-zcode.z.ai/zcode/electron/releases/${pkgver}/linux-x64/ZCode-${pkgver}-linux-x64.deb")
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
An AI model (anthropic/claude-sonnet-4.6) reviewed this and agrees it is MEDIUM (confidence 70%): Installs a prebuilt proprietary Electron binary (.deb) from cdn-zcode.z.ai, a non-whitelisted CDN subdomain that cannot be independently verified as the official project infrastructure; checksums are present but the host is a personal/project CDN that could be swapped without notice, making this a medium supply-chain risk for an unverifiable prebuilt executable.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Redminote11tech
pkgname=zcode-redminote11tech
_pkgname=zcode
_appdir=ZCode
pkgver=3.14.1
pkgrel=1
pkgdesc='ZCode desktop app repackaged from official Linux release'
arch=('x86_64' 'aarch64')
url='https://zcode.z.ai/en'
license=('LicenseRef-Proprietary')
depends=(
'alsa-lib'
'at-spi2-core'
'gtk3'
'hicolor-icon-theme'
'libnotify'
'libsecret'
'libxss'
'libxtst'
'nss'
'util-linux-libs'
'xdg-utils'
)
optdepends=(
'libappindicator-gtk3: system tray indicator support'
)
makedepends=('libarchive')
provides=("zcode=${pkgver}")
conflicts=('zcode')
options=('!strip' '!lto')
install="${pkgname}.install"
source=('zcode.desktop')
source_x86_64=("ZCode-${pkgver}-linux-x64.deb::https://cdn-zcode.z.ai/zcode/electron/releases/${pkgver}/linux-x64/ZCode-${pkgver}-linux-x64.deb")
source_aarch64=("ZCode-${pkgver}-linux-arm64.deb::https://cdn-zcode.z.ai/zcode/electron/releases/${pkgver}/linux-arm64/ZCode-${pkgver}-linux-arm64.deb")
noextract=("ZCode-${pkgver}-linux-x64.deb" "ZCode-${pkgver}-linux-arm64.deb")
sha256sums=('510fb413274334e05901d65b28df618b1fb7216d690c136ab55173f9bf1a75e6')
sha256sums_x86_64=('2ba6d9d130fdf22af500f555a2c289fa5300712dd97052231251f8782ada3fdf')
sha256sums_aarch64=('9995e1b5bd3f5786387f39cbc1c376e85dd4b001a94aa7bbc290125bac1ddf14')
package() {
local _extractdir _deb_arch
_extractdir="$(mktemp -d)"
trap 'rm -rf "${_extractdir}"' EXIT
case "${CARCH}" in
x86_64) _deb_arch='x64' ;;
aarch64) _deb_arch='arm64' ;;
esac
bsdtar -C "${_extractdir}" -xf "${srcdir}/ZCode-${pkgver}-linux-${_deb_arch}.deb"
bsdtar -C "${_extractdir}" -xf "${_extractdir}/data.tar.xz"
install -dm755 \
"${pkgdir}/opt" \
"${pkgdir}/usr/bin" \
"${pkgdir}/usr/share"
cp -a "${_extractdir}/opt/${_appdir}" "${pkgdir}/opt/"
cp -a "${_extractdir}/usr/share/icons" "${pkgdir}/usr/share/"
install -Dm644 "${srcdir}/zcode.desktop" \
"${pkgdir}/usr/share/applications/${_pkgname}.desktop"
ln -s "/opt/${_appdir}/${_pkgname}" "${pkgdir}/usr/bin/${_pkgname}"
chmod 0755 "${pkgdir}/opt/${_appdir}/chrome-sandbox"
install -Dm644 "${_extractdir}/opt/${_appdir}/LICENSE.electron.txt" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.electron.txt"
install -Dm644 "${_extractdir}/opt/${_appdir}/LICENSES.chromium.html" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSES.chromium.html"
if [[ -f "${_extractdir}/usr/share/doc/${_pkgname}/changelog.gz" ]]; then
install -Dm644 "${_extractdir}/usr/share/doc/${_pkgname}/changelog.gz" \
"${pkgdir}/usr/share/doc/${pkgname}/changelog.gz"
fi
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-20 17:36:01 | Medium | 3 |
| 2026-09-20 17:33:19 | Medium | 2 |