CVE-2022-34789: Jenkins Matrix Reloaded Plugin vulnerable to CSRF
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.2542%
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:N/UI:R/S:U/C:N/I:H/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| net.praqma:matrix-reloaded | maven | <= 1.1.3 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from an HTTP endpoint accepting rebuild requests without POST method enforcement. In Jenkins plugin architecture, such endpoints typically correspond to 'do*' methods in Action classes. The advisory explicitly states the lack of POST requirement, which maps to missing @RequirePOST annotation and CSRF protection in the rebuild handler. While exact code isn't available, this pattern matches Jenkins' vulnerability patterns for CSRF (CWE-352) and the plugin's described functionality.