stremio-bin
maintainer MindHardware
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
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
LOW
AI review downgraded a static finding
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)
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:25
source=("https://dl.strem.io/shell-linux/v${pkgver}/stremio_${pkgver}-1_amd64.deb")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Saba Goginashvili <mindhardware@protonmail.com>
2
3
pkgname=stremio-bin
4
pkgver=4.4.168
5
pkgrel=1
6
pkgdesc="Freedom to Stream. Streaming client for free, with addons"
7
arch=('x86_64')
8
url="https://stremio.com"
9
license=('custom')
10
depends=(
11
'mpv'
12
'nodejs'
13
'qt5-webchannel'
14
'qt5-location'
15
'qt5-webengine'
16
'qt5-translations'
17
'qt5-quickcontrols'
18
'qt5-quickcontrols2'
19
'openssl-1.1'
20
'hicolor-icon-theme'
21
)
22
makedepends=('patchelf')
23
provides=("${pkgname}")
24
conflicts=("stremio")
25
source=("https://dl.strem.io/shell-linux/v${pkgver}/stremio_${pkgver}-1_amd64.deb")
26
b2sums=('5cef04a9acc5eb1a5cc9504971bfb72d73c8271076fe615ba2033cd9413b666ddd448d1b806828be2068ed8af501507128d14ad6fddaeaf6c901ec547806818b')
27
prepare() {
28
cd "$srcdir"
29
bsdtar -xf data.tar.*
30
patchelf --replace-needed libmpv.so.1 libmpv.so.2 "$srcdir/opt/stremio/stremio"
31
}
32
package() {
33
cp -r "$srcdir/opt" "$pkgdir"
34
mkdir -p "$pkgdir/usr/bin"
35
ln -sf /opt/stremio/stremio "$pkgdir/usr/bin/stremio"
36
mkdir -p "$pkgdir/usr/share/applications"
37
cp "$pkgdir/opt/stremio/smartcode-stremio.desktop" "$pkgdir/usr/share/applications/stremio.desktop"
38
regex="([^_]+)_([0-9]+).png$"
39
for file in *.png
40
do
41
if [[ $file =~ $regex ]]
42
then
43
icon="${BASH_REMATCH[1]##*/}"
44
size="${BASH_REMATCH[2]}"
45
mkdir -p "$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps"
46
cp "$file" "$pkgdir/usr/share/icons/hicolor/${size}x${size}/apps/${icon}.png"
47
fi
48
done
49
}
50
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 3 |
| 2026-07-28 00:07:28 | LOW | 3 |
| 2026-07-27 00:24:32 | LOW | 3 |
| 2026-07-26 00:07:32 | LOW | 3 |
| 2026-07-25 00:13:44 | LOW | 3 |
| 2026-07-24 00:02:28 | LOW | 3 |
| 2026-07-23 00:14:47 | LOW | 3 |
| 2026-07-22 00:29:32 | LOW | 3 |
| 2026-07-21 00:24:15 | LOW | 3 |
| 2026-07-20 00:19:49 | LOW | 3 |
| 2026-07-19 00:17:08 | LOW | 3 |
| 2026-07-18 00:14:48 | LOW | 3 |
| 2026-07-17 00:06:16 | LOW | 3 |
| 2026-07-16 00:05:41 | LOW | 3 |
| 2026-07-15 09:48:24 | MEDIUM | 2 |