CVE-2020-21485: Alluxio Cross Site Scripting vulnerability
6.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.21274%
CWE
Published
6/20/2023
Updated
11/8/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| org.alluxio:alluxio-parent | maven | <= 1.8.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability manifests in the handling of the 'path' parameter within the browse functionality. The GitHub issue (#10552) demonstrates that unescaped user input from the URL parameter is reflected in the HTML response. In Java web applications using servlets, this typically occurs when request parameters are directly written to the response stream without using output encoding methods like ESAPI.encoder().encodeForHTML(). The WebInterfaceBrowseServlet would be responsible for rendering the browse interface and processing the 'path' parameter, making it the most likely location for missing sanitization logic.