notedeck-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:12
source_x86_64=("https://damus.io/notedeck/dl/v${pkgver}/notedeck_v${pkgver}-x64.deb")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): The PKGBUILD downloads prebuilt binary .deb packages from damus.io (the official project website, matching the upstream URL on GitHub at github.com/damus-io/notedeck) and installs the extracted binaries directly. While damus.io is the official vendor host for this project, the use of 'SKIP' for checksums means there is no integrity verification — any compromise or substitution of the binary at the source URL would go undetected. This is a real supply-chain concern: executed binaries with no checksum verification. The host is the official vendor (not a random personal host), which reduces but does not eliminate the risk. This warrants a medium rating rather than high, as there is no evidence of malice, but the missing checksums on executed binaries represent a genuine packaging security gap.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Sebastian Korotkiewicz <skorotkiewicz@gmail.com>
pkgname=notedeck-bin
pkgver=0.4.0
pkgrel=1
pkgdesc="The nostr browser"
arch=('x86_64' 'aarch64')
url="https://github.com/damus-io/notedeck" # https://damus.io/notedeck/install/
license=('GPL-3')
depends=('glibc')
options=(!strip)
source_x86_64=("https://damus.io/notedeck/dl/v${pkgver}/notedeck_v${pkgver}-x64.deb")
source_aarch64=("https://damus.io/notedeck/dl/v${pkgver}/notedeck_v${pkgver}-arm64.deb")
sha256sums_x86_64=('SKIP')
sha256sums_aarch64=('SKIP')
package() {
# Create package directory if it doesn't exist
mkdir -p "$pkgdir"
# Extract the .deb archive
cd "$srcdir"
# ar x "../notedeck_v${pkgver}-x64.deb"
ar x "${srcdir}/notedeck_v${pkgver}-"*".deb"
# Extract data archive to the package directory
tar -xf data.tar.xz -C "$pkgdir"
# Clean up
rm -f control.tar.xz data.tar.xz debian-binary
# Create a menu entry if desktop files exist but weren't included
if [ -f "$pkgdir/usr/bin/notedeck" ] && [ ! -d "$pkgdir/usr/share/applications" ]; then
mkdir -p "$pkgdir/usr/share/applications"
cat > "$pkgdir/usr/share/applications/notedeck.desktop" << EOF
[Desktop Entry]
Name=Notedeck
GenericName=The nostr browser
Exec=notedeck
Terminal=false
Type=Application
Categories=Utility;
EOF
fi
}
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 |