libnss-authentik-bin
authentik-platform-bin
scanned 2026-09-17 00:27:14.276658
The package downloads prebuilt .deb files from the project's official package repository (pkg.goauthentik.io), which is a legitimate distribution channel for authentik; the binaries are extracted and installed without further modification, and all checksums are verified, making this a standard binary package with low risk despite the non-whitelisted host.
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 .deb files from the project's official package repository (pkg.goauthentik.io), which is a legitimate distribution channel for authentik; the binaries are extracted and installed without further modification, and all checksums are verified, making this a standard binary package with low risk despite the non-whitelisted host.
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:23
source_x86_64=("authentik-agent.deb::https://pkg.goauthentik.io/pool/main/a/authentik-agent/authentik-agent_${pkgver}_amd64.deb"
PKGBUILD
1 offending line(s) highlighted# Maintainer: Jonathan Wright <jon@than.io>
# Built upon authentik-platform-git PKGBUILD by Matt Cuneo <m@cuneu.au>
pkgbase="authentik-platform-bin"
pkgdesc='authentik Platform authentication, Agent, CLI and other components'
pkgname=('authentik-cli-bin'
'authentik-agent-bin'
'authentik-sysd-bin'
'libpam-authentik-bin'
'libnss-authentik-bin')
pkgver=0.61.0
pkgrel=1
url="https://github.com/goauthentik/platform"
license=('MIT')
makedepends=()
arch=('x86_64'
'aarch64')
options=('!strip')
source=('authentik-nss.install'
'authentik-pam.install'
'authentik-sysd.install')
source_x86_64=("authentik-agent.deb::https://pkg.goauthentik.io/pool/main/a/authentik-agent/authentik-agent_${pkgver}_amd64.deb"
"authentik-cli.deb::https://pkg.goauthentik.io/pool/main/a/authentik-cli/authentik-cli_${pkgver}_amd64.deb"
"authentik-sysd.deb::https://pkg.goauthentik.io/pool/main/a/authentik-sysd/authentik-sysd_${pkgver}_amd64.deb"
"libnss-authentik.deb::https://pkg.goauthentik.io/pool/main/libn/libnss-authentik/libnss-authentik_${pkgver}_amd64.deb"
"libpam-authentik.deb::https://pkg.goauthentik.io/pool/main/libp/libpam-authentik/libpam-authentik_${pkgver}_amd64.deb")
source_aarch64=("authentik-agent.deb::https://pkg.goauthentik.io/pool/main/a/authentik-agent/authentik-agent_${pkgver}_arm64.deb"
"authentik-cli.deb::https://pkg.goauthentik.io/pool/main/a/authentik-cli/authentik-cli_${pkgver}_arm64.deb"
"authentik-sysd.deb::https://pkg.goauthentik.io/pool/main/a/authentik-sysd/authentik-sysd_${pkgver}_arm64.deb"
"libnss-authentik.deb::https://pkg.goauthentik.io/pool/main/libn/libnss-authentik/libnss-authentik_${pkgver}_arm64.deb"
"libpam-authentik.deb::https://pkg.goauthentik.io/pool/main/libp/libpam-authentik/libpam-authentik_${pkgver}_arm64.deb")
sha256sums=('16e52ff7d18c8aa97edc8f0b06da0ac0f45f4a87ca0ce3a8cf700b5477cfaf57'
'1db5d2f9fb1d5d6e5f9cca34e58f1b3b9f55e161d478c76198a4889dfca9fada'
'ce6e0895be72586d3944c2b1efdffc3ee16d9e8897690a07f44be733d19b77cf')
sha256sums_x86_64=('f0983479eeef4cf5a02f816cdd64be69448fc3d023dcd7b95864ebe50cde6dac'
'47a1b525433c48f920a2865efbf5fd1201565b7c806bdd92ea02462723560a42'
'c6e0b774d25a6a804d5cec7a5aae00bcda7665808aa1980ac653c2ff3fd64bea'
'cfbc6e044fcdc0fa887c01e472f8608f76cbdc9dc33166b15a17de547d295167'
'ddb1bd707d2feb5546cc4ead702b82354aeb62bfb65d8192c821a40f0511a20d')
sha256sums_aarch64=('f0983479eeef4cf5a02f816cdd64be69448fc3d023dcd7b95864ebe50cde6dac'
'47a1b525433c48f920a2865efbf5fd1201565b7c806bdd92ea02462723560a42'
'c6e0b774d25a6a804d5cec7a5aae00bcda7665808aa1980ac653c2ff3fd64bea'
'cfbc6e044fcdc0fa887c01e472f8608f76cbdc9dc33166b15a17de547d295167'
'ddb1bd707d2feb5546cc4ead702b82354aeb62bfb65d8192c821a40f0511a20d')
noextract=('authentik-agent.deb'
'authentik-cli.deb'
'authentik-sysd.deb'
'libnss-authentik.deb'
'libpam-authentik.deb')
prepare() {
true # Do nothing
}
package_authentik-sysd-bin() {
pkgdesc="authentik System Agent"
provides=(authentik-sysd)
conflicts=(authentik-sysd)
backup=(etc/authentik/config.json)
install=authentik-sysd.install
optdepends=(
'libnss-authentik: Make the system aware of Authentik users'
'libpam-authentik: Allow logging in as an Authentik user'
)
bsdtar -O -xf "authentik-sysd.deb" data.tar.gz | bsdtar -C "${pkgdir}" -xf -
}
package_authentik-agent-bin() {
pkgdesc="authentik Agent"
provides=(authentik-agent)
conflicts=(authentik-agent)
depends=(authentik-sysd authentik-cli)
bsdtar -O -xf "authentik-agent.deb" data.tar.gz | bsdtar -C "${pkgdir}" -xf -
}
package_authentik-cli-bin() {
pkgdesc="authentik CLI"
provides=(authentik-cli)
conflicts=(authentik-cli)
depends=(authentik-agent authentik-sysd)
bsdtar -O -xf "authentik-cli.deb" data.tar.gz | bsdtar -C "${pkgdir}" -xf -
}
package_libnss-authentik-bin() {
depends=(authentik-sysd)
provides=(libnss-authentik)
conflicts=(libnss-authentik authentik-nss)
pkgdesc="Authentik NSS module that makes the system aware of Authentik users"
install=authentik-nss.install
bsdtar -O -xf "libnss-authentik.deb" data.tar.gz | bsdtar -C "${pkgdir}" -xf -
}
package_libpam-authentik-bin() {
depends=(authentik-sysd)
provides=(libpam-authentik)
conflicts=(libpam-authentik authentik-pam)
pkgdesc="Authentik PAM module to enable logging in with Authentik credentials"
install=authentik-pam.install
bsdtar -O -xf "libnss-authentik.deb" data.tar.gz | bsdtar -C "${pkgdir}" -xf -
}
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 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 |
| 2026-08-29 00:29:17 | Low | 2 |