CVE-2019-10288:
Jenkins Jabber Server Plugin stores credentials in plain text
3.3
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.24491%
CWE
Published
5/13/2022
Updated
10/26/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 |
---|---|---|---|
de.e-nexus:jabber-server-plugin | maven | <= 1.9 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unencrypted credential storage in JabberBuilder.xml
. Jenkins plugins typically handle configuration through Descriptor classes and XStream serialization. The saveConfiguration
method (or equivalent persistence mechanism) would be directly writing credentials to disk without encryption. The DescriptorImpl.configure
method would process
form submissions containing credentials but fail to use Jenkins' credential encryption APIs. Confidence is high for the persistence mechanism due to the specific file path in advisories, and medium for the descriptor method due to typical Jenkins plugin patterns without seeing actual code.