CVE-2017-1000395: Exposure of Sensitive Information to an Unauthorized Actor in Jenkins
4.3
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.31322%
CWE
Published
5/14/2022
Updated
1/27/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/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.main:jenkins-core | maven | <= 2.73.1 | 2.73.2 |
| org.jenkins-ci.main:jenkins-core | maven | >= 2.74, <= 2.83 | 2.84 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the User.java's getAllProperties() method returning user properties without proper authorization checks. The commit diff shows this method was modified to add a Jenkins.ADMINISTER permission check, confirming the original implementation lacked access control. This matches the advisory's description of exposing user details via /user/(username)/api to non-admins. The test case addition in UserTest.java further validates the security boundary was enforced at this method.