journee-bin
The PKGBUILD downloads a prebuilt AppImage binary from an Amazon S3 bucket (s3.amazonaws.com/journee-app/), extracts it, and installs it system-wide. This is a real supply-chain concern: S3 buckets can be misconfigured, taken over, or have objects replaced without notice, and there is no GPG signature verification — only a sha256sum. The sha256sum provides integrity for the specific version but does not authenticate the publisher. The host is not an official distribution channel (e.g., GitHub Releases for the project at adueck.github.io/journee), it is a personal/app-specific S3 bucket. The binary is executed during build (AppImage --appimage-extract runs the AppImage runtime), and the extracted contents are installed as a full Electron/AppImage application under /opt. This pattern — unverified prebuilt binary from a non-canonical host with no signing — is a textbook medium-severity supply-chain risk, consistent with the original rating.
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=("${pkgname%-bin}-${pkgver}.AppImage::https://s3.amazonaws.com/journee-app/Journee-${pkgver}-x86_64.AppImage")
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 AppImage binary from an Amazon S3 bucket (s3.amazonaws.com/journee-app/), extracts it, and installs it system-wide. This is a real supply-chain concern: S3 buckets can be misconfigured, taken over, or have objects replaced without notice, and there is no GPG signature verification — only a sha256sum. The sha256sum provides integrity for the specific version but does not authenticate the publisher. The host is not an official distribution channel (e.g., GitHub Releases for the project at adueck.github.io/journee), it is a personal/app-specific S3 bucket. The binary is executed during build (AppImage --appimage-extract runs the AppImage runtime), and the extracted contents are installed as a full Electron/AppImage application under /opt. This pattern — unverified prebuilt binary from a non-canonical host with no signing — is a textbook medium-severity supply-chain risk, consistent with the original rating.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Dimitris Kiziridis <ragouel at outlook dot com>
pkgname=journee-bin
pkgver=1.1.2
pkgrel=1
pkgdesc="A simplified, RedNotebook-type journal/diary app. With a focus on minimal design and a distraction free writing environment"
arch=('x86_64')
url='https://adueck.github.io/journee'
license=('Apache')
provides=('journee')
makedepends=('gendesk')
options=('!emptydirs')
noextract=("${pkgname%-bin}-${pkgver}.AppImage")
source=("${pkgname%-bin}-${pkgver}.AppImage::https://s3.amazonaws.com/journee-app/Journee-${pkgver}-x86_64.AppImage")
sha256sums=('2b05513db146bc19db8dcb691ecbb9c50425a8e9387a801b5b6175b33c5b027f')
package() {
chmod 755 ./${pkgname%-bin}-${pkgver}.AppImage
./${pkgname%-bin}-${pkgver}.AppImage --appimage-extract
install -Dm644 squashfs-root/usr/share/icons/hicolor/512x512/apps/journee.png "${pkgdir}/usr/share/pixmaps/journee.png"
gendesk -f -n --pkgname "${pkgname%-bin}" \
--pkgdesc "$pkgdesc" \
--name "Journee" \
--comment "$pkgdesc" \
--exec "${pkgname%-bin}" \
--categories 'Office;Application;' \
--icon "${pkgname%-bin}"
install -Dm644 "${pkgname%-bin}.desktop" -t "${pkgdir}/usr/share/applications"
install -d "${pkgdir}/usr/bin"
install -d "${pkgdir}/opt"
cp -avR squashfs-root/ "${pkgdir}/opt/${pkgname%-bin}"
ln -s /opt/${pkgname%-bin}/AppRun "${pkgdir}/usr/bin/${pkgname%-bin}"
find "${pkgdir}/opt/${pkgname%-bin}" -type d -exec chmod 755 {} +
}
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 |