CVE-2023-25768: Missing Authorization in Jenkins Azure Credentials Plugin
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.15317%
CWE
Published
2/15/2023
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:N/I:H/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| org.jenkins-ci.plugins:azure-credentials | maven | <= 253.v887e0f9e898b | 254.v64da_8176c83a |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from form validation endpoints that lacked both authorization checks (CWE-862) and CSRF protection. The commit diff shows these methods were modified to: 1) Add @POST annotations to prevent CSRF, 2) Implement permission checks (ADMINISTER or CONFIGURE), and 3) Include ancestor path validation. The affected doVerifyConfiguration methods in multiple credential classes allowed attackers with just Read permissions to interact with external systems, which was corrected by the authorization checks added in the patch.