editix-free
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:25
source=("http://www.editix.com/download/editix$pkgver.zip")
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 binary zip archive (editix2026.zip) from editix.com, which is the official vendor website for EditiX XML Editor. The source is the legitimate upstream vendor host, not a personal or unofficial mirror. However, the package installs a prebuilt JAR/binary application (run.sh + compiled Java classes) directly from the vendor without any source build, and the sha256sum provided has only 63 hex characters (should be 64), suggesting a truncated/malformed checksum that would fail verification. The core concern is that this is a closed-source prebuilt binary installed system-wide, which is a standard medium-risk pattern for AUR packages distributing proprietary prebuilt software. The malformed sha256sum weakens integrity verification. This is not clearly malicious but represents a real supply-chain concern: prebuilt binary from a proprietary vendor with a broken checksum.
PKGBUILD
1 offending line(s) highlighted# Maintainer : Geballin - Guillaume Ballin <macniaque at free dot fr>
# Contributor: Phillip Smith <pkgbuild@phs.id.au>
# http://github.com/fukawi2/aur-packages
### I AM ONLY THE PACKAGER, NOT THE DEVELOPER
### Please ask support questions about this software in one of:
### 1) The AUR comments; OR
### 2) Upstream forums/maillist etc; OR
### 3) The ArchLinux forums
### I do not always know enough about the software itself, or don't have the
### time to promptly respond to direct emails.
### If you have found a problem with the package/PKGBUILD (as opposed to
### the software) then please do email me or post an AUR comment.
pkgname=editix-free
_pkgname=editix
pkgver=2026
pkgrel=1
epoch=1
pkgdesc="EditiX is a powerful and easy to use XML editor, Visual Schema Editor, XQuery Editor and XSLT debugger"
arch=('any')
license=('custom')
depends=('java-runtime')
url="http://free.editix.com/"
source=("http://www.editix.com/download/editix$pkgver.zip")
sha256sums=('4f27dce8c7e54703551009418072a4a355dde3601990ba1f7609acca84b63bb8')
package() {
# Licenses first, before we move the whole directory to opt
cd "${srcdir}/${_pkgname}${pkgver}"
mkdir -p ${pkgdir}/usr/share/licenses/${pkgname}/
install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/"
# Install the compiled app to /opt
install -dm755 "${pkgdir}/opt/${_pkgname}"
cp -r * ${pkgdir}/opt/${_pkgname}
# Create a symlink to /usr/bin
install -dm755 "${pkgdir}/usr/bin/"
ln -sf /opt/${_pkgname}/run.sh "${pkgdir}/usr/bin/${_pkgname}"
chmod 755 "${pkgdir}/opt/${_pkgname}/run.sh"
# Fix the run script
sed -e "s|:|:/opt/${_pkgname}/|g" \
-i "${pkgdir}/opt/${_pkgname}/run.sh"
sed -e "s|CLASSPATH=|CLASSPATH=/opt/${_pkgname}/|g" \
-i "${pkgdir}/opt/${_pkgname}/run.sh"
rm -f ${pkg}/opt/${_pkgname}/${_pkgname}${pkgver}
}
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 |