CVE-2024-28154: Jenkins MQ Notifier Plugin exposes sensitive information in build logs
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.28133%
CWE
-
Published
3/6/2024
Updated
1/21/2025
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 |
|---|---|---|---|
| com.sonymobile.jenkins.plugins.mq:mq-notifier | maven | < 1.4.1 | 1.4.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from verbose logging being enabled by default (via enableVerboseLogging=true) in MQNotifierConfig. The functions RunListenerImpl.logMessage and MQMessageStep.run used this flag to log JSON messages containing build parameters. The patch introduced enableVerboseLoggingBoolean (defaulting to null/false) and migrated checks to this field, explicitly disabling verbose logging by default. The original functions using enableVerboseLogging were the entry points for insecure logging.