CVE-2022-34815: Cross-Site Request Forgery in Jenkins Request Rename Or Delete Plugin
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.25402%
CWE
Published
7/1/2022
Updated
2/2/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| org.jenkins-ci.plugins:rrod | maven | <= 1.1.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The CVE description and Jenkins advisory explicitly state the vulnerability stems from missing CSRF protection (POST requirement) on an endpoint that accepts pending requests. In Jenkins plugin architecture, such actions are typically handled by 'doX' methods in controller classes. The lack of POST enforcement implies the handler method (e.g., doAccept) does not validate the request method or CSRF token, making it vulnerable to forged GET/POST requests from malicious sites.