CVE-2019-10461:
Jenkins Dynatrace Plugin vulnerable to Insufficiently Protected Credentials
7.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.01084%
CWE
Published
5/24/2022
Updated
1/31/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:L/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:dynatrace-dashboard | maven | < 2.1.4 | 2.1.4 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unencrypted credential storage in the global config.php
file. Jenkins plugins typically handle credential storage through methods in their global configuration class (TAGlobalConfiguration
). The CVE specifically mentions credentials being stored in TAGlobalConfiguration.xml
, implicating the configuration persistence mechanism. The 'configure'
method (handling form submissions) and credential setters would be responsible for storing values without using Jenkins' Secret
class or encryption mechanisms. This matches Jenkins plugin vulnerability patterns where plaintext storage occurs in DataBoundSetters/configure
methods.