radaromega-appimage
Downloads a prebuilt proprietary AppImage binary from dl.todesktop.com (a third-party app distribution platform, not the project's own official release infrastructure), which could be silently swapped; however a checksum is provided and todesktop.com is a legitimate app delivery service used by many Electron apps, so risk is moderate rather than high.
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:15
source=("${pkgname}-${pkgver}.AppImage::https://dl.todesktop.com/200402kk4yak2og/linux/appImage/x64")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 70%): Downloads a prebuilt proprietary AppImage binary from dl.todesktop.com (a third-party app distribution platform, not the project's own official release infrastructure), which could be silently swapped; however a checksum is provided and todesktop.com is a legitimate app delivery service used by many Electron apps, so risk is moderate rather than high.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Adam Scheerer <adamster5@yahoo.com>
pkgname=radaromega-appimage
_pkgname=RadarOmega
pkgver=5.7.2
pkgrel=1
pkgdesc="High-resolution NEXRAD radar weather app (requires subscription)"
arch=('x86_64')
url="https://www.radaromega.com/"
license=('proprietary')
depends=('zlib' 'hicolor-icon-theme' 'fuse2')
options=(!strip)
# Replace the URL below with the direct download link for the Linux AppImage
source=("${pkgname}-${pkgver}.AppImage::https://dl.todesktop.com/200402kk4yak2og/linux/appImage/x64")
sha256sums=('c8f3b2bbb56ed37d1c2fb815b4d851e0083e073d07f038942571a615f828b845')
prepare() {
cd "$srcdir"
chmod +x "${pkgname}-${pkgver}.AppImage"
# Extract the AppImage cleanly to pull desktop and icon configurations
./"${pkgname}-${pkgver}.AppImage" --appimage-extract
}
package() {
# 1. Install the main AppImage binary
install -Dm755 "${srcdir}/${pkgname}-${pkgver}.AppImage" "${pkgdir}/usr/bin/radaromega"
# 2. Move into the extracted folder to set up desktop integrations
cd "${srcdir}/squashfs-root"
# Find, modify, and install the .desktop file
local desktop_file=$(find . -maxdepth 1 -name "*.desktop" -print -quit)
if [ -n "$desktop_file" ]; then
sed -i 's|Exec=.*|Exec=/usr/bin/radaromega %U|' "$desktop_file"
sed -i 's|Icon=.*|Icon=radaromega|' "$desktop_file"
install -Dm644 "$desktop_file" "${pkgdir}/usr/share/applications/radaromega.desktop"
fi
# Find and install the application icon
local icon_file=$(find . -maxdepth 1 \( -name "*.png" -o -name "*.svg" \) -print -quit)
if [ -n "$icon_file" ]; then
local ext="${icon_file##*.}"
install -Dm644 "$icon_file" "${pkgdir}/usr/share/pixmaps/radaromega.${ext}"
fi
}
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 |