truple-latest-bin
This PKGBUILD downloads a prebuilt AppImage binary from linux.truple.io (the project's own Linux distribution subdomain) and executes it during both pkgver() and build() phases. The concerns are: (1) sha256sums='SKIP' means there is no integrity verification — the binary could be silently replaced or served differently to different users; (2) the source URL points to a 'latest' path (prod/Truple.AppImage) with no version pinning in the URL itself, meaning the downloaded binary may not correspond to pkgver=1.10.4; (3) the AppImage is executed at build time to extract itself. While linux.truple.io appears to be the official vendor distribution host for this proprietary accountability/screenshot software, the combination of an executed binary with SKIP checksums and a floating 'latest' URL constitutes a genuine supply-chain risk — any compromise of that host or DNS hijack would result in arbitrary code execution on the builder's machine with no integrity check to catch it. This is a real medium-severity concern, not a false positive.
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:20
"$_filename"::"https://linux.truple.io/prod/Truple.AppImage"
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 72%): This PKGBUILD downloads a prebuilt AppImage binary from linux.truple.io (the project's own Linux distribution subdomain) and executes it during both pkgver() and build() phases. The concerns are: (1) sha256sums='SKIP' means there is no integrity verification — the binary could be silently replaced or served differently to different users; (2) the source URL points to a 'latest' path (prod/Truple.AppImage) with no version pinning in the URL itself, meaning the downloaded binary may not correspond to pkgver=1.10.4; (3) the AppImage is executed at build time to extract itself. While linux.truple.io appears to be the official vendor distribution host for this proprietary accountability/screenshot software, the combination of an executed binary with SKIP checksums and a floating 'latest' URL constitutes a genuine supply-chain risk — any compromise of that host or DNS hijack would result in arbitrary code execution on the builder's machine with no integrity check to catch it. This is a real medium-severity concern, not a false positive.
PKGBUILD
1 offending line(s) highlighted# Maintainer: DanielNak <daniel@tee.cat>
_filename=Truple.AppImage
_pkgname='truple'
pkgname="$_pkgname-latest-bin"
pkgver=1.10.4
pkgrel=1
pkgdesc="Truple Screenshot Accountability holds you accountable for how you use your Linux machine by randomly capturing and sharing screenshots with a trusted friend or loved one of your choosing."
arch=('x86_64')
url="https://truple.io/"
license=('custom')
depends=(
'hicolor-icon-theme'
)
makedepends=()
provides=("$_pkgname")
conflicts=("$_pkgname")
options=('!strip')
source=(
"$_filename"::"https://linux.truple.io/prod/Truple.AppImage"
)
sha256sums=(
'SKIP'
)
pkgver() {
cd "$srcdir"
# extract appimage
chmod +x "$_filename"
"$srcdir/$_filename" --appimage-extract truple.desktop > /dev/null
cat squashfs-root/truple.desktop | grep Version | cut -d= -f2
}
build() {
cd "$srcdir"
# extract appimage
chmod +x "$_filename"
"$srcdir/$_filename" --appimage-extract
# fix folder permissions
find "$srcdir/squashfs-root" -type d -exec chmod 755 {} \;
# fix apprun script
sed -Ei \
's@^(if \[ -z \"\$APPDIR\" ] ; then)$@APPDIR="/opt/truple"\n\1@' \
"$srcdir/squashfs-root/AppRun"
# fix desktop file
sed -Ei \
's@^Exec=AppRun (.*)$@Exec=truple \1@' \
"$srcdir/squashfs-root/truple.desktop"
}
package() {
# apprun script
install -vDm0755 "$srcdir/squashfs-root/AppRun" "$pkgdir/usr/bin/truple"
# desktop file
install -vDm0644 "$srcdir/squashfs-root/truple.desktop" "$pkgdir/usr/share/applications/truple.desktop"
# icons
install -vDm0644 "$srcdir/squashfs-root/usr/share/icons/hicolor/0x0/apps/truple.png" -t "$pkgdir/usr/share/icons/hicolor/512x512/apps"
# license files
install -vDm0644 "$srcdir/squashfs-root/LICENSE.electron.txt" -t "$pkgdir/usr/share/licenses/$_pkgname"
install -vDm0644 "$srcdir/squashfs-root/LICENSES.chromium.html" -t "$pkgdir/usr/share/licenses/$_pkgname"
# everything else
mkdir -p "$pkgdir/opt"
mv "$srcdir/squashfs-root" "$pkgdir/opt/truple"
}
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 |