lidarr-bin
maintainer txtsd
· 17 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 (lidarr.servarr.com), which is plausibly controlled by the project; despite the non-whitelisted host, the binaries are verified via sha256sums and the worst case of a malicious swap is limited to code execution within the app's sandbox, but given the source is the official vendor's distribution point, this is a standard supply chain risk for AUR packages and not inherently malicious.
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-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads prebuilt binaries from the project's official update server (lidarr.servarr.com), which is plausibly controlled by the project; despite the non-whitelisted host, the binaries are verified via sha256sums and the worst case of a malicious swap is limited to code execution within the app's sandbox, but given the source is the official vendor's distribution point, this is a standard supply chain risk for AUR packages and not inherently malicious.
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:48
source_x86_64=("Lidarr.master.${pkgver}.linux-core-x64.tar.gz::https://lidarr.servarr.com/v1/update/master/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
# Contributor: Sven Frenzel <aur@frenzel.dk>
4
# Helpful URL: https://services.lidarr.audio/v1/update/master?version=0.0.0.0&os=linux&runtime=netcore&arch=x64&includeMajorVersion=true
5
6
pkgname=lidarr-bin
7
pkgver=3.1.0.4875
8
pkgrel=1
9
pkgdesc='Music collection manager for newsgroup and torrent users.'
10
arch=(x86_64 aarch64 armv7h)
11
url='https://lidarr.audio'
12
license=('GPL-3.0-or-later')
13
groups=(servarr-bin)
14
depends=(
15
gcc-libs
16
glibc
17
sqlite
18
zlib
19
)
20
optdepends=(
21
'postgresql: postgresql database'
22
'sabnzbd: usenet downloader'
23
'nzbget: usenet downloader'
24
'qbittorrent: torrent downloader'
25
'deluge: torrent downloader'
26
'rtorrent: torrent downloader'
27
'nodejs-flood: torrent downloader'
28
'vuze: torrent downloader'
29
'aria2: torrent downloader'
30
'transmission-cli: torrent downloader (CLI and daemon)'
31
'transmission-gtk: torrent downloader (GTK+)'
32
'transmission-qt: torrent downloader (Qt)'
33
'jackett: torrent indexer proxy'
34
'nzbhydra2: torznab and usenet indexer proxy'
35
'prowlarr: torrent and usenet indexer proxy'
36
'autobrr: irc, torrent and usenet indexer proxy'
37
)
38
provides=(lidarr)
39
conflicts=(lidarr)
40
options=(!debug)
41
install=lidarr.install
42
source=(
43
lidarr.service
44
lidarr.sysusers
45
lidarr.tmpfiles
46
package_info
47
)
48
source_x86_64=("Lidarr.master.${pkgver}.linux-core-x64.tar.gz::https://lidarr.servarr.com/v1/update/master/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=x64")
49
source_aarch64=("Lidarr.master.${pkgver}.linux-core-arm64.tar.gz::https://lidarr.servarr.com/v1/update/master/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=arm64")
50
source_armv7h=("Lidarr.master.${pkgver}.linux-core-arm.tar.gz::https://lidarr.servarr.com/v1/update/master/updatefile?version=${pkgver}&os=linux&runtime=netcore&arch=arm")
51
sha256sums=('48f4cc5040b1a51e624f5be4977078b77bf7f87b9c1fb7fa34e844da4c831401'
52
'85098d47734e8087480f8a29eafec50faa453487221ef01173888155d2b06e42'
53
'd71e37213ac65722e42f6f2c5772d4515c2d28a77b9f7608dc05c787d86ebaa5'
54
'fa802821da0c2844b72fbe72d4b58c5b10f9c22a0805deb735d96f137029a5c4')
55
sha256sums_x86_64=('20f175aec2b908de2ae06b72544dae504efddb5db2a97ea4e36866de53bc2fa5')
56
sha256sums_aarch64=('ff58021d4b77b0310c90413abd4f3036cfd50312fe7b192e9d688d482e4cbf36')
57
sha256sums_armv7h=('c5680750ebce286e2793adb148618c22c4b461820d7421675f348208b41e6633')
58
59
package() {
60
install -dm755 "${pkgdir}/usr/lib/lidarr/bin"
61
62
# License
63
install -Dm644 Lidarr/LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}"
64
rm Lidarr/LICENSE.md
65
66
# Remove Service Helpers, and Update files
67
rm Lidarr/ServiceInstall*
68
rm Lidarr/ServiceUninstall*
69
rm -rf Lidarr/Lidarr.Update
70
71
# Disable built in updater.
72
install -Dm644 package_info "${pkgdir}/usr/lib/lidarr"
73
echo "PackageVersion=${pkgver}-${pkgrel}" >> "${pkgdir}/usr/lib/lidarr/package_info"
74
75
# Copy Lidarr
76
cp -dr Lidarr/* "${pkgdir}/usr/lib/lidarr/bin"
77
78
# Systemd
79
install -Dm644 lidarr.service "${pkgdir}/usr/lib/systemd/system/lidarr.service"
80
install -Dm644 lidarr.sysusers "${pkgdir}/usr/lib/sysusers.d/lidarr.conf"
81
install -Dm644 lidarr.tmpfiles "${pkgdir}/usr/lib/tmpfiles.d/lidarr.conf"
82
}
83
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 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 |
| 2026-07-15 00:09:25 | LOW | 2 |