CVE-2019-10379: Jenkins Google Cloud Messaging Notification Plugin stores credentials in plain text
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.26474%
CWE
Published
5/24/2022
Updated
1/30/2024
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:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
org.jenkins-ci.plugins:gcm-notification | maven | <= 1.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from unencrypted credential storage in the global configuration file. Jenkins plugins typically use XStream serialization for configuration persistence. The GcmPublisher
class's configure
method (or related persistence mechanism) would be responsible for writing configuration data to disk. Since the advisory explicitly identifies the vulnerable file (GcmPublisher.xml
) and lack of encryption, the function
handling configuration serialization is the root cause. The high confidence comes from the direct match between the documented vulnerable file pattern and standard Jenkins plugin architecture for configuration handling.