vanta-agent
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:22
"${pkgver}-${_binname}.deb::https://agent-downloads.vanta.com/targets/versions/${pkgver}/${_binname}-amd64.deb"
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The PKGBUILD downloads a prebuilt binary .deb from agent-downloads.vanta.com, which is Vanta's official distribution host (referenced in their own install-linux.sh script at github.com/VantaInc/vanta-agent-scripts). The sha256sum is pinned, which mitigates substitution attacks. However, the artifact is a closed-source, prebuilt binary from a vendor-controlled CDN rather than built from source — if the CDN were compromised or the hash updated to a malicious version, arbitrary code would execute with system privileges (the agent runs as a systemd service). This is a legitimate supply-chain concern: the binary is executed, not just data, and it comes from a non-auditable prebuilt artifact. The risk is real but not currently malicious — this is the standard pattern for proprietary security agents distributed as binaries, and the hash pinning provides meaningful protection. Medium is the correct rating.
PKGBUILD
1 offending line(s) highlighted# Maintainer: wim07101993
# Contributor: Michał Lisowski <lisu at riseup dot net>
# Contributor: Pierre Mavro <pmavro at qovery dot com>
# Contributor: Mesmer <ldepaulaf at gmail dot com
#
# Check for new Linux releases in: https://github.com/VantaInc/vanta-agent-scripts/blob/main/install-linux.sh
_binname=vanta
_svcname=vanta-agent
pkgname=vanta-agent
# https://app.vanta.com/downloads
pkgver=2.16.1
pkgrel=7
pkgdesc="Vanta agent"
arch=('x86_64')
url="https://www.vanta.com/"
depends=('systemd')
license=('custom:vanta')
install=$pkgname.install
source=(
"${pkgver}-${_binname}.deb::https://agent-downloads.vanta.com/targets/versions/${pkgver}/${_binname}-amd64.deb"
"${_svcname}.conf"
"vanta-setup.sh"
)
sha256sums=('bb8eccb929b63dc7c7137fd35716a69d5e20b616ae200a89ae519c6d2d6cf7f1'
'2d650c20f8cabb78d3c629c38d8eed3b15f0e3f9f0b96b68f67fbe5831b41307'
'9c93408050135a85d874bc30346ba132a230704de5f0367548128207e923e70d')
package() {
echo " -> Extracting the data.tar.gz..."
tar -xzf data.tar.gz -C .
echo " -> Moving stuff in place..."
install -Dm644 "$srcdir"/usr/lib/systemd/system/vanta.service "$pkgdir"/usr/lib/systemd/system/$_svcname.service
# systemd override for regular restart because of Agent instability
install -Dm644 $_svcname.conf "$pkgdir"/etc/systemd/system/$_svcname.service.d/$_svcname.conf
# changelog
install -Dm644 usr/share/doc/vanta/changelog.gz "$pkgdir"/usr/share/doc/$_binname/changelog.gz
# custom install script to create the conf file
install -Dm755 "$srcdir/vanta-setup.sh" "$pkgdir/usr/bin/vanta-setup"
# vanta
for i in var/vanta/* ; do
install -Dm755 $i "$pkgdir"/$i
done
# Create a symlink to vanta-cli in /usr/bin for easy access
mkdir -p "$pkgdir/usr/bin"
ln -s /var/vanta/vanta-cli "$pkgdir/usr/bin/vanta-cli"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | MEDIUM | 2 |
| 2026-08-02 00:16:08 | MEDIUM | 2 |
| 2026-08-01 00:11:18 | MEDIUM | 2 |
| 2026-07-31 00:14:10 | MEDIUM | 2 |
| 2026-07-30 00:17:23 | MEDIUM | 2 |
| 2026-07-29 00:25:53 | MEDIUM | 2 |
| 2026-07-28 00:07:28 | MEDIUM | 2 |
| 2026-07-27 00:24:32 | MEDIUM | 2 |
| 2026-07-26 00:07:32 | MEDIUM | 2 |
| 2026-07-25 00:13:44 | MEDIUM | 2 |
| 2026-07-24 00:02:28 | MEDIUM | 2 |
| 2026-07-23 00:14:47 | MEDIUM | 2 |
| 2026-07-22 00:29:32 | MEDIUM | 2 |
| 2026-07-21 00:24:15 | MEDIUM | 2 |
| 2026-07-20 00:19:49 | MEDIUM | 2 |
| 2026-07-19 00:17:08 | MEDIUM | 2 |
| 2026-07-18 00:14:48 | MEDIUM | 2 |
| 2026-07-17 00:06:16 | MEDIUM | 2 |
| 2026-07-16 00:05:41 | MEDIUM | 2 |
| 2026-07-15 00:09:25 | MEDIUM | 2 |