CVE-2005-3747: Mortbay Jetty Discloses JSP Source Code
N/A
CVSS Score
Basic Information
CVE ID
GHSA ID
EPSS Score
0.94737%
CWE
Published
5/1/2022
Updated
9/18/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
-
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.mortbay.jetty:jetty | maven | < 5.1.6 | 5.1.6 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability involves improper handling of URL-encoded backslashes (%5C) in JSP requests. This suggests two key failure points:
- JspServlet.service() - Entry point for JSP processing, which would need to validate the request path before compilation.
- HttpRequest.getPath() - Core path resolution method where improper decoding could introduce filesystem backslashes (particularly impactful on Windows).
While no patch details are available, these functions align with Jetty's architecture and the vulnerability pattern: failure to normalize paths before JSP processing checks would allow serving source code instead of executing the JSP. The medium confidence reflects inference from vulnerability mechanics rather than direct patch analysis.