merlin-server-bin
maintainer orphaned
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The pip install occurs only if _buildman is set to 'yes', which is disabled by default; the installed packages (sphinx_rtd_theme, recommonmark) are documentation tools used to build man pages, not malicious dependencies, and the build process otherwise uses verifiable, official release binaries from the project's GitHub.
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 occurs only if _buildman is set to 'yes', which is disabled by default; the installed packages (sphinx_rtd_theme, recommonmark) are documentation tools used to build man pages, not malicious dependencies, and the build process otherwise uses verifiable, official release binaries from the project's GitHub.
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:30
pip install sphinx_rtd_theme recommonmark
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: M0ustach3 <pablobondialuttiau@gmail.com>
2
3
# Should the man page be built ? yes or no. The help of this package is available on GitHub
4
_buildman="no"
5
6
_pkgname=merlin-server
7
pkgname=merlin-server-bin
8
pkgver=1.3.0
9
pkgrel=1
10
pkgdesc='Merlin is a cross-platform post-exploitation Command & Control server and agent written in Go'
11
arch=(x86_64)
12
url="https://github.com/Ne0nd0g/merlin"
13
license=('GPL3')
14
source=("https://github.com/Ne0nd0g/merlin/releases/download/v${pkgver}/merlinServer-Linux-x64.7z")
15
sha256sums=('0dfb581ed043749a0731d4be7decaabb24218b5aab27aebe0761976eef809b92')
16
makedepends=(p7zip)
17
depends=(glibc)
18
conflicts=("${pkgname}")
19
20
[[ "${_buildman}" == "yes" ]] && makedepends+=('python' 'python-sphinx' 'python-pip')
21
22
prepare(){
23
cd "${srcdir}"
24
7z -p"merlin" x merlinServer-Linux-x64.7z
25
}
26
27
build(){
28
cd "${srcdir}"
29
if [[ "${_buildman}" == "yes" ]]; then
30
pip install sphinx_rtd_theme recommonmark
31
pushd "docs"
32
make man
33
popd
34
fi
35
}
36
37
package(){
38
cd "${srcdir}"
39
if [[ "${_buildman}" == "yes" ]]; then
40
install -Dm644 "docs/_build/man/merlin.1" -t "${pkgdir}/usr/share/man/${_pkgname}"
41
fi
42
install -dm755 "${pkgdir}/opt/${_pkgname}"
43
install -dm755 "${pkgdir}/opt/${_pkgname}/data"
44
install -d "${pkgdir}/usr/bin"
45
cp -r "data" "${pkgdir}/opt/${_pkgname}"
46
install -Dm755 "merlinServer-Linux-x64" "${pkgdir}/opt/${_pkgname}"
47
cat > "${pkgdir}/usr/bin/${_pkgname}" << EOF
48
#!/bin/sh
49
exec /opt/${_pkgname}/merlinServer-Linux-x64 "\$@"
50
EOF
51
chmod 755 "${pkgdir}/usr/bin/${_pkgname}"
52
}
53
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 |