recollectr
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=("${pkgname}-${pkgver}.AppImage::https://recollectr.io/download/linux/"
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 85%): This PKGBUILD downloads a prebuilt AppImage binary from recollectr.io (the official vendor site for this product), extracts and installs it. The main concerns are: (1) sha256sums='SKIP' for the AppImage means there is no integrity verification — any compromise of recollectr.io or a MITM attack would result in arbitrary code execution on the user's machine; (2) pkgver='latest' combined with a URL that always fetches the latest version means the package is not pinned to any specific release, making reproducibility impossible and silently pulling in whatever the server currently serves; (3) the AppImage is executed during the build phase (./${pkgname}-${pkgver}.AppImage --appimage-extract) to extract its contents, meaning a malicious or tampered binary runs at build time. While recollectr.io appears to be the legitimate upstream vendor site (not a personal/unofficial host), the combination of SKIP checksums, unpinned 'latest' version, and execution of a downloaded binary during packaging represents a genuine supply-chain risk. This is a real medium-severity concern, not a false positive.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
pkgname=recollectr
pkgver=latest
pkgrel=1
pkgdesc="Record and recall without breaking your flow"
arch=('x86_64')
url='https://recollectr.io'
license=("custom:${pkgname}")
makedepends=('gendesk')
noextract=("${pkgname}-${pkgver}.AppImage")
source=("${pkgname}-${pkgver}.AppImage::https://recollectr.io/download/linux/"
'LICENSE')
sha256sums=('SKIP'
'SKIP')
package() {
install -Dm644 LICENSE -t "${pkgdir}/usr/share/licenses/${pkgname}"
chmod 755 ./${pkgname}-${pkgver}.AppImage
./${pkgname}-${pkgver}.AppImage --appimage-extract
install -Dm644 squashfs-root/usr/share/icons/hicolor/256x256/apps/recollectr.png "${pkgdir}/usr/share/pixmaps/recollectr.png"
gendesk -f -n --pkgname "${pkgname}" \
--pkgdesc "$pkgdesc" \
--name "Recollectr" \
--comment "$pkgdesc" \
--exec "${pkgname}" \
--categories 'Utility;Office;Application' \
--icon "${pkgname}"
install -Dm644 "${pkgname}.desktop" -t "${pkgdir}/usr/share/applications"
install -d "${pkgdir}/usr/bin"
install -d "${pkgdir}/opt"
cp -avR squashfs-root/ "${pkgdir}/opt/${pkgname}"
ln -s /opt/${pkgname}/AppRun "${pkgdir}/usr/bin/recollectr"
find "${pkgdir}/opt/${pkgname}" -type d -exec chmod 755 {} +
}
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 |