stanford-parser
maintainer orphaned
· 2 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The source is a versioned zip file from the official Stanford NLP website, which is a legitimate academic project host; the package installs static data and scripts without executing remote code or introducing unverifiable binaries.
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 versioned zip file from the official Stanford NLP website, which is a legitimate academic project host; the package installs static data and scripts without executing remote code or introducing unverifiable binaries.
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:14
source=("https://nlp.stanford.edu/software/stanford-parser-full-${_version}.zip")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Will Price <will.price94@gmail.com>
2
_version=2018-10-17
3
pkgname=stanford-parser
4
pkgver=3.9.2
5
pkgrel=3
6
pkgdesc="A natural language parser is a program that works out the grammatical structure of sentences."
7
arch=(x86_64)
8
url="https://nlp.stanford.edu/software/lex-parser.shtml#Download"
9
license=('GPL')
10
groups=()
11
depends=(java-runtime)
12
optdepends=('stanford-corenlp-models-english: English models')
13
provides=('stanford-parser')
14
source=("https://nlp.stanford.edu/software/stanford-parser-full-${_version}.zip")
15
sha512sums=('1ecd54a26f413b6227caa9b2c04231816fb9bc1cf373efad1201f4d9a8cbe3f5dec8064c2f3680cc9e7dabc10ef4c6016941ab7420b1995af5be0e02587f8027')
16
17
package() {
18
cd "${srcdir}/stanford-parser-full-${_version}"
19
mkdir -p "${pkgdir}"/usr/{bin,share/{stanford-parser,doc/stanford-parser}}
20
cp -r . "${pkgdir}/usr/share/stanford-parser"
21
22
pushd "${pkgdir}/usr/bin"
23
for script in lexparser{,-{gui,lang,lang-train-test}}; do
24
cat > ${pkgdir}/usr/bin/${script} <<- EOF
25
#!/bin/bash
26
27
cd /usr/share/stanford-parser
28
./${script}.sh
29
EOF
30
chmod +x ${pkgdir}/usr/bin/${script}
31
done
32
popd
33
34
for doc in README{,_dependencies}.txt; do
35
install -m 644 ${doc} ${pkgdir}/usr/share/doc/stanford-parser/
36
done
37
}
38
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 |