formal-desktop-bin
This PKGBUILD downloads prebuilt proprietary binaries (Electron-based desktop app) from formalcloud.net/static-assets, which is the vendor's own CDN host for the Formal product. The checksums are pinned with sha256sums, providing integrity verification. The pattern is standard for binary AUR packages (-bin suffix). The host 'static-assets.formalcloud.net' is the official distribution channel for the joinformal.com product, not a personal or unofficial mirror. However, this is still a closed-source, prebuilt binary from a proprietary vendor with no way to audit the binary contents — the sha256 only guarantees the file hasn't changed in transit, not that the binary itself is safe. This is the inherent risk of any -bin proprietary package and is the standard medium-risk classification for such packages in the AUR ecosystem. There is no obfuscation, no unusual execution, no piracy concern, and no evidence of malicious intent — just the normal supply-chain trust concern of executing unauditable vendor binaries.
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_x86_64=("formal-desktop-${pkgver}-x86_64.deb::https://static-assets.formalcloud.net/desktop-app/linux/formal-desktop_${pkgver}_amd64.deb")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): This PKGBUILD downloads prebuilt proprietary binaries (Electron-based desktop app) from formalcloud.net/static-assets, which is the vendor's own CDN host for the Formal product. The checksums are pinned with sha256sums, providing integrity verification. The pattern is standard for binary AUR packages (-bin suffix). The host 'static-assets.formalcloud.net' is the official distribution channel for the joinformal.com product, not a personal or unofficial mirror. However, this is still a closed-source, prebuilt binary from a proprietary vendor with no way to audit the binary contents — the sha256 only guarantees the file hasn't changed in transit, not that the binary itself is safe. This is the inherent risk of any -bin proprietary package and is the standard medium-risk classification for such packages in the AUR ecosystem. There is no obfuscation, no unusual execution, no piracy concern, and no evidence of malicious intent — just the normal supply-chain trust concern of executing unauditable vendor binaries.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Ani Betts <anais@anaisbetts.org>
pkgname=formal-desktop-bin
pkgver=0.5.5
pkgrel=1
pkgdesc="The Formal Desktop app for Linux - database access control and security"
arch=('x86_64' 'aarch64')
url="https://joinformal.com"
license=('custom:proprietary')
depends=('gtk3' 'glibc' 'libayatana-appindicator' 'libsecret' 'libx11')
provides=('formal-desktop' 'formal')
conflicts=('formal-desktop')
options=('!strip')
source_x86_64=("formal-desktop-${pkgver}-x86_64.deb::https://static-assets.formalcloud.net/desktop-app/linux/formal-desktop_${pkgver}_amd64.deb")
source_aarch64=("formal-desktop-${pkgver}-aarch64.deb::https://static-assets.formalcloud.net/desktop-app/linux/formal-desktop_${pkgver}_arm64.deb")
sha256sums_x86_64=('9a37fa0eed061e87d88f0af64c798ee44edaf5c5b568e71c57ea50b70ad6b37e')
sha256sums_aarch64=('993c6a41dd0cb8a82ca06bac4feb42da12f66d21590d31a8a944a13b42f0a82c')
package() {
cd "${srcdir}"
# Extract the deb package
if [[ "${CARCH}" == "x86_64" ]]; then
ar -x "formal-desktop-${pkgver}-x86_64.deb"
else
ar -x "formal-desktop-${pkgver}-aarch64.deb"
fi
# Extract data archive (could be .tar.gz, .tar.xz, or .tar.zst)
if [[ -f data.tar.gz ]]; then
tar -xzf data.tar.gz -C "${pkgdir}"
elif [[ -f data.tar.xz ]]; then
tar -xJf data.tar.xz -C "${pkgdir}"
elif [[ -f data.tar.zst ]]; then
tar --zstd -xf data.tar.zst -C "${pkgdir}"
else
# Try to find any data.tar.* file
tar -xf data.tar.* -C "${pkgdir}"
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 |