radarr-nightly-bin

maintainer txtsd · 4 votes · scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged The package downloads prebuilt binaries from the project's official update server (radarr.servarr.com), which is plausibly owned by the Radarr project; despite the non-whitelisted host, the binaries are checksummed and the worst case of a malicious swap is limited to code execution within the app's sandbox, but given the source context and checksums, the risk is mitigated.

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 project's official update server (radarr.servarr.com), which is plausibly owned by the Radarr project; despite the non-whitelisted host, the binaries are checksummed and the worst case of a malicious swap is limited to code execution within the app's sandbox, but given the source context and checksums, the risk is mitigated.

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:47 source_x86_64=("Radarr.nightly.${pkgver}.linux-core-x64.tar.gz::https://radarr.servarr.com/v1/update/nightly/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://radarr.servarr.com/v1/update/nightly?version=0.0.0.0&os=linux&runtime=netcore&arch=x64&includeMajorVersion=true
4
5pkgname=radarr-nightly-bin
6pkgver=6.4.1.10544
7pkgrel=1
8pkgdesc='Movie organizer/manager for usenet and torrent users (nightly builds)'
9arch=(x86_64 aarch64 armv7h)
10url='https://radarr.video'
11license=('GPL-3.0-or-later')
12groups=(servarr-nightly-bin)
13depends=(
14 gcc-libs
15 glibc
16 sqlite
17 zlib
18)
19optdepends=(
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 'prowlarr: torrent and usenet indexer proxy'
35 'autobrr: irc, torrent and usenet indexer proxy'
36)
37provides=(radarr)
38conflicts=(radarr)
39options=(!debug)
40install=radarr.install
41source=(
42 package_info
43 radarr.service
44 radarr.sysusers
45 radarr.tmpfiles
46)
47source_x86_64=("Radarr.nightly.${pkgver}.linux-core-x64.tar.gz::https://radarr.servarr.com/v1/update/nightly/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=x64")
48source_aarch64=("Radarr.nightly.${pkgver}.linux-core-arm64.tar.gz::https://radarr.servarr.com/v1/update/nightly/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=arm64")
49source_armv7h=("Radarr.nightly.${pkgver}.linux-core-arm.tar.gz::https://radarr.servarr.com/v1/update/nightly/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=arm")
50sha256sums=('e7d22110337234a9d5ce1ea0f65d0dcd7c76e339c61da77c33b80218638d5c3a'
51 '25637c6496aa59673aada6acc6cf41025a5f12a844025ee41d8a6cc66b84b5c0'
52 'bb73e0c55711d7ddbf74140b3beb39cb8674ae92be8387c3dd8109bcd53faca8'
53 'c68efcb3778cb497d7c256dc97df7413ce09f07ea341e4d2683e7fee321cbcbb')
54sha256sums_x86_64=('49169b1d749e416940849626f1a4e1e6e792001a4a82e6e068b84716b8544bc8')
55sha256sums_aarch64=('9f263790d593bd3bd2c8da8729f67caf0f6a9c2b137e1e52930fbe9b67242632')
56sha256sums_armv7h=('919f8ff6290f5242422a44d66d2e6748240a92ceb952bf208c01ab6e115db869')
57
58package() {
59 install -dm755 "${pkgdir}/usr/lib/radarr/bin"
60
61 # License
62 install -Dm644 Radarr/LICENSE "${pkgdir}/usr/share/licenses/${pkgname}"
63 rm Radarr/LICENSE
64
65 # Remove Service Helpers, and Update files
66 rm Radarr/ServiceInstall*
67 rm Radarr/ServiceUninstall*
68 rm -rf Radarr/Radarr.Update
69
70 # Disable built in updater.
71 install -Dm644 package_info "${pkgdir}/usr/lib/radarr"
72 echo "PackageVersion=${pkgver}-${pkgrel}" >> "${pkgdir}/usr/lib/radarr/package_info"
73
74 # Copy Radarr
75 cp -dr Radarr/* "${pkgdir}/usr/lib/radarr/bin"
76
77 # Systemd
78 install -Dm644 radarr.service "${pkgdir}/usr/lib/systemd/system/radarr.service"
79 install -Dm644 radarr.sysusers "${pkgdir}/usr/lib/sysusers.d/radarr.conf"
80 install -Dm644 radarr.tmpfiles "${pkgdir}/usr/lib/tmpfiles.d/radarr.conf"
81}
82

Changes since previous scan

--- PKGBUILD @ 2026-07-26 00:07
+++ PKGBUILD @ 2026-08-03 00:08
@@ -3,7 +3,7 @@
# Helpful URL: https://radarr.servarr.com/v1/update/nightly?version=0.0.0.0&os=linux&runtime=netcore&arch=x64&includeMajorVersion=true
pkgname=radarr-nightly-bin
-pkgver=6.4.0.10540
+pkgver=6.4.1.10544
pkgrel=1
pkgdesc='Movie organizer/manager for usenet and torrent users (nightly builds)'
arch=(x86_64 aarch64 armv7h)
@@ -51,9 +51,9 @@
'25637c6496aa59673aada6acc6cf41025a5f12a844025ee41d8a6cc66b84b5c0'
'bb73e0c55711d7ddbf74140b3beb39cb8674ae92be8387c3dd8109bcd53faca8'
'c68efcb3778cb497d7c256dc97df7413ce09f07ea341e4d2683e7fee321cbcbb')
-sha256sums_x86_64=('c7c5a9fa5bbe7f6de3421174d3e7322bb7e89d8c3359c873cdcff91b07426372')
-sha256sums_aarch64=('3924e203aa51940845651d57b53745157b9e63dbe77496fa9d0f8510a3796639')
-sha256sums_armv7h=('bd4951b258ef34e975839aa196cc78451a593bc8825ae6021abf3f40585ff8e1')
+sha256sums_x86_64=('49169b1d749e416940849626f1a4e1e6e792001a4a82e6e068b84716b8544bc8')
+sha256sums_aarch64=('9f263790d593bd3bd2c8da8729f67caf0f6a9c2b137e1e52930fbe9b67242632')
+sha256sums_armv7h=('919f8ff6290f5242422a44d66d2e6748240a92ceb952bf208c01ab6e115db869')
package() {
install -dm755 "${pkgdir}/usr/lib/radarr/bin"

Scan history

Scanned at (UTC)SeverityRules
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 23:33:54 MEDIUM 1
2026-07-26 21:33:42 MEDIUM 1
2026-07-26 00:07:32 LOW 2
2026-07-25 21:31:00 MEDIUM 1
2026-07-20 00:19:49 CLEAN 2
2026-07-19 23:12:22 MEDIUM 1
2026-07-19 00:17:08 LOW 2
2026-07-18 21:59:23 MEDIUM 1
2026-07-18 09:57:20 MEDIUM 1
2026-07-18 00:14:48 LOW 2
2026-07-17 00:06:16 LOW 2
2026-07-16 00:05:41 LOW 2

Report a package

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

0 / 4000
Your suggestion