CVE-2020-2218: Password stored in plain text by Jenkins HP ALM Quality Center Plugin
3.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.14162%
CWE
Published
5/24/2022
Updated
10/26/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:hp-quality-center | maven | <= 1.6 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper credential handling in the plugin's configuration persistence layer. Jenkins plugins typically use Secret-based mechanisms for credentials, but the HP ALM Quality Center Plugin <=1.6:
- Implements configure() without encrypting the password field
- Fails to use Jenkins' Secret class for password storage
- Directly serializes sensitive data to disk via XStream This matches CWE-256 (plaintext storage) and CWE-522 (insufficient protection). The QualityCenterIntegrationRecorder class is explicitly named in the advisory's configuration file path, and password field handling in Jenkins plugins follows predictable patterns.