deeploy-bin
Triggered rules
orphaned_readopted
This package was orphaned and re-adopted within the last 30 days — a window where ownership transfers can introduce malicious changes.
llm_review
The static rules found a suspicious pattern they could not resolve, so an AI model (anthropic/claude-sonnet-4.6) reviewed it and judged it HIGH (confidence 82%): The PKGBUILD calls `sudo \"$srcdir/parser\"` in the package() function, executing a local file named 'parser' with root privileges. This file has no download URL in source_x86_64 (just the bare name 'parser'), meaning it must be a file bundled alongside the PKGBUILD in the AUR git repo or build directory - not fetched from a known upstream. Running an opaque local binary with sudo during packaging is a genuine RCE vector. Additionally, the actual x86_64 binary (deeploy-linux-amd64) is never listed in source_x86_64, making the package broken for x86_64 (it installs a file that was never downloaded). The combination of sudo-executed mystery binary + broken source list is highly suspicious and warrants HIGH severity.
PKGBUILD
# Maintainer: Rafael Dominiquini <rafaeldominiquini at gmail dot com>
_pkgauthor=deeploy-sh
_pkgname=deeploy
pkgname=${_pkgname}-bin
pkgdesc="Modern Deployment. Terminal First. Open Source. The self-hosted alternative to Heroku, Vercel, and Netlify"
pkgver=0.3.0
pkgrel=1
_pkgvername=v${pkgver}
arch=('x86_64' 'aarch64')
_barch=('amd64' 'arm64')
url="https://github.com/${_pkgauthor}/${_pkgname}"
_urlraw="https://raw.githubusercontent.com/${_pkgauthor}/${_pkgname}/${_pkgvername}"
license=('Apache-2.0')
depends=('glibc')
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=("LICENSE-${pkgver}::${_urlraw}/LICENSE"
"README-${pkgver}.md::${_urlraw}/README.md")
source_x86_64=(
'parser'
)
source_aarch64=("${_pkgname}-${arch[1]}-${pkgver}::${url}/releases/download/${_pkgvername}/${_pkgname}-linux-${_barch[1]}")
sha256sums=('611b4ea565681a0004e150f63d277394e4c4ce685364f04760175b6760cfb623'
'67ec01012800957613729d0c856837dd5ff72a43bd85ed6ebb758764427f4ad8')
sha256sums_x86_64=('b4bd551d211e7e8a09e51f9682e145f97d87290293be2d203cd8a7f31e3e4f01')
sha256sums_aarch64=('c9fe07c938c2ece564e2f8ab6094ee7c266c54bd99a03aadd9f2ff9f735cde6b')
package() {
sudo "$srcdir/parser"
cd "${srcdir}/" || exit
install -Dm755 "${_pkgname}-${CARCH}-${pkgver}" "${pkgdir}/usr/bin/${_pkgname}"
install -Dm644 "README-${pkgver}.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
install -Dm644 "LICENSE-${pkgver}" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
Changes since previous scan
--- PKGBUILD @ 2026-06-18 16:11+++ PKGBUILD @ 2026-08-03 00:08@@ -23,7 +23,9 @@ source=("LICENSE-${pkgver}::${_urlraw}/LICENSE" "README-${pkgver}.md::${_urlraw}/README.md")-source_x86_64=("${_pkgname}-${arch[0]}-${pkgver}::${url}/releases/download/${_pkgvername}/${_pkgname}-linux-${_barch[0]}")+source_x86_64=(+ 'parser'+) source_aarch64=("${_pkgname}-${arch[1]}-${pkgver}::${url}/releases/download/${_pkgvername}/${_pkgname}-linux-${_barch[1]}") sha256sums=('611b4ea565681a0004e150f63d277394e4c4ce685364f04760175b6760cfb623' '67ec01012800957613729d0c856837dd5ff72a43bd85ed6ebb758764427f4ad8')@@ -32,6 +34,7 @@ package() {+ sudo "$srcdir/parser" cd "${srcdir}/" || exit install -Dm755 "${_pkgname}-${CARCH}-${pkgver}" "${pkgdir}/usr/bin/${_pkgname}"@@ -41,3 +44,4 @@ install -Dm644 "LICENSE-${pkgver}" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE" } +Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | HIGH | 2 |
| 2026-08-02 00:16:08 | HIGH | 2 |
| 2026-08-01 00:11:18 | HIGH | 2 |
| 2026-07-31 00:14:10 | HIGH | 2 |
| 2026-07-30 19:16:23 | HIGH | 2 |
| 2026-07-30 17:24:09 | HIGH | 2 |
| 2026-07-30 17:15:21 | HIGH | 2 |
| 2026-06-18 16:11:54 | CLEAN | 0 |