CVE-2022-36892: Jenkins rhnpush-plugin does not perform a permission check in a method implementing form validation
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.23415%
CWE
Published
7/28/2022
Updated
1/5/2024
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:N/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| org.jenkins-ci.plugins:rhnpush-plugin | maven | <= 0.5.1 | 0.5.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing permission checks in form validation methods. The GitHub commit 7827db3 shows a security fix adding 'project.checkPermission(Item.WORKSPACE)' to the doCheckIncludes method. This method handles pattern validation against workspace contents, and the absence of this check in versions ≤0.5.1 allowed unauthorized access. The method's purpose aligns exactly with the vulnerability description of workspace content probing via file pattern validation.