CVE-2019-10443: Jenkins iceScrum Plugin stores credentials in Cleartext
8.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.31631%
CWE
Published
5/24/2022
Updated
2/15/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:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins:icescrum | maven | < 1.1.5 | 1.1.5 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the iceScrum Plugin storing credentials unencrypted in job config.xml
files. Jenkins plugins typically handle credential persistence via methods like saveCredentials()
and retrieval via getCredentials()
. The advisory explicitly states credentials were stored in cleartext, implying these functions did not use Jenkins' encrypted credential storage mechanisms (e.g., Secret
class or CredentialsBinding
). The high confidence comes from the pattern of similar vulnerabilities in Jenkins plugins and the explicit reference to config.xml
storage in the CVE description.