slurp-vst-bin
The PKGBUILD downloads a prebuilt binary (SLURP VST plugin) from a personal domain (isivisi.ca) rather than a well-known code hosting platform like GitHub releases. The binary is executed/installed directly. While a sha256 checksum is provided (mitigating tampering in transit), the checksum only protects against the specific downloaded file being altered after the PKGBUILD was written — it does not protect against the domain owner replacing the file at the same URL with a new malicious version (the checksum would then fail, but the risk window exists). Additionally, the package() function installs files directly into the user's home directory (~/.vst3/ and ~/.clap/) rather than $pkgdir, which is non-standard and bypasses package management tracking. The source is the maintainer's own personal website, which is the official distribution point for this plugin, so this is not clearly malicious — but a prebuilt binary from a personal host with home-directory installation warrants medium concern.
Triggered rules
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:15
"https://isivisi.ca/slurp/downloads/SLURP-linux-x64.zip"
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The PKGBUILD downloads a prebuilt binary (SLURP VST plugin) from a personal domain (isivisi.ca) rather than a well-known code hosting platform like GitHub releases. The binary is executed/installed directly. While a sha256 checksum is provided (mitigating tampering in transit), the checksum only protects against the specific downloaded file being altered after the PKGBUILD was written — it does not protect against the domain owner replacing the file at the same URL with a new malicious version (the checksum would then fail, but the risk window exists). Additionally, the package() function installs files directly into the user's home directory (~/.vst3/ and ~/.clap/) rather than $pkgdir, which is non-standard and bypasses package management tracking. The source is the maintainer's own personal website, which is the official distribution point for this plugin, so this is not clearly malicious — but a prebuilt binary from a personal host with home-directory installation warrants medium concern.
PKGBUILD
1 offending line(s) highlighted# Maintainer: John Iannandrea <github.com/isivisi>
pkgname='slurp-vst-bin'
pkgver=1.1.5
pkgrel=1
pkgdesc="The freely distributed version of the SLURP VST Plugin."
url='https://isivisi.ca/slurp'
license=('SLURP-EULA')
arch=(x86_64)
groups=()
depends=()
makedepends=()
source=(
"https://isivisi.ca/slurp/downloads/SLURP-linux-x64.zip"
)
sha256sums=(
732d2e124eaa06c9833654a98995b91e0a3769df0badd4be8abbcdafdef2bf61
)
package() {
install -vDm 755 ./bin/SLURP "$pkgdir/usr/bin/SLURP"
install -vDm 644 ../SLURP.desktop "$pkgdir/usr/share/applications/SLURP.desktop"
cp -r ./bin/SLURP.vst3 ~/.vst3/SLURP.vst3
cp ./bin/SLURP.clap ~/.clap/SLURP.clap
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-17 00:27:14 | Medium | 2 |
| 2026-09-16 00:03:17 | Medium | 2 |
| 2026-09-15 00:25:31 | Medium | 2 |
| 2026-09-14 00:27:57 | Medium | 2 |
| 2026-09-13 00:19:54 | Medium | 2 |
| 2026-09-12 00:25:17 | Medium | 2 |
| 2026-09-11 00:19:22 | Medium | 2 |
| 2026-09-10 00:22:44 | Medium | 2 |
| 2026-09-09 00:04:09 | Medium | 2 |
| 2026-09-08 00:18:08 | Medium | 2 |
| 2026-09-07 00:30:15 | Medium | 2 |
| 2026-09-06 00:17:06 | Medium | 2 |
| 2026-09-05 00:16:27 | Medium | 2 |
| 2026-09-04 00:03:13 | Medium | 2 |
| 2026-09-03 00:15:47 | Medium | 2 |
| 2026-09-02 00:02:31 | Medium | 2 |
| 2026-09-01 00:11:19 | Medium | 2 |
| 2026-08-31 00:19:57 | Medium | 2 |
| 2026-08-30 00:04:14 | Medium | 2 |
| 2026-08-29 00:29:17 | Medium | 2 |