CVE-2022-29046: Stored Cross-site Scripting vulnerability in Jenkins Subversion Plugin
5.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.79105%
CWE
Published
4/13/2022
Updated
10/27/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:subversion | maven | < 2.15.4 | 2.15.4 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unescaped parameter names/descriptions in UI rendering. Jenkins plugins typically use Jelly templates for views, and XSS vulnerabilities in parameter handling are commonly found in these templates. The advisory specifically calls out parameter display pages as the attack vector, implicating the view layer components. While exact file paths aren't available in disclosures, the pattern matches Jenkins plugin architecture where:
- Jelly templates in src/main/resources handle HTML rendering
- Parameter definition classes in src/main/java manage parameter metadata High confidence in Jelly templates being vulnerable due to the XSS nature; medium confidence in Java methods due to potential data flow involvement.