CVE-2019-10419:
Jenkins vFabric Application Director Plugin 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 |
---|---|---|---|
org.jenkins-ci.plugins:application-director-plugin | maven | <= 1.3 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unencrypted storage of credentials in the plugin's XML configuration file. In Jenkins plugin architecture, global configuration is typically handled by a DescriptorImpl
class using Stapler form binding. The configure()
method is responsible for persisting configuration data, and setPassword()
would be the method binding the password field from the configuration form. Since the password is stored in plaintext, these functions fail to utilize Jenkins' built-in credential encryption (e.g., Secret
class) or secure credential stores. The high confidence comes from the advisory's explicit mention of the vulnerable file pattern and Jenkins plugin development conventions.