lidarr-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 infrastructure (lidarr.servarr.com), which is plausibly owned by the Lidarr project; despite the non-whitelisted host, the source is verifiable via signed checksums and the worst case of a swapped binary would be code execution, but the context and checksums reduce 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 project's official update infrastructure (lidarr.servarr.com), which is plausibly owned by the Lidarr project; despite the non-whitelisted host, the source is verifiable via signed checksums and the worst case of a swapped binary would be code execution, but the context and checksums reduce 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:47
source_x86_64=("Lidarr.nightly.${pkgver}.linux-core-x64.tar.gz::https://lidarr.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://services.lidarr.audio/v1/update/nightly?version=0.0.0.0&os=linux&runtime=netcore&arch=x64&includeMajorVersion=true
4
5
pkgname=lidarr-nightly-bin
6
pkgver=3.1.3.4987
7
pkgrel=1
8
pkgdesc='Music collection manager for newsgroup and torrent users (nightly builds)'
9
arch=(x86_64 aarch64 armv7h)
10
url='https://lidarr.audio'
11
license=('GPL-3.0-or-later')
12
groups=(servarr-nightly-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
'prowlarr: torrent and usenet indexer proxy'
35
'autobrr: irc, torrent and usenet indexer proxy'
36
)
37
provides=(lidarr)
38
conflicts=(lidarr)
39
options=(!debug)
40
install=lidarr.install
41
source=(
42
lidarr.service
43
lidarr.sysusers
44
lidarr.tmpfiles
45
package_info
46
)
47
source_x86_64=("Lidarr.nightly.${pkgver}.linux-core-x64.tar.gz::https://lidarr.servarr.com/v1/update/nightly/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=x64")
48
source_aarch64=("Lidarr.nightly.${pkgver}.linux-core-arm64.tar.gz::https://lidarr.servarr.com/v1/update/nightly/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=arm64")
49
source_armv7h=("Lidarr.nightly.${pkgver}.linux-core-arm.tar.gz::https://lidarr.servarr.com/v1/update/nightly/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=arm")
50
sha256sums=('48f4cc5040b1a51e624f5be4977078b77bf7f87b9c1fb7fa34e844da4c831401'
51
'85098d47734e8087480f8a29eafec50faa453487221ef01173888155d2b06e42'
52
'd71e37213ac65722e42f6f2c5772d4515c2d28a77b9f7608dc05c787d86ebaa5'
53
'90a1960fef0d3833cd3635cedd16af3ee9ae6c7b95babc3021f6031d4e44c200')
54
sha256sums_x86_64=('e5272836657dd580902175b70b08ba63fa27a64d585c4e046da9dd5c53dfe413')
55
sha256sums_aarch64=('71c671e5f4d766971ac0648f6f12a39071130471fc35bfbc38b7fae9662b04e5')
56
sha256sums_armv7h=('8aa3bc9cabdc6e69b2574ac031e42c9540a628da6a11d9a215b3af02494ea505')
57
58
package() {
59
install -dm755 "${pkgdir}/usr/lib/lidarr/bin"
60
61
# License
62
install -Dm644 Lidarr/LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}"
63
rm Lidarr/LICENSE.md
64
65
# Remove Service Helpers, and Update files
66
rm Lidarr/ServiceInstall*
67
rm Lidarr/ServiceUninstall*
68
rm -rf Lidarr/Lidarr.Update
69
70
# Disable built in updater.
71
install -Dm644 package_info "${pkgdir}/usr/lib/lidarr"
72
echo "PackageVersion=${pkgver}-${pkgrel}" >> "${pkgdir}/usr/lib/lidarr/package_info"
73
74
# Copy Lidarr
75
cp -dr Lidarr/* "${pkgdir}/usr/lib/lidarr/bin"
76
77
# Systemd
78
install -Dm644 lidarr.service "${pkgdir}/usr/lib/systemd/system/lidarr.service"
79
install -Dm644 lidarr.sysusers "${pkgdir}/usr/lib/sysusers.d/lidarr.conf"
80
install -Dm644 lidarr.tmpfiles "${pkgdir}/usr/lib/tmpfiles.d/lidarr.conf"
81
}
82
Changes since previous scan
--- PKGBUILD @ 2026-07-24 00:02+++ PKGBUILD @ 2026-08-03 00:08@@ -3,7 +3,7 @@ # Helpful URL: https://services.lidarr.audio/v1/update/nightly?version=0.0.0.0&os=linux&runtime=netcore&arch=x64&includeMajorVersion=true pkgname=lidarr-nightly-bin-pkgver=3.1.3.4977+pkgver=3.1.3.4987 pkgrel=1 pkgdesc='Music collection manager for newsgroup and torrent users (nightly builds)' arch=(x86_64 aarch64 armv7h)@@ -51,9 +51,9 @@ '85098d47734e8087480f8a29eafec50faa453487221ef01173888155d2b06e42' 'd71e37213ac65722e42f6f2c5772d4515c2d28a77b9f7608dc05c787d86ebaa5' '90a1960fef0d3833cd3635cedd16af3ee9ae6c7b95babc3021f6031d4e44c200')-sha256sums_x86_64=('16d72097b6b779c68e3eedaee1981b7a48d113e9e24d97b533ec81fd42782847')-sha256sums_aarch64=('83abb0d773ec488e42edb6bb232e790aa7f082d206e727f3bd9dee3fb06ddaf1')-sha256sums_armv7h=('4dce576ca3276a32091ffaa3892975f1f96d035c8d7e2f3f4427a8f28d4df94e')+sha256sums_x86_64=('e5272836657dd580902175b70b08ba63fa27a64d585c4e046da9dd5c53dfe413')+sha256sums_aarch64=('71c671e5f4d766971ac0648f6f12a39071130471fc35bfbc38b7fae9662b04e5')+sha256sums_armv7h=('8aa3bc9cabdc6e69b2574ac031e42c9540a628da6a11d9a215b3af02494ea505') package() { install -dm755 "${pkgdir}/usr/lib/lidarr/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 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 13:27:52 | MEDIUM | 1 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 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 |