eclipse-jboss
maintainer Raimar
· 4 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads a JBoss Tools update site ZIP from a plausible project-owned host (download.jboss.org) for installation into Eclipse; it is a legitimate source for the project's own plugin artifacts, not a malicious or untrusted executable.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads a JBoss Tools update site ZIP from a plausible project-owned host (download.jboss.org) for installation into Eclipse; it is a legitimate source for the project's own plugin artifacts, not a malicious or untrusted executable.
1 higher static finding superseded - not the current verdict (shown for transparency)
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:13
source=("download.zip::http://download.jboss.org/jbosstools/static/${_eclipsever}/stable/updates/core/jbosstools-${pkgver}-updatesite-core.zip")
PKGBUILD
1 offending line(s) highlighted
1
#Maintainer: Raimar Buehmann <raimar _at_ buehmann _dot_ de>
2
3
pkgname=eclipse-jboss
4
pkgver=4.26.0.Final
5
_eclipsever=photon
6
pkgrel=1
7
pkgdesc='JBoss application server developer tools plugins for Eclipse IDE'
8
arch=('any')
9
url='http://tools.jboss.org/'
10
license=('LGPL' 'EPL' 'BSD')
11
depends=('eclipse-java>=4.5.0')
12
options=('!strip')
13
source=("download.zip::http://download.jboss.org/jbosstools/static/${_eclipsever}/stable/updates/core/jbosstools-${pkgver}-updatesite-core.zip")
14
sha256sums=('ed6f51e010391e606412c4388ab9f8883ce08307a17b892cf27c8b54ef2fa244')
15
16
package() {
17
# remove features and plug-ins containing sources
18
rm features/*.source_*
19
rm plugins/*.source_*
20
# remove gz files
21
# rm plugins/*.pack.gz
22
_dest=${pkgdir}/usr/lib/eclipse/dropins/${pkgname/eclipse-}/eclipse
23
install -d $_dest
24
# extract features (otherwise features are not recognized)
25
find features -type f | while read _feature ; do
26
if [[ ${_feature} =~ (.*\.jar$) ]] ; then
27
install -dm755 ${_dest}/${_feature%*.jar}
28
cd ${_dest}/${_feature/.jar}
29
jar xf ${srcdir}/${_feature} || return 1
30
else
31
install -Dm644 ${_feature} ${_dest}/${_feature}
32
fi
33
done
34
# copy plugins
35
find plugins -type f | while read _plugin ; do
36
install -Dm644 ${_plugin} ${_dest}/${_plugin}
37
done
38
}
39
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 00:14:47 | LOW | 2 |
| 2026-07-22 00:29:32 | LOW | 2 |
| 2026-07-21 00:24:15 | LOW | 2 |
| 2026-07-20 00:19:49 | LOW | 2 |
| 2026-07-19 00:17:08 | LOW | 2 |
| 2026-07-18 00:14:48 | LOW | 2 |
| 2026-07-17 00:06:16 | LOW | 2 |
| 2026-07-16 00:05:41 | LOW | 2 |
| 2026-07-15 00:09:25 | LOW | 2 |