toolkit
The PKGBUILD downloads a prebuilt binary package (.pkg.tar.xz) from software.concise.cc, which is a personal/unofficial host controlled by the maintainer. The package installs executables directly from this binary tarball via 'install -Dm755 usr/bin/*'. While there is a sha512sum and a PGP key listed (validpgpkeys), the trust anchor is entirely the maintainer's own infrastructure and signing key — there is no upstream vendor release host or official mirror involved. If the host or key is compromised, arbitrary binaries would be installed. This is a textbook supply-chain risk: executed binaries from a personal host with self-signed verification. The sha512sum provides some integrity guarantee but not authenticity beyond trusting the same party who controls the host. This warrants a MEDIUM rating.
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:14
"https://software.concise.cc/x86_64/${pkgname}-${pkgver}-${pkgrel}-$arch.pkg.tar.xz"
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 85%): The PKGBUILD downloads a prebuilt binary package (.pkg.tar.xz) from software.concise.cc, which is a personal/unofficial host controlled by the maintainer. The package installs executables directly from this binary tarball via 'install -Dm755 usr/bin/*'. While there is a sha512sum and a PGP key listed (validpgpkeys), the trust anchor is entirely the maintainer's own infrastructure and signing key — there is no upstream vendor release host or official mirror involved. If the host or key is compromised, arbitrary binaries would be installed. This is a textbook supply-chain risk: executed binaries from a personal host with self-signed verification. The sha512sum provides some integrity guarantee but not authenticity beyond trusting the same party who controls the host. This warrants a MEDIUM rating.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Connor Etherington <connor@concise.cc>
# ---
pkgname=toolkit
pkgver=0.1.1
pkgrel=1
pkgdesc="A toolbox for the CLI, rapidly speeding up file editing and data management processes."
arch=(any)
url="https://gitlab.com/a4to/${pkgname}"
license=('MIT')
depends=(bat ruby)
optdepends=('nvim: the recommended editor for power users')
conflicts=(qed)
source=(
"https://software.concise.cc/x86_64/${pkgname}-${pkgver}-${pkgrel}-$arch.pkg.tar.xz"
)
sha512sums=(
'0303a2ba47a3926c3ec2d928948fe10eaf27bfddd7402a31a291780a8124853ad1bfcf28ccde8be4543ddc46615fa59db67436324c7784ac4cdba9eecdc8da5f'
)
md5sums=(
'5b35607a0a9fcb153f61f182059b8a04'
)
validpgpkeys=(
'81BACEEBC3EA26E127166E4A819BB92A9A48160E'
)
package() {
cd "$srcdir/${pkgname}-${pkgver}-${pkgrel}-${arch}" ||
cd "$srcdir/${pkgname}"
install -Dm644 usr/share/licenses/${pkgname}/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm755 usr/bin/* -t "${pkgdir}/usr/bin"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Medium | 2 |
| 2026-09-16 00:03:17 | Medium | 2 |
| 2026-09-15 00:25:31 | Medium | 2 |
| 2026-09-14 00:27:57 | Medium | 2 |
| 2026-09-13 00:19:54 | Medium | 2 |
| 2026-09-12 00:25:17 | Medium | 2 |
| 2026-09-11 00:19:22 | Medium | 2 |
| 2026-09-10 00:22:44 | Medium | 2 |
| 2026-09-09 00:04:09 | Medium | 2 |
| 2026-09-08 00:18:08 | Medium | 2 |
| 2026-09-07 00:30:15 | Medium | 2 |
| 2026-09-06 00:17:06 | Medium | 2 |
| 2026-09-05 00:16:27 | Medium | 2 |
| 2026-09-04 00:03:13 | Medium | 2 |
| 2026-09-03 00:15:47 | Medium | 2 |
| 2026-09-02 00:02:31 | Medium | 2 |
| 2026-09-01 00:11:19 | Medium | 2 |
| 2026-08-31 00:19:57 | Medium | 2 |
| 2026-08-30 00:04:14 | Medium | 2 |
| 2026-08-29 00:29:17 | Medium | 2 |