journee-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: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-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 |