villain-c2-git
maintainer Rad10
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The pip install is for the project's own requirements.txt within a virtualenv during build, using dependencies required by the legitimate C2 framework from its official GitHub source, posing no remote code execution or supply-chain risk.
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 the project's own requirements.txt within a virtualenv during build, using dependencies required by the legitimate C2 framework from its official GitHub source, posing no remote code execution or supply-chain risk.
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:24
"${srcdir}/${pkgname%-git}/env/bin"/pip3 install -r "${srcdir}/${pkgname%-git}/requirements.txt"
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Oleksandr Knyshuk <kigen745 at gmail dot com>
2
3
pkgname=villain-c2-git
4
pkgver=1c9084f
5
pkgrel=2
6
pkgdesc="Modern and malleable post-exploitation command and control framework"
7
arch=('any')
8
url="https://github.com/t3l3machus/Villain"
9
license=('CC-BY-NC-ND-4.0')
10
depends=('python')
11
makedepends=('git' 'python-virtualenv' 'coreutils' 'findutils' 'sed')
12
source=("${pkgname%-git}::git+https://github.com/t3l3machus/Villain.git#branch=main")
13
sha256sums=('SKIP')
14
15
pkgver() {
16
cd "${srcdir}/${pkgname%-git}"
17
printf "%s" "$(git describe --long --tags --abbrev=7 --always | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g')"
18
}
19
20
build() {
21
# Creating virtualenv with dependencies
22
cd "${srcdir}/${pkgname%-git}/"
23
virtualenv -p python3 env
24
"${srcdir}/${pkgname%-git}/env/bin"/pip3 install -r "${srcdir}/${pkgname%-git}/requirements.txt"
25
}
26
27
package() {
28
# Creating package folder
29
cd "${srcdir}/${pkgname%-git}/"
30
find -type d -exec install -dm755 "${pkgdir}/opt/${pkgname%-c2-git}/{}" \; \
31
-or -path './Core/*' \( -type f -exec install -Dm644 {} "${pkgdir}/opt/${pkgname%-c2-git}/{}" \; \
32
-or -type l -exec cp -a {} "${pkgdir}/opt/${pkgname%-c2-git}/{}" \; \)
33
install -Dm755 "${srcdir}/${pkgname%-git}/Villain.py" "${pkgdir}/opt/${pkgname%-c2-git}/Villain.py"
34
35
# Installing executable
36
echo -e "#!/bin/sh\ncd /opt/${pkgname%-c2-git}/\nenv/bin/python3 Villain.py \$@" > "${srcdir}/villain"
37
install -Dm755 "${srcdir}/villain" "${pkgdir}/usr/bin/villain"
38
39
# Adding license
40
install -Dm644 "${srcdir}/${pkgname%-git}/LICENSE.md" "${pkgdir}/usr/share/licenses/${pkgname%-git}/LICENSE"
41
}
42
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 |