CVE-2020-2170: Stored XSS vulnerability in Jenkins RapidDeploy Plugin
5.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.46137%
CWE
Published
5/24/2022
Updated
1/31/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins:rapiddeploy-jenkins | maven | < 4.2.1 | 4.2.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unescaped package names being displayed in a UI table. Jenkins plugins typically use Jelly templates for UI rendering. The function
rendering the package name values in the table would be vulnerable if it directly outputs untrusted data without using Jenkins' escape()
function or equivalent XSS protections. The fix in 4.2.1 specifically mentions escaping package names, confirming the vulnerability exists in the display logic of package names obtained from remote servers.