CVE-2020-35460: MPXJ path Traversal vulnerability
5.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.68929%
CWE
Published
12/18/2020
Updated
1/30/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
net.sf.mpxj:mpxj | maven | < 8.3.5 | 8.3.5 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability was explicitly patched in commit 8eaf422 by adding canonical path validation in processZipStream
. The CVE description directly references this ZIP stream handler flow, and the pre-patch code created files using ZipEntry.getName()
without sanitization. The added checks (canonicalDestinationFile.startsWith
) confirm this was the vulnerable point.