harrison-xt-plugins-bin

MEDIUM
maintainer orphaned 0 votes scanned 2026-09-18 00:17:11.210425
View on AUR
Why flagged

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

Medium source=() URL on a non-standard host 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")
Medium AI review 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) highlighted
1pkgname=harrison-xt-plugins-bin
2pkgver=10.0.0
3pkgrel=1
4pkgdesc="Harrison Consoles LV2 XT Plugin Suite"
5arch=('x86_64')
6url="https://harrisonconsoles.com/mixbus-plugins/"
7license=('EULA')
8groups=('lv2-plugins' 'pro-audio')
9depends=('gcc-libs' 'glibc' 'libcurl-gnutls' 'libx11' 'libxau' 'libxcb' 'libxdmcp')
10makedepends=('xdg-user-dirs')
11source=("https://s3.eu-west-1.amazonaws.com/eu1.download.solidstatelogic.com/Harrison/Mixbus%2010/Mixbus-${pkgver}-${arch}.tar")
12sha256sums=('3c86d432900f9d57b342da633649b66577032c6304ec3cd5c9dd28251c5ed422')
13
14## Variables
15_installer="Mixbus-${pkgver}-${arch}"
16_app="Mixbus_${arch}-$pkgver"
17
18package() {
19 ## Install LV2 Plugins
20 mkdir -p "$pkgdir/usr/lib/lv2"
21
22 ## Extract Installer
23 tar -xvf "$srcdir/`basename ${_installer}`.tar"
24 sh "$srcdir/${_installer}.run" --tar xvf
25
26 ## Extract Bundle
27 tar -xvf "$srcdir/`basename ${_app}`.tar"
28
29 ## Insstall LV2 Plugin
30 cp -r "$srcdir/`basename ${_app}`/lib/LV2/Harrison.lv2" "$pkgdir/usr/lib/lv2/"
31}
32

Scan history

Scanned at (UTC)SeverityRules
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

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion