CVE-2019-1003092:
Cross-site request forgery vulnerability in Jenkins Nomad Plugin
6.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.37242%
CWE
Published
5/13/2022
Updated
8/13/2023
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:nomad | maven | < 0.5.1 | 0.5.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from two critical missing protections in doTestConnection
: 1) Absence of @RequirePOST annotation made it vulnerable to CSRF via GET requests. 2) Missing Jenkins.ADMINISTER
permission check allowed low-privilege users to trigger the action. The patch explicitly adds both protections (visible in the commit diff), confirming these were the vulnerability vectors. The CWE-352 classification and advisory descriptions directly match this scenario.