CVE-2019-10424: Jenkins elOyente Plugin has Insufficiently Protected Credentials
3.3
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.05573%
CWE
Published
5/24/2022
Updated
2/23/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
com.technicolor:elOyente | maven | <= 1.3 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unencrypted storage of credentials in the plugin's global configuration file. Jenkins plugins typically use a configure()
method in their Builder/Descriptor classes to handle configuration persistence. The high confidence in ElOyenteBuilder.configure
comes from: 1) Standard Jenkins plugin architecture patterns 2) Direct reference to the vulnerable file name matching the plugin's FQCN 3) The CWE-522 pattern matching unencrypted credential persistence. The setPassword
method is inferred as medium confidence since password handling setters are typically involved in credential storage flows, though without seeing the actual code we can't confirm implementation details.