prowlarr-develop-bin
maintainer txtsd
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads prebuilt binaries from the official project's update server (prowlarr.servarr.com), which is plausibly project-owned despite not being on a standard whitelist; the binaries are verified with matching sha256sums, and the worst case of a swapped source would be code execution, but the source is official and checksummed, making it a standard AUR packaging practice with low risk.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads prebuilt binaries from the official project's update server (prowlarr.servarr.com), which is plausibly project-owned despite not being on a standard whitelist; the binaries are verified with matching sha256sums, and the worst case of a swapped source would be code execution, but the source is official and checksummed, making it a standard AUR packaging practice with low risk.
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:53
source_x86_64=("Prowlarr.develop.${pkgver}.linux-core-x64.tar.gz::https://prowlarr.servarr.com/v1/update/develop/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=x64")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: txtsd <aur.archlinux@ihavea.quest>
2
# Maintainer: Donald Webster <fryfrog@gmail.com>
3
# Helpful URL: https://prowlarr.servarr.com/v1/update/develop?version=0.0.0.0&os=linux&runtime=netcore&arch=x64&includeMajorVersion=true
4
5
pkgname=prowlarr-develop-bin
6
pkgver=2.6.0.5494
7
pkgrel=1
8
pkgdesc='Indexer manager/proxy for usenet and torrent users (develop branch)'
9
arch=(x86_64 aarch64 armv7h)
10
url='https://prowlarr.com'
11
license=('GPL-3.0-or-later')
12
groups=(servarr-develop-bin)
13
depends=(
14
gcc-libs
15
glibc
16
sqlite
17
zlib
18
)
19
optdepends=(
20
'postgresql: postgresql database'
21
'sabnzbd: usenet downloader'
22
'nzbget: usenet downloader'
23
'qbittorrent: torrent downloader'
24
'deluge: torrent downloader'
25
'rtorrent: torrent downloader'
26
'nodejs-flood: torrent downloader'
27
'vuze: torrent downloader'
28
'aria2: torrent downloader'
29
'transmission-cli: torrent downloader (CLI and daemon)'
30
'transmission-gtk: torrent downloader (GTK+)'
31
'transmission-qt: torrent downloader (Qt)'
32
'jackett: torrent indexer proxy'
33
'nzbhydra2: torznab and usenet indexer proxy'
34
'flaresolverr: A proxy server to bypass Cloudflare protection'
35
'sonarr: automatically integrates with and syncs indexers'
36
'radarr: automatically integrates with and syncs indexers'
37
'lidarr: automatically integrates with and syncs indexers'
38
'readarr: automatically integrates with and syncs indexers'
39
'whisparr: automatically integrates with and syncs indexers'
40
'mylar3: automatically integrates with and syncs indexers'
41
'lazylibrarian: automatically integrates with and syncs indexers'
42
)
43
provides=(prowlarr)
44
conflicts=(prowlarr)
45
options=(!debug)
46
install=prowlarr.install
47
source=(
48
package_info
49
prowlarr.service
50
prowlarr.sysusers
51
prowlarr.tmpfiles
52
)
53
source_x86_64=("Prowlarr.develop.${pkgver}.linux-core-x64.tar.gz::https://prowlarr.servarr.com/v1/update/develop/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=x64")
54
source_aarch64=("Prowlarr.develop.${pkgver}.linux-core-arm64.tar.gz::https://prowlarr.servarr.com/v1/update/develop/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=arm64")
55
source_armv7h=("Prowlarr.develop.${pkgver}.linux-core-arm.tar.gz::https://prowlarr.servarr.com/v1/update/develop/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=arm")
56
sha256sums=('c2c998c73ba78eac6ad7519d5d46bfa3354dd6d575a410aefb4b432a2f387f10'
57
'0c9d7cda701395a8ddb708c111de58437543485702de23e23a0164a162a53bbc'
58
'ee61f5621eae6ab932fb093a4f75a0ab11bf9e3ca829f0d34c25014f68aeff7d'
59
'75591d19518bafc60862c60848ecad84f92c7f2b47b2b4eeafcbbbd650a43043')
60
sha256sums_x86_64=('0496c45623061eb316aa6b6879f924784cfc40a525205696a64b83b92fd44ba2')
61
sha256sums_aarch64=('65fa6bc65096b5bd217c16b2a31fa365154c7c9d96349a4975499de2372e5782')
62
sha256sums_armv7h=('5f20e0239ef62fe248e88c27f0ee4c5456ceee903830f7684b5e7ed11bcf1ef5')
63
64
package() {
65
install -dm755 "${pkgdir}/usr/lib/prowlarr/bin"
66
67
# License
68
install -Dm644 Prowlarr/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}"
69
rm Prowlarr/LICENSE
70
71
# Remove Service Helpers, and Update files
72
rm Prowlarr/ServiceInstall*
73
rm Prowlarr/ServiceUninstall*
74
rm -rf Prowlarr/Prowlarr.Update
75
76
# Disable built in updater.
77
install -Dm644 package_info "${pkgdir}/usr/lib/prowlarr"
78
echo "PackageVersion=${pkgver}-${pkgrel}" >> "${pkgdir}/usr/lib/prowlarr/package_info"
79
80
# Copy Prowlarr
81
cp -dr Prowlarr/* "${pkgdir}/usr/lib/prowlarr/bin"
82
83
# Systemd
84
install -Dm644 prowlarr.service "${pkgdir}/usr/lib/systemd/system/prowlarr.service"
85
install -Dm644 prowlarr.sysusers "${pkgdir}/usr/lib/sysusers.d/prowlarr.conf"
86
install -Dm644 prowlarr.tmpfiles "${pkgdir}/usr/lib/tmpfiles.d/prowlarr.conf"
87
}
88
Changes since previous scan
--- PKGBUILD @ 2026-07-26 00:07+++ PKGBUILD @ 2026-08-03 00:08@@ -3,7 +3,7 @@ # Helpful URL: https://prowlarr.servarr.com/v1/update/develop?version=0.0.0.0&os=linux&runtime=netcore&arch=x64&includeMajorVersion=true pkgname=prowlarr-develop-bin-pkgver=2.5.2.5491+pkgver=2.6.0.5494 pkgrel=1 pkgdesc='Indexer manager/proxy for usenet and torrent users (develop branch)' arch=(x86_64 aarch64 armv7h)@@ -57,9 +57,9 @@ '0c9d7cda701395a8ddb708c111de58437543485702de23e23a0164a162a53bbc' 'ee61f5621eae6ab932fb093a4f75a0ab11bf9e3ca829f0d34c25014f68aeff7d' '75591d19518bafc60862c60848ecad84f92c7f2b47b2b4eeafcbbbd650a43043')-sha256sums_x86_64=('22fe95742869d7af5e16d420c7889185579152ea8324be6c6e4e3cd011f4c37b')-sha256sums_aarch64=('b01fc29abe067fd4fc03ff071e9834f7c907d1a59c021768228b4e80221d45d6')-sha256sums_armv7h=('bd9ad4523287cf6a6c10ff52413441c3fdcb6d31189a2abb2c5536736bdeb001')+sha256sums_x86_64=('0496c45623061eb316aa6b6879f924784cfc40a525205696a64b83b92fd44ba2')+sha256sums_aarch64=('65fa6bc65096b5bd217c16b2a31fa365154c7c9d96349a4975499de2372e5782')+sha256sums_armv7h=('5f20e0239ef62fe248e88c27f0ee4c5456ceee903830f7684b5e7ed11bcf1ef5') package() { install -dm755 "${pkgdir}/usr/lib/prowlarr/bin"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 | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 21:33:42 | MEDIUM | 1 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 13:20:28 | MEDIUM | 1 |
| 2026-07-20 00:19:49 | CLEAN | 2 |
| 2026-07-19 19:12:02 | MEDIUM | 1 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |