freedownloadmanager-bin

MEDIUM
maintainer eoliveira 1 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

This PKGBUILD downloads a prebuilt binary .deb from files2.freedownloadmanager.org, which is the official vendor's own download host (Free Download Manager is a legitimate, well-known proprietary download manager and this subdomain is their standard distribution endpoint). The binary is extracted and installed directly, including native executables under /opt/freedownloadmanager/. The main concern is sha256sums=('SKIP'), which means there is no integrity verification of the downloaded binary — if the host is compromised or the URL is silently redirected, a malicious binary could be installed without detection. This is a real supply-chain concern for an executed binary, even from an official vendor host. The pattern (prebuilt proprietary binary + SKIP checksum) is a genuine medium-severity issue: not malicious, but the lack of checksum verification for an executed binary is a meaningful risk. No piracy or broken flags apply.

Triggered rules

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:14 source=("${pkgname}-${pkgver}-amd64.deb::https://files2.freedownloadmanager.org/6/latest/freedownloadmanager.deb")
Medium AI review llm_review

An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): This PKGBUILD downloads a prebuilt binary .deb from files2.freedownloadmanager.org, which is the official vendor's own download host (Free Download Manager is a legitimate, well-known proprietary download manager and this subdomain is their standard distribution endpoint). The binary is extracted and installed directly, including native executables under /opt/freedownloadmanager/. The main concern is sha256sums=('SKIP'), which means there is no integrity verification of the downloaded binary — if the host is compromised or the URL is silently redirected, a malicious binary could be installed without detection. This is a real supply-chain concern for an executed binary, even from an official vendor host. The pattern (prebuilt proprietary binary + SKIP checksum) is a genuine medium-severity issue: not malicious, but the lack of checksum verification for an executed binary is a meaningful risk. No piracy or broken flags apply.

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Seu Nome <seuemail@exemplo.com>
2# Contributor: Freedownloadmanager Team <support@freedownloadmanager.org>
3# Contributor: Elizeu Oliveira
4
5pkgname=freedownloadmanager-bin
6pkgver=6.33.1.6648
7pkgrel=1
8pkgdesc="Free Download Manager (FDM) - powerful modern download accelerator and organizer (binary release)."
9arch=('x86_64')
10url="https://www.freedownloadmanager.org/"
11license=('custom')
12depends=('openssl' 'xdg-utils' 'ffmpeg' 'libtorrent' 'gst-plugins-base')
13makedepends=('desktop-file-utils' 'hicolor-icon-theme')
14source=("${pkgname}-${pkgver}-amd64.deb::https://files2.freedownloadmanager.org/6/latest/freedownloadmanager.deb")
15sha256sums=('SKIP')
16
17prepare() {
18 mkdir -p "${srcdir}/${pkgname}-${pkgver}"
19 # Extrai o .deb baixado
20 bsdtar -xf "${srcdir}/${pkgname}-${pkgver}-amd64.deb" -C "${srcdir}/${pkgname}-${pkgver}"
21 # Extrai o conteúdo principal
22 bsdtar -xf "${srcdir}/${pkgname}-${pkgver}/data.tar.xz" -C "${srcdir}/${pkgname}-${pkgver}"
23}
24
25package() {
26 cd "${srcdir}/${pkgname}-${pkgver}"
27
28 # Corrige .desktop para apontar para /usr/bin/fdm
29 sed -i 's|/opt/freedownloadmanager/fdm|/usr/bin/fdm|g' usr/share/applications/freedownloadmanager.desktop
30 sed -i 's|/opt/freedownloadmanager/icon.png|freedownloadmanager|g' usr/share/applications/freedownloadmanager.desktop
31 sed -i '/^Exec=/a StartupWMClass=fdm' usr/share/applications/freedownloadmanager.desktop
32
33 # Instala ícone
34 install -Dm644 opt/freedownloadmanager/icon.png \
35 "${pkgdir}/usr/share/icons/hicolor/256x256/apps/${pkgname}.png"
36
37 # Copia arquivos principais
38 cp -dpr --no-preserve=ownership opt usr "${pkgdir}"
39
40 # Cria symlink para binário
41 install -d "${pkgdir}/usr/bin"
42 ln -s "/opt/freedownloadmanager/fdm" "${pkgdir}/usr/bin/fdm"
43}
44

Scan history

Scanned at (UTC)SeverityRules
2026-09-17 00:27:14 Medium 2
2026-09-16 00:03:17 Medium 2
2026-09-15 00:25:31 Medium 2
2026-09-14 00:27:57 Medium 2
2026-09-13 00:19:54 Medium 2
2026-09-12 00:25:17 Medium 2
2026-09-11 00:19:22 Medium 2
2026-09-10 00:22:44 Medium 2
2026-09-09 00:04:09 Medium 2
2026-09-08 00:18:08 Medium 2
2026-09-07 00:30:15 Medium 2
2026-09-06 00:17:06 Medium 2
2026-09-05 00:16:27 Medium 2
2026-09-04 00:03:13 Medium 2
2026-09-03 00:15:47 Medium 2
2026-09-02 00:02:31 Medium 2
2026-09-01 00:11:19 Medium 2
2026-08-31 00:19:57 Medium 2
2026-08-30 00:04:14 Medium 2
2026-08-29 00:29:17 Medium 2

Report a package

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

0 / 4000
Your suggestion