goodaccess
Downloads a prebuilt binary .deb from a CDN redirect URL (link.goodaccess.com) with SKIP'd checksum, making it unverifiable and trivially swappable; however the domain appears to be the official GoodAccess vendor infrastructure, which reduces but does not eliminate the risk.
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:10
source=("goodaccess_4.7.2-1_amd64.deb::https://link.goodaccess.com/download-linux-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 75%): Downloads a prebuilt binary .deb from a CDN redirect URL (link.goodaccess.com) with SKIP'd checksum, making it unverifiable and trivially swappable; however the domain appears to be the official GoodAccess vendor infrastructure, which reduces but does not eliminate the risk.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Your Name <your@email.com>
pkgname="goodaccess"
pkgver="4.7.2"
pkgrel="1"
pkgdesc="GoodAccess client for Linux (converted from .deb)"
arch=('x86_64')
url="https://goodaccess.com"
license=('custom')
depends=('glibc' 'libstdc++5')
source=("goodaccess_4.7.2-1_amd64.deb::https://link.goodaccess.com/download-linux-deb")
noextract=("goodaccess_4.7.2-1_amd64.deb")
sha256sums=('SKIP')
pkgver() {
local ver=$(curl -sL "https://goodaccess-storage.b-cdn.net/applications/prod/linux/repos/deb/dists/stable/main/binary-amd64/Packages" | grep "^Version:" | head -n1 | cut -d' ' -f2)
echo ${ver%-*}
}
package() {
local deb_file="goodaccess_4.7.2-1_amd64.deb"
local data_tar=$(ar t "${srcdir}/${deb_file}" | grep "^data.tar" | head -n1)
bsdtar -O -xf "${srcdir}/${deb_file}" "$data_tar" | bsdtar -C "${pkgdir}" -xf -
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-22 01:17:27 | Medium | 3 |
| 2026-08-22 01:15:41 | Medium | 3 |