CVE-2019-10297: Jenkins Sametime Plugin stores credentials in plain text
3.3
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.24491%
CWE
Published
5/13/2022
Updated
10/26/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:L/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:sametime | maven | <= 0.4 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the plugin storing credentials in plain text in its global configuration
file. Jenkins plugins typically use XStream
for serialization/deserialization of configuration
data. The SametimePublisher
class (evident from the XML filename
) would contain methods like configure()
for saving settings and readResolve()
for loading them. Since credentials are stored unencrypted, these methods fail to use Jenkins' Secret
class or encryption mechanisms when handling sensitive data. The high confidence comes from the direct mapping between the disclosed vulnerable file
pattern and standard Jenkins plugin implementation practices for configuration
handling.