CVE-2022-28152:
CSRF vulnerability in Jenkins Job and Node ownership Plugin
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.20124%
CWE
Published
3/30/2022
Updated
2/2/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
com.synopsys.jenkinsci:ownership | maven | <= 0.13.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from an endpoint allowing CSRF attacks to restore job ownership. Jenkins plugins typically implement such actions through HttpServlet
do* methods. The advisory specifically mentions missing POST requirement (CWE-352), which in Jenkins' architecture implies: 1) Lack of @RequirePOST
annotation 2) Absence of CrumbExclusion
for CSRF protection 3) No session validation. The function
name is inferred from the described action ('restore default ownership') and standard Jenkins plugin patterns.