eclipse-pde
maintainer Raimar
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The source is a legitimate Eclipse project release tarball mirrored through a known academic mirror service; it is not a prebuilt executable or remote code, and the checksum is verified, making the risk low despite the non-whitelisted host.
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 source is a legitimate Eclipse project release tarball mirrored through a known academic mirror service; it is not a prebuilt executable or remote code, and the checksum is verified, making the risk low despite the non-whitelisted host.
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:19
"http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/eclipse/downloads/drops4/R-${pkgver}-${_buildTime}/org.eclipse.pde-${pkgver}.zip"
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Raimar Buehmann <raimar at buehmann dot de>
2
# Contributor: Shanto <shanto@hotmail.com>
3
# Contributor: Jesus Jerez <jerezmoreno@gmail.com>
4
5
pkgname=eclipse-pde
6
pkgver=4.13
7
_buildTime=201909161045
8
pkgrel=1
9
pkgdesc='Plug-in Development Environment Binary for Eclipse IDE'
10
url="http://www.eclipse.org/pde/"
11
arch=('any')
12
license=('EPL')
13
depends=('eclipse-rcp-source')
14
makedepends=('java-environment-common')
15
options=(!strip)
16
# https://download.eclipse.org/eclipse/downloads/
17
# https://download.eclipse.org/eclipse/downloads/drops4/R-4.13-201909161045/
18
source=(
19
"http://www.mirrorservice.org/sites/download.eclipse.org/eclipseMirror/eclipse/downloads/drops4/R-${pkgver}-${_buildTime}/org.eclipse.pde-${pkgver}.zip"
20
)
21
sha256sums=('99f88e26c9dcf4a1aee30fb8f7b124ad811d2dcbd91a3fa4040a20cca1e80c83')
22
23
package() {
24
_dest=${pkgdir}/usr/lib/eclipse/dropins/${pkgname/eclipse-}/eclipse
25
install -d $_dest
26
# extract features (otherwise features are not recognized)
27
find features -type f | while read _feature ; do
28
if [[ ${_feature} =~ (.*\.jar$) ]] ; then
29
install -dm755 ${_dest}/${_feature%*.jar}
30
cd ${_dest}/${_feature/.jar}
31
jar xf ${srcdir}/${_feature} || return 1
32
else
33
install -Dm644 ${_feature} ${_dest}/${_feature}
34
fi
35
done
36
# copy plugins
37
find plugins -type f | while read _plugin ; do
38
install -Dm644 ${_plugin} ${_dest}/${_plugin}
39
done
40
}
41
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 |