CVE-2020-2319:
Password stored in plain text by Jenkins VMware Lab Manager Slaves Plugin
3.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.1451%
CWE
Published
5/24/2022
Updated
1/31/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/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:labmanager | maven | <= 0.2.8 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unencrypted password storage in Jenkins' global config.xml
. Jenkins plugins typically serialize configuration data through getter methods in their configuration classes. The presence of a plaintext password in config.xml
indicates the password field was not properly encrypted before serialization. The getPassword()
method in the plugin's configuration class would be directly responsible for exposing the plaintext value to the serialization process. This pattern matches Jenkins plugin development conventions where sensitive fields require explicit encryption handling using Secret
class mechanisms, which appears absent here.