CVE-2019-1003084: CSRF vulnerability in Zephyr Enterprise Test Management Plugin
6.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.37242%
CWE
Published
5/13/2022
Updated
1/9/2024
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins:zephyr-enterprise-test-management | maven | < 1.8 | 1.8 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from two missing security controls in doTestConnection
: 1) Absence of @POST
verb annotation made it vulnerable to CSRF via GET requests. 2) Missing Jenkins.getInstance().checkPermission(Jenkins.ADMINISTER)
allowed low-privileged users to execute the connection test. The commit a2a6986
explicitly adds both protections, confirming these were the vulnerable aspects.