CVE-2021-23901:
XML external entity (XXE) injection in Apache Nutch
9.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.79729%
CWE
Published
3/18/2022
Updated
2/1/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.apache.nutch:nutch | maven | < 1.18 | 1.18 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from insecure XML parsing in DmozParser. While exact patch diffs aren't shown, the CVE/JIRA details indicate:
- XXE occurs in DmozParser's XML processing
- Fix involved xercesImpl upgrade (2.12.1) which typically requires SAFER parser configuration
- Common XXE patterns involve missing security features in SAXParser/DocumentBuilderFactory
- The parse() method would be the entry point for XML processing
- createReader() would be where parser configuration occurs High confidence on parse() as the exploitation entry point, medium on createReader() as configuration point based on standard XXE mitigation patterns