quartz-messenger
Triggered rules
external_download_not_in_source
curl/wget fetches a URL on a non-allowlisted host that is not part of source=(), so it is not checksum-verified by makepkg.
-
PKGBUILD:19
curl -k -LO "http://bultek.synchron.com.ua/bultekdev/software/quartz-messenger/-/archive/${_pkgver}/quartz-messenger-${_pkgver}.tar.gz"
llm_review
An AI model (anthropic/claude-4.6-sonnet-20260217) reviewed this and agrees it is MEDIUM (confidence 82%): The PKGBUILD downloads a source tarball from a personal/unofficial GitLab-like instance (bultek.synchron.com.ua) using curl with -k (SSL verification disabled), bypassing the source=() array and thus all checksum verification. The commented-out source= line with md5sums='SKIP' shows the maintainer was aware of the proper mechanism but chose to use curl instead. The -k flag disabling TLS certificate verification makes this susceptible to MITM attacks in addition to the supply-chain risk from an unofficial host. The downloaded tarball is then compiled with cargo and the resulting binary is installed to /usr/bin. This is a genuine medium-severity supply-chain concern: executed/compiled code from an unofficial host with no integrity verification and TLS disabled.
PKGBUILD
1 offending line(s) highlighted# Maintainer: kleintux <reg-archlinux AT klein DOT tuxli DOT ch>
# Contributor: Demir Yerli <mrquantumoff@protonmail.com>
pkgname=quartz-messenger
pkgver=0.3.0
_pkgver=v${pkgver}
pkgrel=1
pkgdesc="libquartz based messenger"
arch=(x86_64)
url="http://bultek.synchron.com.ua/bultekdev/software/quartz-messenger"
license=('MIT')
groups=("mrquantumoff")
depends=("openssl")
makedepends=('git' 'cargo' 'rust')
#source=("http://bultek.synchron.com.ua/bultekdev/software/quartz-messenger/-/archive/${_pkgver}/quartz-messenger-${_pkgver}.tar.gz")
#md5sums=('SKIP')
prepare() {
cd ${srcdir}
curl -k -LO "http://bultek.synchron.com.ua/bultekdev/software/quartz-messenger/-/archive/${_pkgver}/quartz-messenger-${_pkgver}.tar.gz"
tar -xpf quartz-messenger-${_pkgver}.tar.gz
}
build(){
cd ${srcdir}/quartz-messenger-${_pkgver}
cargo build -r
}
package() {
cd "${srcdir}/quartz-messenger-${_pkgver}"
install -Dm755 -t "${pkgdir}/usr/bin/" target/release/quartz-messenger
chmod +x ${pkgdir}/usr/bin/quartz-messenger
install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
}
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 |