CVE-2020-2128:
Password stored in plain text by ECX Copy Data Management Plugin
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.07093%
CWE
Published
5/24/2022
Updated
10/26/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
com.catalogic.ecxjenkins:catalogic-ecx | maven | <= 1.9 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unencrypted password storage in config.xml files. Jenkins plugin credentials are typically handled via: 1) Data-bound fields in builders (like ECXBuilder) that serialize to job configs, and 2) DescriptorImpl classes managing global configuration. The advisory explicitly states the password is stored in plain text in job config.xml, indicating the functions responsible for persisting the password field (likely servicePassword setters/constructors and configuration serialization logic) lack encryption. While no code is available, Jenkins plugin design patterns and the CWE-256/522 mapping strongly suggest these are the vulnerable components.