atani
The PKGBUILD downloads a prebuilt snap binary from api.snapcraft.io (the official Canonical Snap Store API), extracts it with unsquashfs, and installs the resulting Electron-based executable directly to /opt and /usr/bin. The source host is the official Snap Store API, not a random personal host, so this is not an unofficial mirror. However, the checksum is SKIP'd (the sha384sum is commented out), meaning the downloaded binary is not verified against any known-good hash. A snap revision is pinned (_snaprev=193), which provides some reproducibility, but without an enforced checksum an attacker who could intercept or substitute the download (or if the snap store served a different binary for that revision) would deliver unverified executable code. This is a real supply-chain concern: a closed-source, prebuilt binary with no checksum verification installed as a system executable. The snap store is a legitimate vendor channel for this proprietary app, but the missing checksum enforcement keeps this at medium rather than clean.
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:18
source=("https://api.snapcraft.io/api/v1/snaps/download/${_snapid}_${_snaprev}.snap")
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 snap binary from api.snapcraft.io (the official Canonical Snap Store API), extracts it with unsquashfs, and installs the resulting Electron-based executable directly to /opt and /usr/bin. The source host is the official Snap Store API, not a random personal host, so this is not an unofficial mirror. However, the checksum is SKIP'd (the sha384sum is commented out), meaning the downloaded binary is not verified against any known-good hash. A snap revision is pinned (_snaprev=193), which provides some reproducibility, but without an enforced checksum an attacker who could intercept or substitute the download (or if the snap store served a different binary for that revision) would deliver unverified executable code. This is a real supply-chain concern: a closed-source, prebuilt binary with no checksum verification installed as a system executable. The snap store is a legitimate vendor channel for this proprietary app, but the missing checksum enforcement keeps this at medium rather than clean.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Facundo Olasagarre <facundo.vasco@gmail.com>
pkgname=atani
pkgver=14.39.0
pkgrel=1
pkgdesc="The all-in-one crypto platform you’ve been dreaming about. Exchanges, wallets and taxes under one roof"
arch=('x86_64')
url="https://atani.com/"
license=('unknown')
depends=('nss' 'gtk3')
makedepends=('squashfs-tools')
provides=('atani')
conflicts=('atani-snap')
replaces=('atani-snap')
_snapid="fRYdkXBDVAKnSXTJG5xa4PwBR4RqGDkV"
_snaprev="193"
install=$pkgname.install
source=("https://api.snapcraft.io/api/v1/snaps/download/${_snapid}_${_snaprev}.snap")
md5sums=('SKIP')
#sha384sums=('2f69cc4963e935a89d54a62dfe452f5bcc9c027d6480dc4e4b561bccd04f0104a745389b552712c64f82068b6a766ee4')
prepare() {
echo "Extracting snap"
#Extract snap file
unsquashfs -q -f -d "${srcdir}/${pkgname}" "${_snapid}_${_snaprev}.snap"
}
package() {
# Install files
install -d "${pkgdir}/opt/${pkgname}"
cp -r "${srcdir}/${pkgname}/." "${pkgdir}/opt/${pkgname}"
# Desktop Entry
sed -i 's|${SNAP}/meta/gui/icon.png|atani|g' "${pkgdir}/opt/${pkgname}/meta/gui/atani.desktop"
install -Dm644 "${pkgdir}/opt/${pkgname}/meta/gui/atani.desktop" -t "${pkgdir}/usr/share/applications"
install -Dm644 "${pkgdir}/opt/${pkgname}/meta/gui/icon.png" "${pkgdir}/usr/share/pixmaps/atani.png"
# Clean up unnecessary files
rm -rf "${pkgdir}/opt/${pkgname}"/{data-dir,gnome-platform,lib,meta,scripts,usr,*.sh}
# Symlink binary to /usr/bin
install -d "${pkgdir}/usr/bin"
ln -sf "/opt/${pkgname}/atani" "${pkgdir}/usr/bin"
}
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 |