CVE-2020-2250: Passwords stored in plain text by Jenkins ReadyAPI Functional Testing Plugin
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.3819%
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 |
|---|---|---|---|
| org.jenkins-ci.plugins:soapui-pro-functional-testing | maven | <= 1.3 | 1.4 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper handling of sensitive data in configuration persistence. Jenkins plugins typically use XStream serialization and the Secret class for credentials. The functions responsible for (1) configuring plugin settings (ProPluginImpl#configure) and (2) exposing password values (ProBuilder#getPassword) would directly control how passwords are stored. The CWE-256/CWE-311 alignment confirms plaintext storage patterns, and the fix in v1.4 implies encryption was added to these configuration pathways.