freedownloadmanager-bin
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
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")
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# Maintainer: Seu Nome <seuemail@exemplo.com>
# Contributor: Freedownloadmanager Team <support@freedownloadmanager.org>
# Contributor: Elizeu Oliveira
pkgname=freedownloadmanager-bin
pkgver=6.33.1.6648
pkgrel=1
pkgdesc="Free Download Manager (FDM) - powerful modern download accelerator and organizer (binary release)."
arch=('x86_64')
url="https://www.freedownloadmanager.org/"
license=('custom')
depends=('openssl' 'xdg-utils' 'ffmpeg' 'libtorrent' 'gst-plugins-base')
makedepends=('desktop-file-utils' 'hicolor-icon-theme')
source=("${pkgname}-${pkgver}-amd64.deb::https://files2.freedownloadmanager.org/6/latest/freedownloadmanager.deb")
sha256sums=('SKIP')
prepare() {
mkdir -p "${srcdir}/${pkgname}-${pkgver}"
# Extrai o .deb baixado
bsdtar -xf "${srcdir}/${pkgname}-${pkgver}-amd64.deb" -C "${srcdir}/${pkgname}-${pkgver}"
# Extrai o conteúdo principal
bsdtar -xf "${srcdir}/${pkgname}-${pkgver}/data.tar.xz" -C "${srcdir}/${pkgname}-${pkgver}"
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
# Corrige .desktop para apontar para /usr/bin/fdm
sed -i 's|/opt/freedownloadmanager/fdm|/usr/bin/fdm|g' usr/share/applications/freedownloadmanager.desktop
sed -i 's|/opt/freedownloadmanager/icon.png|freedownloadmanager|g' usr/share/applications/freedownloadmanager.desktop
sed -i '/^Exec=/a StartupWMClass=fdm' usr/share/applications/freedownloadmanager.desktop
# Instala ícone
install -Dm644 opt/freedownloadmanager/icon.png \
"${pkgdir}/usr/share/icons/hicolor/256x256/apps/${pkgname}.png"
# Copia arquivos principais
cp -dpr --no-preserve=ownership opt usr "${pkgdir}"
# Cria symlink para binário
install -d "${pkgdir}/usr/bin"
ln -s "/opt/freedownloadmanager/fdm" "${pkgdir}/usr/bin/fdm"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 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 |