CVE-2020-2232: Jenkins Email Extension Plugin SMTP password transmitted and displayed in plain text
3.7
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.14456%
CWE
Published
5/24/2022
Updated
12/14/2023
KEV Status
No
Technology
Java
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| org.jenkins-ci.plugins:email-ext | maven | >= 2.72, < 2.74 | 2.74 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the UI rendering of the SMTP password field. The commit diff shows a change from f.textbox() to f.password() in the configuration form definition. In vulnerable versions (2.72-2.73), the textbox implementation caused cleartext transmission and display, matching CWE-319. The config.groovy file's smtpPassword entry is directly responsible for handling password input rendering, making this function the clear vulnerability source.