CVE-2019-10367: Insertion of Sensitive Information into Log File in Jenkins Configuration as Code Plugin
5.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.05904%
CWE
Published
5/24/2022
Updated
12/6/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
io.jenkins:configuration-as-code | maven | <= 1.26 | 1.27 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from incomplete secret masking in DataBoundConfigurator
's logging. The commit diff shows the fix added Attribute.calculateIfSecret()
checks to the logging logic in tryConstructor
. The original code (lines 163-164) only masked Secret.class
types, while the patched version (lines 164-166) added robust secret detection. This matches the advisory's description of incomplete masking in DataBoundConfigurator
logs.