scholaread-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:16
source=("${pkgname}-${pkgver}.deb::https://cdn.scholaread.com/assets/pc-releases/${pkgver}/com/Scholaread-linux-amd64-${pkgver}.deb")
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 80%): This PKGBUILD downloads a prebuilt binary .deb from cdn.scholaread.com (the vendor's own CDN, not a personal/unofficial host) and installs it directly. The main concerns are: (1) sha256sums=('SKIP') means no integrity verification — any compromise of the CDN or a MITM attack would silently deliver malicious binaries; (2) the package installs a setuid-root binary (chrome-sandbox with chmod 4755), which is a high-privilege operation; (3) it's a closed-source Electron app binary with no source verification. However, cdn.scholaread.com appears to be the official vendor CDN for the scholaread.com product, making this more of a standard 'binary from vendor' AUR pattern rather than a clearly unofficial/personal host. The SKIP checksum is the real concern — it means every install fetches whatever is currently at that URL with no pinning. This is a genuine supply-chain risk (medium) but not evidence of active malice.
PKGBUILD
1 offending line(s) highlighted# Maintainer: SummerElement <Dapugongying@foxmail.com>
pkgname=scholaread-bin
pkgver=1.1.66
pkgrel=3
pkgdesc="A helpful AI driven software that helps you do research."
arch=('x86_64')
url="https://scholaread.com"
license=('custom')
depends=('gtk3' 'nss' 'libxss' 'libxtst')
optdepends=('libnotify: desktop notifications support'
'xdg-utils: open URLs in browser'
'libsecret: password storage support'
'at-spi2-core: accessibility support'
'util-linux-libs: UUID generation support'
'libappindicator: system tray icon support')
source=("${pkgname}-${pkgver}.deb::https://cdn.scholaread.com/assets/pc-releases/${pkgver}/com/Scholaread-linux-amd64-${pkgver}.deb")
sha256sums=('SKIP')
package() {
# unzip DEB
ar x "${srcdir}/${pkgname}-${pkgver}.deb"
tar -xf data.tar.xz -C "${pkgdir}"
# fix file permission
chmod +x "${pkgdir}/opt/Scholaread/scholaread"
chmod 4755 "${pkgdir}/opt/Scholaread/chrome-sandbox"
# setup license
install -Dm644 "${pkgdir}/opt/Scholaread/LICENSE.electron.txt" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
post_install() {
# update icon cache
update-desktop-database
gtk-update-icon-cache -qt /usr/share/icons/hicolor
}
post_upgrade() {
post_install
}
post_remove() {
post_install
}
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 |