CVE-2017-1000505: Exposure of Sensitive Information to an Unauthorized Actor Jenkins Script Security Plugin
6.5
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.55567%
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:H/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins:script-security | maven | <= 1.36 | 1.37 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from Groovy type coercion bypassing sandbox checks for File constructor usage. The patch explicitly subjects coercions to the same checks as new File(String)
. Key functions are those handling constructor interception (SandboxInterceptor#onNewInstance) and constructor approval (Blacklist#isConstructorBlacklisted). These functions in ≤1.36 did not account for coercion-triggered File instantiations, allowing unauthorized file reads. The high confidence for SandboxInterceptor stems from its direct role in intercepting object creation, while Blacklist has medium confidence due to indirect involvement in approval logic.