CVE-2020-2263: Stored XSS vulnerability in Radiator View Plugin
8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.46137%
CWE
Published
5/24/2022
Updated
1/28/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:radiatorviewplugin | maven | <= 1.29 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unescaped job names in tooltips. Jenkins plugins typically use Jelly templates for HTML rendering. The Radiator View's index.jelly
would contain the logic to display job names in tooltips. Since the advisory explicitly mentions the full name isn't escaped, the most probable location is the template directly outputting ${job.fullName}
without using Jenkins' escapeHtml()
function or Jelly's built-in escaping mechanisms. This matches Jenkins XSS vulnerability patterns where user-controlled data (job names) is rendered without proper context-aware escaping.