harrison-xt-plugins-bin
The PKGBUILD downloads a prebuilt binary installer from an S3 bucket owned by Solid State Logic (SSL, which acquired Harrison Consoles). The host 'eu1.download.solidstatelogic.com' is the official SSL download CDN, so this is not a random personal host — it is the vendor's own distribution infrastructure. However, the package still executes a downloaded .run binary installer (sh '...run' --tar xvf) during the build phase, which is a real supply-chain concern: if the S3 object were replaced or the bucket misconfigured, arbitrary code would execute. The sha256sum provides some protection but only against accidental corruption, not a deliberate substitution at the source. The pattern of running a binary installer and then extracting its contents is a legitimate but risky packaging approach. This warrants medium severity: it is an executed binary from a vendor CDN (not a personal/unofficial host), but the execution of a .run installer during package() is a genuine supply-chain risk pattern that the AUR community typically flags.
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:11
source=("https://s3.eu-west-1.amazonaws.com/eu1.download.solidstatelogic.com/Harrison/Mixbus%2010/Mixbus-${pkgver}-${arch}.tar")
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 installer from an S3 bucket owned by Solid State Logic (SSL, which acquired Harrison Consoles). The host 'eu1.download.solidstatelogic.com' is the official SSL download CDN, so this is not a random personal host — it is the vendor's own distribution infrastructure. However, the package still executes a downloaded .run binary installer (sh '...run' --tar xvf) during the build phase, which is a real supply-chain concern: if the S3 object were replaced or the bucket misconfigured, arbitrary code would execute. The sha256sum provides some protection but only against accidental corruption, not a deliberate substitution at the source. The pattern of running a binary installer and then extracting its contents is a legitimate but risky packaging approach. This warrants medium severity: it is an executed binary from a vendor CDN (not a personal/unofficial host), but the execution of a .run installer during package() is a genuine supply-chain risk pattern that the AUR community typically flags.
PKGBUILD
1 offending line(s) highlightedpkgname=harrison-xt-plugins-bin
pkgver=10.0.0
pkgrel=1
pkgdesc="Harrison Consoles LV2 XT Plugin Suite"
arch=('x86_64')
url="https://harrisonconsoles.com/mixbus-plugins/"
license=('EULA')
groups=('lv2-plugins' 'pro-audio')
depends=('gcc-libs' 'glibc' 'libcurl-gnutls' 'libx11' 'libxau' 'libxcb' 'libxdmcp')
makedepends=('xdg-user-dirs')
source=("https://s3.eu-west-1.amazonaws.com/eu1.download.solidstatelogic.com/Harrison/Mixbus%2010/Mixbus-${pkgver}-${arch}.tar")
sha256sums=('3c86d432900f9d57b342da633649b66577032c6304ec3cd5c9dd28251c5ed422')
## Variables
_installer="Mixbus-${pkgver}-${arch}"
_app="Mixbus_${arch}-$pkgver"
package() {
## Install LV2 Plugins
mkdir -p "$pkgdir/usr/lib/lv2"
## Extract Installer
tar -xvf "$srcdir/`basename ${_installer}`.tar"
sh "$srcdir/${_installer}.run" --tar xvf
## Extract Bundle
tar -xvf "$srcdir/`basename ${_app}`.tar"
## Insstall LV2 Plugin
cp -r "$srcdir/`basename ${_app}`/lib/LV2/Harrison.lv2" "$pkgdir/usr/lib/lv2/"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-18 00:17:11 | Medium | 2 |
| 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 |