merlin-server-bin
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
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)
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# Maintainer: M0ustach3 <pablobondialuttiau@gmail.com>
# Should the man page be built ? yes or no. The help of this package is available on GitHub
_buildman="no"
_pkgname=merlin-server
pkgname=merlin-server-bin
pkgver=1.3.0
pkgrel=1
pkgdesc='Merlin is a cross-platform post-exploitation Command & Control server and agent written in Go'
arch=(x86_64)
url="https://github.com/Ne0nd0g/merlin"
license=('GPL3')
source=("https://github.com/Ne0nd0g/merlin/releases/download/v${pkgver}/merlinServer-Linux-x64.7z")
sha256sums=('0dfb581ed043749a0731d4be7decaabb24218b5aab27aebe0761976eef809b92')
makedepends=(p7zip)
depends=(glibc)
conflicts=("${pkgname}")
[[ "${_buildman}" == "yes" ]] && makedepends+=('python' 'python-sphinx' 'python-pip')
prepare(){
cd "${srcdir}"
7z -p"merlin" x merlinServer-Linux-x64.7z
}
build(){
cd "${srcdir}"
if [[ "${_buildman}" == "yes" ]]; then
pip install sphinx_rtd_theme recommonmark
pushd "docs"
make man
popd
fi
}
package(){
cd "${srcdir}"
if [[ "${_buildman}" == "yes" ]]; then
install -Dm644 "docs/_build/man/merlin.1" -t "${pkgdir}/usr/share/man/${_pkgname}"
fi
install -dm755 "${pkgdir}/opt/${_pkgname}"
install -dm755 "${pkgdir}/opt/${_pkgname}/data"
install -d "${pkgdir}/usr/bin"
cp -r "data" "${pkgdir}/opt/${_pkgname}"
install -Dm755 "merlinServer-Linux-x64" "${pkgdir}/opt/${_pkgname}"
cat > "${pkgdir}/usr/bin/${_pkgname}" << EOF
#!/bin/sh
exec /opt/${_pkgname}/merlinServer-Linux-x64 "\$@"
EOF
chmod 755 "${pkgdir}/usr/bin/${_pkgname}"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Low | 2 |
| 2026-09-16 00:03:17 | Low | 2 |
| 2026-09-15 00:25:31 | Low | 2 |
| 2026-09-14 00:27:57 | Low | 2 |
| 2026-09-13 00:19:54 | Low | 2 |
| 2026-09-12 00:25:17 | Low | 2 |
| 2026-09-11 00:19:22 | Low | 2 |
| 2026-09-10 00:22:44 | Low | 2 |
| 2026-09-09 00:04:09 | Low | 2 |
| 2026-09-08 00:18:08 | Low | 2 |
| 2026-09-07 00:30:15 | Low | 2 |
| 2026-09-06 00:17:06 | Low | 2 |
| 2026-09-05 00:16:27 | Low | 2 |
| 2026-09-04 00:03:13 | Low | 2 |
| 2026-09-03 00:15:47 | Low | 2 |
| 2026-09-02 00:02:31 | Low | 2 |
| 2026-09-01 00:11:19 | Low | 2 |
| 2026-08-31 00:19:57 | Low | 2 |
| 2026-08-30 00:04:14 | Low | 2 |
| 2026-08-29 00:29:17 | Low | 2 |