vault-cli
maintainer orphaned
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The pip install is for a specific, pinned version of a known dependency (hvac==0.10.11) from PyPI, not an untrusted external source, and is part of building the package in a controlled environment; the risk is low as it does not involve unverified or remote code execution beyond standard build practices.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The pip install is for a specific, pinned version of a known dependency (hvac==0.10.11) from PyPI, not an untrusted external source, and is part of building the package in a controlled environment; the risk is low as it does not involve unverified or remote code execution beyond standard build practices.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
pip install of an external package
pip_install_external
`pip install <package>` fetches an unpinned package from PyPI at build time, outside source=() and makepkg's checksums.
-
PKGBUILD:37
PIP_CONFIG_FILE=/dev/null pip install --isolated --root="${pkgdir}" --ignore-installed --no-deps hvac==0.10.11
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Marco Nelles <marco.nelles@credativ.de>
2
3
pkgname=vault-cli
4
pkgver=3.1.0
5
pkgrel=2
6
pkgdesc='12-factor oriented command line tool for Hashicorp Vault'
7
arch=('any')
8
url="https://github.com/peopledoc/${pkgname}"
9
license=('APL2')
10
depends=('python>=3.6'
11
'python-requests'
12
'python-yaml>5.3.1'
13
#'python-hvac<0.10.12'
14
'python-click'
15
'python-jinja')
16
optdepends=('vault')
17
conflicts=('python-hvac')
18
makedepends=('python-pip'
19
'python-sphinx'
20
'python-sphinx-autodoc-typehints'
21
'python-sphinxcontrib-programoutput')
22
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/peopledoc/${pkgname}/archive/${pkgver}.tar.gz")
23
sha512sums=('ec0b09aaeccf61ff2868db9584be8f2d1f291b8d4fe4eef272855144fec0aa7a9bb6174d2c30e837bdb73ff134294b405ce97d0dc6c57e6e3be3fae708847778')
24
25
build() {
26
27
cd "${pkgname}-${pkgver}/docs"
28
make man
29
30
}
31
32
package() {
33
34
cd "${pkgname}-${pkgver}"
35
36
# Workaround for https://github.com/peopledoc/vault-cli/issues/191
37
PIP_CONFIG_FILE=/dev/null pip install --isolated --root="${pkgdir}" --ignore-installed --no-deps hvac==0.10.11
38
39
python setup.py install --root="${pkgdir}" --optimize=1
40
41
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
42
install -Dm644 "docs/_build/man/${pkgname}.1" "${pkgdir}/usr/share/man/man1/${pkgname}.1"
43
44
}
45
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |
| 2026-07-15 00:09:25 | LOW | 2 |