stremio-bin
Downloads a prebuilt binary .deb from dl.strem.io, which is Stremio's own official download infrastructure, so the source is plausibly legitimate; the b2sum checksum is present (though one hex digit short of a valid b2sum), and patchelf is used only to fix a library soname — no obfuscation, exfiltration, or remote code execution patterns observed.
Triggered rules
llm_review
The static rules flagged this MEDIUM, but an AI model (anthropic/claude-sonnet-4.6) reviewed the full PKGBUILD and judged it LOW (confidence 70%): Downloads a prebuilt binary .deb from dl.strem.io, which is Stremio's own official download infrastructure, so the source is plausibly legitimate; the b2sum checksum is present (though one hex digit short of a valid b2sum), and patchelf is used only to fix a library soname — no obfuscation, exfiltration, or remote code execution patterns observed.
1 higher static finding superseded - not the current verdict (shown for transparency)
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:25
source=("https://dl.strem.io/shell-linux/v${pkgver}/stremio_${pkgver}-1_amd64.deb")
PKGBUILD
1 offending line(s) highlighted# Maintainer: Saba Goginashvili <mindhardware@protonmail.com>
pkgname=stremio-bin
pkgver=4.4.168
pkgrel=1
pkgdesc="Freedom to Stream. Streaming client for free, with addons"
arch=('x86_64')
url="https://stremio.com"
license=('custom')
depends=(
'mpv'
'nodejs'
'qt5-webchannel'
'qt5-location'
'qt5-webengine'
'qt5-translations'
'qt5-quickcontrols'
'qt5-quickcontrols2'
'openssl-1.1'
'hicolor-icon-theme'
)
makedepends=('patchelf')
provides=("${pkgname}")
conflicts=("stremio")
source=("https://dl.strem.io/shell-linux/v${pkgver}/stremio_${pkgver}-1_amd64.deb")
b2sums=('5cef04a9acc5eb1a5cc9504971bfb72d73c8271076fe615ba2033cd9413b666ddd448d1b806828be2068ed8af501507128d14ad6fddaeaf6c901ec547806818b')
prepare() {
cd "$srcdir"
bsdtar -xf data.tar.*
patchelf --replace-needed libmpv.so.1 libmpv.so.2 "$srcdir/opt/stremio/stremio"
}
package() {
cp -r "$srcdir/opt" "$pkgdir"
mkdir -p "$pkgdir/usr/bin"
ln -sf /opt/stremio/stremio "$pkgdir/usr/bin/stremio"
mkdir -p "$pkgdir/usr/share/applications"
cp "$pkgdir/opt/stremio/smartcode-stremio.desktop" "$pkgdir/usr/share/applications/stremio.desktop"
regex="([^_]+)_([0-9]+).png$"
for file in *.png
do
if [[ $file =~ $regex ]]
then
icon="${BASH_REMATCH[1]##*/}"
size="${BASH_REMATCH[2]}"
mkdir -p "$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps"
cp "$file" "$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/${icon}.png"
fi
done
}
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 |