memoa-bin
The PKGBUILD downloads and installs prebuilt binaries (memoa_aarch64, memoa_x86_64) from repository.hellonico.info, which is a personal/unofficial Nexus repository host rather than a well-known project mirror or official vendor CDN. The binaries are installed as executable files in /usr/bin. While sha256sums are provided (offering integrity checking against tampering in transit), the trust anchor is still the maintainer's own server — if that host is compromised or the maintainer substitutes different binaries, users would execute arbitrary code. The license is listed as 'unknown', and the source/desktop files are fetched without a URL (implying they are in the AUR git repo itself, which is acceptable). This is a genuine supply-chain concern: executed binaries from a personal host with no independent verification path (no GPG signature, no official release page cross-reference). This matches the classic medium pattern of an unofficial binary host.
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_aarch64=("https://repository.hellonico.info/repository/arch/memoa/${pkgver}/memoa_aarch64")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 82%): The PKGBUILD downloads and installs prebuilt binaries (memoa_aarch64, memoa_x86_64) from repository.hellonico.info, which is a personal/unofficial Nexus repository host rather than a well-known project mirror or official vendor CDN. The binaries are installed as executable files in /usr/bin. While sha256sums are provided (offering integrity checking against tampering in transit), the trust anchor is still the maintainer's own server — if that host is compromised or the maintainer substitutes different binaries, users would execute arbitrary code. The license is listed as 'unknown', and the source/desktop files are fetched without a URL (implying they are in the AUR git repo itself, which is acceptable). This is a genuine supply-chain concern: executed binaries from a personal host with no independent verification path (no GPG signature, no official release page cross-reference). This matches the classic medium pattern of an unofficial binary host.
PKGBUILD
1 offending line(s) highlighted# Maintainer: nico <nico@example.com>
pkgname=memoa-bin
pkgver=0.1.375
pkgrel=1
pkgdesc="The best for Markdown Editing"
arch=('aarch64' 'x86_64')
url="https://example.com/memoa"
license=('unknown')
depends=('gtk3' 'webkit2gtk' 'openssl')
provides=('memoa')
conflicts=('memoa')
options=('!strip')
source=("memoa.png"
"memoa.desktop")
source_aarch64=("https://repository.hellonico.info/repository/arch/memoa/${pkgver}/memoa_aarch64")
source_x86_64=("https://repository.hellonico.info/repository/arch/memoa/${pkgver}/memoa_x86_64")
sha256sums=('72efe0d27e0fb81dd20b151c240ce99dddea08afcb1c6b2deb7556ed2b2690e5'
'8bbe11862d09b4d2fa9820b530c16ac6681e52bfe64fb3d8e20cebc9bdb8c2a2')
sha256sums_aarch64=('445019c7d43088c1f7b4cfc0c391882b4da1e2e34193fdec7d7422e6d9f71b0c')
sha256sums_x86_64=('a5a9aeef7abe11a74722ac4e958f2643b3f2c85132b920d152141fa4cafb3e84')
package() {
install -Dm644 "${srcdir}/memoa.png" "${pkgdir}/usr/share/pixmaps/memoa.png"
install -Dm644 "${srcdir}/memoa.desktop" "${pkgdir}/usr/share/applications/memoa.desktop"
if [ "$CARCH" = 'aarch64' ]; then
install -Dm755 "${srcdir}/memoa_aarch64" "${pkgdir}/usr/bin/memoa"
elif [ "$CARCH" = 'x86_64' ]; then
install -Dm755 "${srcdir}/memoa_x86_64" "${pkgdir}/usr/bin/memoa"
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 |