CVE-2019-10366: Skytap Cloud CI Plugin stored credentials in plain text
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.3905%
CWE
Published
5/24/2022
Updated
12/14/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins:skytap | maven | <= 2.06 | 2.07 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from handling credentials as plaintext strings rather than encrypted secrets. The commit shows critical changes:
- SkytapBuildWrapper's authKey field changed from String to Secret type, with getAuthKey() modified to use Secret.toString
- CreatePublishURLStep's urlPassword field changed from String to Secret type, with associated constructor and getter modifications
- The RequirePasswordBlock constructor parameter changed from String to Secret for password storage These functions directly handled sensitive credentials without encryption in vulnerable versions, as evidenced by the patch replacing String with Jenkins' Secret class for proper credential handling.