editix-free

maintainer Geballin · 24 votes · scanned 2026-08-03 00:08:14.047287
MEDIUM
View on AUR ↗
Why flagged 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.

Triggered rules

MEDIUM source=() URL on a non-standard host 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")
MEDIUM AI review 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
1# Maintainer : Geballin - Guillaume Ballin <macniaque at free dot fr>
2# Contributor: Phillip Smith <pkgbuild@phs.id.au>
3# http://github.com/fukawi2/aur-packages
4
5### I AM ONLY THE PACKAGER, NOT THE DEVELOPER
6### Please ask support questions about this software in one of:
7### 1) The AUR comments; OR
8### 2) Upstream forums/maillist etc; OR
9### 3) The ArchLinux forums
10### I do not always know enough about the software itself, or don't have the
11### time to promptly respond to direct emails.
12### If you have found a problem with the package/PKGBUILD (as opposed to
13### the software) then please do email me or post an AUR comment.
14
15pkgname=editix-free
16_pkgname=editix
17pkgver=2026
18pkgrel=1
19epoch=1
20pkgdesc="EditiX is a powerful and easy to use XML editor, Visual Schema Editor, XQuery Editor and XSLT debugger"
21arch=('any')
22license=('custom')
23depends=('java-runtime')
24url="http://free.editix.com/"
25source=("http://www.editix.com/download/editix$pkgver.zip")
26sha256sums=('4f27dce8c7e54703551009418072a4a355dde3601990ba1f7609acca84b63bb8')
27
28package() {
29 # Licenses first, before we move the whole directory to opt
30 cd "${srcdir}/${_pkgname}${pkgver}"
31 mkdir -p ${pkgdir}/usr/share/licenses/${pkgname}/
32 install -D -m644 LICENSE.txt "${pkgdir}/usr/share/licenses/${pkgname}/"
33
34 # Install the compiled app to /opt
35 install -dm755 "${pkgdir}/opt/${_pkgname}"
36 cp -r * ${pkgdir}/opt/${_pkgname}
37
38 # Create a symlink to /usr/bin
39 install -dm755 "${pkgdir}/usr/bin/"
40 ln -sf /opt/${_pkgname}/run.sh "${pkgdir}/usr/bin/${_pkgname}"
41 chmod 755 "${pkgdir}/opt/${_pkgname}/run.sh"
42
43 # Fix the run script
44 sed -e "s|:|:/opt/${_pkgname}/|g" \
45 -i "${pkgdir}/opt/${_pkgname}/run.sh"
46
47 sed -e "s|CLASSPATH=|CLASSPATH=/opt/${_pkgname}/|g" \
48 -i "${pkgdir}/opt/${_pkgname}/run.sh"
49
50 rm -f ${pkg}/opt/${_pkgname}/${_pkgname}${pkgver}
51}
52

Scan history

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

Report a package

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

0 / 4000
Your suggestion