conar-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:36
source_x86_64=("conar-${pkgver}.deb::https://download.conar.app/linux/deb/x64")
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 x86_64 binary .deb from https://download.conar.app/linux/deb/x64, which is the project's own download subdomain (download.conar.app) rather than GitHub releases. The URL is a redirect/alias that always serves the latest or a specific version — there is no version pinned in the URL path itself, meaning the sha256sum is the only integrity check. A sha256sum IS present, which mitigates silent substitution for this exact build, but the URL pattern (no version in path) is concerning because a future pkgver bump without updating the checksum could silently install a different binary. The host (conar.app) is the official project domain matching the GitHub org (wannabespace/conar), so it is not a random personal host. However, it is still a prebuilt closed binary distributed outside of a reproducible build or GitHub Releases artifact, and the URL structure does not pin to a specific version. This is a genuine but moderate supply-chain concern: the binary is executed, comes from the vendor's own CDN (not a third-party), and has a checksum — making it medium rather than high.
PKGBUILD
1 offending line(s) highlighted# Maintainer: Bouteiller a2n Alan <hi@a2n.dev>
pkgname=conar-bin
pkgver=0.27.3
pkgrel=1
pkgdesc="AI-powered tool for working with Postgres, MySQL, MSSQL and ClickHouse."
arch=('x86_64')
url="https://github.com/wannabespace/conar"
license=('AGPL-3.0-or-later')
depends=(
'alsa-lib'
'at-spi2-core'
'cairo'
'dbus'
'expat'
'gcc-libs'
'glib2'
'glibc'
'gtk3'
'hicolor-icon-theme'
'libcups'
'libx11'
'libxcb'
'libxcomposite'
'libxdamage'
'libxext'
'libxfixes'
'libxkbcommon'
'libxrandr'
'mesa'
'nspr'
'nss'
'pango'
'systemd-libs'
)
options=('!strip' '!emptydirs')
source_x86_64=("conar-${pkgver}.deb::https://download.conar.app/linux/deb/x64")
sha256sums_x86_64=('b2a736572cf4fde0a3869c90a00dae1cfb500fd86d6ac20473a0d36d6bf0ba8c')
package() {
# Extract the .deb file
ar -x "${srcdir}/conar-${pkgver}.deb"
# Extract the data archive
tar -xJ -f data.tar.xz -C "${pkgdir}"
# Create symlink for command line usage
install -dm755 "${pkgdir}/usr/bin"
ln -s "/opt/Conar/Conar" "${pkgdir}/usr/bin/conar"
# Fix desktop file path if it exists
if [ -f "${pkgdir}/usr/share/applications/conar.desktop" ]; then
sed -i 's|/opt/Conar/Conar|conar|g' "${pkgdir}/usr/share/applications/conar.desktop"
fi
}
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 |