k-meleon-bin-wine
The PKGBUILD downloads a prebuilt Windows binary (7z archive) from 'o.rthost.win', which is not the official K-Meleon distribution host (kmeleonbrowser.org or SourceForge). The official K-Meleon releases are hosted on SourceForge; this appears to be a personal/unofficial mirror. The archive is extracted and installed as an executable Windows binary that runs under Wine. While a SHA256 checksum is present, it only verifies the file hasn't changed since the PKGBUILD was written — it doesn't establish trust in the host. If the file at that URL were replaced, users would get a different checksum and the build would fail, but the host itself is not authoritative. The second source (icon from a.fsdn.com/allura) is from SourceForge's CDN and is fine. The core concern is a prebuilt executable binary from a non-official personal host, which is a genuine medium supply-chain risk. The wine_script and desktop_script are straightforward and contain no obfuscation or malicious logic.
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=("https://o.rthost.win/kmeleon/KM${pkgver}-Goanna-${timecode}.7z" "https://a.fsdn.com/allura/p/kmeleon/icon?1499965860") -
PKGBUILD:14
source=("https://o.rthost.win/kmeleon/KM${pkgver}-Goanna-${timecode}.7z" "https://a.fsdn.com/allura/p/kmeleon/icon?1499965860")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The PKGBUILD downloads a prebuilt Windows binary (7z archive) from 'o.rthost.win', which is not the official K-Meleon distribution host (kmeleonbrowser.org or SourceForge). The official K-Meleon releases are hosted on SourceForge; this appears to be a personal/unofficial mirror. The archive is extracted and installed as an executable Windows binary that runs under Wine. While a SHA256 checksum is present, it only verifies the file hasn't changed since the PKGBUILD was written — it doesn't establish trust in the host. If the file at that URL were replaced, users would get a different checksum and the build would fail, but the host itself is not authoritative. The second source (icon from a.fsdn.com/allura) is from SourceForge's CDN and is fine. The core concern is a prebuilt executable binary from a non-official personal host, which is a genuine medium supply-chain risk. The wine_script and desktop_script are straightforward and contain no obfuscation or malicious logic.
PKGBUILD
1 offending line(s) highlighted#Maintainer: oshaboy <noamgilor{at}protonmail{dot}com>
pkgname=k-meleon-bin-wine
pkgver=76.4
timecode=20210213
pkgrel=1
pkgdesc="A Firefox Based Browser (runs through wine)"
arch=('i686' 'x86_64')
url="http://kmeleonbrowser.org/"
license=('GPL')
depends=(wine)
optdepends=(wine-mono wine_gecko)
makedepends=(p7zip)
source=("https://o.rthost.win/kmeleon/KM${pkgver}-Goanna-${timecode}.7z" "https://a.fsdn.com/allura/p/kmeleon/icon?1499965860")
sha256sums=('4be6d342a9a132f2b141d1bb5d85696a1b0aebbc48f4bd36f47b3accb35bec4a' '3d728db875f17ac7387b6dcdc5f39a10610170990076c67b866c7cae287fb960')
prepare() {
7z x -o"${srcdir}/k-meleon.d" KM${pkgver}-Goanna-${timecode}.7z
echo -e ${wine_script} >| ${srcdir}/k-meleon
echo -e ${desktop_script} >| ${srcdir}/k-meleon.desktop
chmod 755 ${srcdir}/k-meleon
mv "${srcdir}/icon?1499965860" "${srcdir}/kmeleon.png"
}
wine_script='
if [ ! -d ${HOME}/.kmeleon ] ; then \n
cp -r /opt/k-meleon ${HOME}/.kmeleon \n
chown -R $(whoami):$(whoami) ${HOME}/.kmeleon \n
fi \n
wine ${HOME}/.kmeleon/k-meleon.exe \n
'
desktop_script='
[Desktop Entry] \n
Name=K-Meleon (wine) \n
Exec=/usr/bin/k-meleon \n
Icon=kmeleon.png \n
Comment="A Firefox Based Browser (runs through wine)" \n
Type=Application \n
Terminal=false \n
Category=Network \n
'
package(){
mkdir "${pkgdir}/opt"
cp -r ${srcdir}/k-meleon.d "${pkgdir}/opt/k-meleon"
find "${pkgdir}/opt/k-meleon" -type d | xargs chmod 755
install -D "${srcdir}/k-meleon" "${pkgdir}/usr/bin/k-meleon"
#desktop link
install -Dm644 "${srcdir}/kmeleon.png" "${pkgdir}/usr/share/pixmaps/kmeleon.png"
install -Dm644 "${srcdir}/k-meleon.desktop" "${pkgdir}/usr/share/applications/k-meleon.desktop"
}
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 |