dim-agent-bin
Installs a prebuilt binary .deb from a non-official, non-project-owned host (dimcode.echooai.com) that is unrelated to the stated project URL (dimagent.com), making it trivially swappable by an unrelated party; the checksum provides a point-in-time integrity check but cannot verify the binary's provenance or future updates.
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:27
source=("DimAgent-${pkgver}.deb::https://dimcode.echooai.com/updates/stable/linux/x64/DimAgent-${pkgver}.deb")
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
llm_review
An AI model (anthropic/claude-sonnet-4.6) reviewed this and agrees it is MEDIUM (confidence 70%): Installs a prebuilt binary .deb from a non-official, non-project-owned host (dimcode.echooai.com) that is unrelated to the stated project URL (dimagent.com), making it trivially swappable by an unrelated party; the checksum provides a point-in-time integrity check but cannot verify the binary's provenance or future updates.
PKGBUILD
1 offending line(s) highlighted# Maintainer: czyt <czytcn@gmail.com>
pkgname=dim-agent-bin
pkgver=0.9.13
pkgrel=2
pkgdesc='Agent runtime for desktop, terminal, scripts, and editors'
arch=('x86_64')
url='https://dimagent.com'
license=('custom')
depends=(
'gtk3'
'libnotify'
'libxss'
'libxtst'
'xdg-utils'
'at-spi2-core'
'util-linux-libs'
'libsecret'
'libxi'
'glib2'
'gdk-pixbuf2'
'libxcb'
)
optdepends=('libappindicator-gtk3: system tray indicator support')
options=('!debug' '!strip')
provides=('dimagent')
conflicts=('dimagent')
source=("DimAgent-${pkgver}.deb::https://dimcode.echooai.com/updates/stable/linux/x64/DimAgent-${pkgver}.deb")
noextract=("DimAgent-${pkgver}.deb")
sha256sums=('9963404baeda60e99e2e70d5270951312e2a96430e831c80f4ae4c05896c0e21')
package() {
local data_member
data_member=$(ar t "${srcdir}/DimAgent-${pkgver}.deb" | awk '/^data\.tar\.(gz|bz2|xz|zst|lz4|lzma)$/ { print; exit }')
[[ -n "${data_member}" ]] || {
echo 'Could not find a supported data archive in the Debian package' >&2
return 1
}
ar p "${srcdir}/DimAgent-${pkgver}.deb" "${data_member}" |
bsdtar -xf - -C "${pkgdir}"
install -dm755 "${pkgdir}/usr/bin"
ln -s /opt/DimAgent/DimAgent "${pkgdir}/usr/bin/dimagent"
chmod -R u=rwX,go=rX "${pkgdir}"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-26 07:31:48 | Medium | 3 |
| 2026-08-26 07:29:42 | Medium | 3 |