CVE-2022-41234: Missing webhook endpoint authorization in Jenkins Rundeck Plugin
5.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.64327%
CWE
Published
9/22/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:L/I:L/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| org.jenkins-ci.plugins:rundeck | maven | < 3.6.12 | 3.6.12 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability explicitly concerns missing authorization on the /plugin/rundeck/webhook/ endpoint. In Jenkins plugin architecture, HTTP endpoints are typically handled by servlet classes with do* methods. The webhook handler function would be responsible for processing these requests. The absence of permission checks (specifically for Job/Build permission rather than just Overall/Read) in this endpoint's handler directly enables the vulnerability. While exact implementation details aren't available, the pattern matches Jenkins plugin vulnerability patterns where security checks are missing from endpoint handlers.