CVE-2020-2256: Stored XSS vulnerability in Pipeline Maven Integration Plugin via unescaped display name
8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.46137%
CWE
Published
5/24/2022
Updated
12/20/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| org.jenkins-ci.plugins:pipeline-maven | maven | <= 3.9.2 | 3.9.3 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unescaped display names in the build cause UI. The commit diff shows the removal of <j:out> tags in description.jelly, which are responsible for safe HTML escaping in Jenkins Jelly templates. In vulnerable versions (<=3.9.2), the display name was rendered via ${...} interpolation without escaping, while the fix (3.9.3) introduced proper escaping by leveraging Jelly's implicit escaping or safer context handling. The file path and template logic align with the vulnerability's description of XSS in build cause rendering.