alpemix-bin
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://www.alpemix.com/site/linux/${_zip}" "${_name}.desktop" "icons.zip")
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 (Alpemix) from alpemix.com, which is the official vendor website for this remote desktop product. The main binary has an md5sum check (310efc91c7ac9cfc8172de8fb3f6ec67), which provides some integrity verification. However, two sources (the .desktop file and icons.zip) have SKIP checksums — the icons.zip is particularly notable since it's a local/bundled file with no URL shown, meaning its origin and integrity are completely unverifiable. The core concern is the prebuilt binary from a non-major vendor: alpemix.com appears to be the legitimate upstream, but it's a small/obscure vendor and the binary is executed directly. This is a classic -bin package pattern for a proprietary remote desktop tool. The medium rating is appropriate: it's a prebuilt binary from a small vendor (not a major forge), with partial checksum coverage, and remote desktop software has elevated privilege/network access implications. Not clearly malicious, but a genuine supply-chain concern due to the unverifiable binary nature and SKIP checksums on additional sources.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Wasabi <wasabithumbs@gmail.com>
_name="alpemix"
pkgname="${_name}-bin"
pkgver="1.6.0"
pkgrel=1
pkgdesc="Free remote desktop program"
arch=('x86_64' 'i686')
url='https://www.alpemix.com/en/Linux'
license=('custom')
depends=('glibc' 'lib32-gcc-libs' 'zlib')
provides=("${_name}=${pkgver}")
makedepends=('unzip')
_zip="Alpemix.zip"
source=("https://www.alpemix.com/site/linux/${_zip}" "${_name}.desktop" "icons.zip")
md5sums=("310efc91c7ac9cfc8172de8fb3f6ec67" "SKIP" "SKIP")
options=(!strip)
prepare() {
cd $srcdir
unzip -o "Alpemix.zip"
chmod +rw "Alpemix"
unzip -o "icons.zip"
}
# build() {
# }
package() {
install -Dm644 "${srcdir}/${_name}.desktop" "${pkgdir}/usr/share/applications/${_name}.desktop"
install -dm755 "${pkgdir}/usr/share/icons/hicolor"
mkdir -p "${pkgdir}/usr/share/icons/hicolor/16x16/apps"
cp "${srcdir}/16x16.png" "${pkgdir}/usr/share/icons/hicolor/16x16/apps/${_name}.png"
mkdir -p "${pkgdir}/usr/share/icons/hicolor/32x32/apps"
cp "${srcdir}/32x32.png" "${pkgdir}/usr/share/icons/hicolor/32x32/apps/${_name}.png"
mkdir -p "${pkgdir}/usr/share/icons/hicolor/256x256/apps"
cp "${srcdir}/256x256.png" "${pkgdir}/usr/share/icons/hicolor/256x256/apps/${_name}.png"
install -Dm755 "${srcdir}/Alpemix" "${pkgdir}/usr/bin/alpemix"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | MEDIUM | 2 |
| 2026-08-02 00:16:08 | MEDIUM | 2 |
| 2026-08-01 00:11:18 | MEDIUM | 2 |
| 2026-07-31 00:14:10 | MEDIUM | 2 |
| 2026-07-30 00:17:23 | MEDIUM | 2 |
| 2026-07-29 00:25:53 | MEDIUM | 2 |
| 2026-07-28 00:07:28 | MEDIUM | 2 |
| 2026-07-27 00:24:32 | MEDIUM | 2 |
| 2026-07-26 00:07:32 | MEDIUM | 2 |
| 2026-07-25 00:13:44 | MEDIUM | 2 |
| 2026-07-24 00:02:28 | MEDIUM | 2 |
| 2026-07-23 00:14:47 | MEDIUM | 2 |
| 2026-07-22 00:29:32 | MEDIUM | 2 |
| 2026-07-21 00:24:15 | MEDIUM | 2 |
| 2026-07-20 00:19:49 | MEDIUM | 2 |
| 2026-07-19 00:17:08 | MEDIUM | 2 |
| 2026-07-18 00:14:48 | MEDIUM | 2 |
| 2026-07-17 00:06:16 | MEDIUM | 2 |
| 2026-07-16 00:05:41 | MEDIUM | 2 |
| 2026-07-15 00:09:25 | MEDIUM | 2 |