max-appimage

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

The PKGBUILD downloads a prebuilt AppImage binary from download.max.ru (an unofficial/vendor-specific host, not a well-known official mirror) and executes it during the prepare() phase (--appimage-extract). The binary is then installed as an executable. While MAX is a Russian messenger service and download.max.ru appears to be its official distribution host, it is not a widely recognized or auditable source. The sha256sum provides some integrity protection, but there is no GPG signature verification. The core concern is a closed-source, prebuilt binary executed and installed from a single vendor-controlled host with no independent verification mechanism — a genuine supply-chain risk if the host is compromised or the binary is silently replaced. This fits the medium category: not clearly malicious, but a real code-execution concern from an unofficial/unverifiable binary host.

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:26 source_x86_64=("http://download.max.ru/electron/${_filename}")
Medium AI review 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 AppImage binary from download.max.ru (an unofficial/vendor-specific host, not a well-known official mirror) and executes it during the prepare() phase (--appimage-extract). The binary is then installed as an executable. While MAX is a Russian messenger service and download.max.ru appears to be its official distribution host, it is not a widely recognized or auditable source. The sha256sum provides some integrity protection, but there is no GPG signature verification. The core concern is a closed-source, prebuilt binary executed and installed from a single vendor-controlled host with no independent verification mechanism — a genuine supply-chain risk if the host is compromised or the binary is silently replaced. This fits the medium category: not clearly malicious, but a real code-execution concern from an unofficial/unverifiable binary host.

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: KUHTOXO https://aur.archlinux.org/account/kuhtoxo
2
3pkgname=max-appimage
4pkgver=26.1.4.11224
5pkgrel=1
6
7pkgdesc="MAX messenger."
8arch=("x86_64")
9url='https://max.ru'
10license=("custom:max")
11categories=("network")
12provides=("${pkgname%-appimage}")
13conflicts=("${pkgname%-appimage}")
14optdepends=(
15 'libappindicator-gtk3: tray icon'
16 'libayatana-appindicator: tray icon'
17)
18options=('!strip')
19
20_app_name="MAX"
21_filename="${_app_name}.AppImage"
22_squashfs_desktop_file="${_app_name}.desktop"
23_squashfs_icon_file="${_app_name}.png"
24_install_path="/opt/appimages"
25
26source_x86_64=("http://download.max.ru/electron/${_filename}")
27sha256sums_x86_64=('2a62165974fce37f268037823178cfaac4e5f81c215d5df8564109fff7378281')
28
29prepare() {
30 chmod a+x ${srcdir}/${_filename}
31 ${srcdir}/${_filename} --appimage-extract > /dev/null
32 sed -i -E "s|Exec=AppRun|Exec=${_install_path}/${_filename}|" "squashfs-root/${_squashfs_desktop_file}"
33}
34
35package() {
36 install -Dm755 "${srcdir}"/${_filename} "${pkgdir}"/${_install_path}/${_filename}
37
38 # install icons
39 install -dm755 "${pkgdir}/usr/share/icons"
40 cp -dpr --no-preserve=ownership "squashfs-root/usr/share/icons" "${pkgdir}/usr/share"
41 chmod -R 755 "${pkgdir}/usr/share/icons"
42 find "${pkgdir}/usr/share/icons" -type f -name "${_squashfs_icon_file}" -exec chmod 644 {} \;
43
44 # install appication desktop file
45 install -Dm644 "${srcdir}/squashfs-root/${_squashfs_desktop_file}" -t "${pkgdir}/usr/share/applications"
46}
47

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