CVE-2022-34803: Jenkins OpsGenie Plugin Plaintext Storage of a Password vulnerability
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.69036%
CWE
Published
7/1/2022
Updated
10/27/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/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:opsgenie | maven | <= 1.9 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from three key failures: 1) Plaintext storage in global/job configs 2) Plaintext transmission in forms 3) Lack of access controls. The OpsGenieNotifier class is central to configuration handling in Jenkins plugins. The configure() method typically handles XML serialization, and getApiKey() would expose the value to views. Job config.xml storage implies the serialization logic in the notifier class doesn't use Jenkins' Secret management. While exact method names can't be verified without source code, these patterns match Jenkins plugin vulnerability paradigms for credential handling (CWE-256/522).