quartz-messenger

MEDIUM
maintainer kleintux 0 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

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.

Triggered rules

Medium External download from an untrusted host, not in source=() 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"
Medium AI review 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
1# Maintainer: kleintux <reg-archlinux AT klein DOT tuxli DOT ch>
2# Contributor: Demir Yerli <mrquantumoff@protonmail.com>
3pkgname=quartz-messenger
4pkgver=0.3.0
5_pkgver=v${pkgver}
6pkgrel=1
7pkgdesc="libquartz based messenger"
8arch=(x86_64)
9url="http://bultek.synchron.com.ua/bultekdev/software/quartz-messenger"
10license=('MIT')
11groups=("mrquantumoff")
12depends=("openssl")
13makedepends=('git' 'cargo' 'rust')
14#source=("http://bultek.synchron.com.ua/bultekdev/software/quartz-messenger/-/archive/${_pkgver}/quartz-messenger-${_pkgver}.tar.gz")
15#md5sums=('SKIP')
16
17prepare() {
18 cd ${srcdir}
19 curl -k -LO "http://bultek.synchron.com.ua/bultekdev/software/quartz-messenger/-/archive/${_pkgver}/quartz-messenger-${_pkgver}.tar.gz"
20 tar -xpf quartz-messenger-${_pkgver}.tar.gz
21}
22
23build(){
24 cd ${srcdir}/quartz-messenger-${_pkgver}
25 cargo build -r
26}
27
28package() {
29 cd "${srcdir}/quartz-messenger-${_pkgver}"
30 install -Dm755 -t "${pkgdir}/usr/bin/" target/release/quartz-messenger
31 chmod +x ${pkgdir}/usr/bin/quartz-messenger
32 install -Dm644 "LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
33 install -Dm644 "README.md" "${pkgdir}/usr/share/doc/${pkgname}/README.md"
34}
35

Scan history

Scanned at (UTC)SeverityRules
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

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion