Executive Summary — HIGH
23 dependencies scanned
packages/no-lock/package.json| Priority | Severity | CVE ID | Dependency | CWE | Published | Description | Fix Version | Source |
|---|---|---|---|---|---|---|---|---|
| MEDIUM | MEDIUM 6.3 |
CVE-2025-68161 exact |
org.apache.logging.log4j: log4j-core 2.14.0 direct defined in: pom.xml, services/worker/pom.xml, libs/common-bom/pom.xml |
CWE-297 Improper Validation of Certificate with Host Mismatch CWE-295Improper Certificate Validation |
2025-12-18 | The Socket Appender in Apache Log4j Core versions 2.0-beta9 through 2.25.2 does not perform TLS hostname verification of the peer certificate, even when the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#… | 2.25.3 | fadnvd |
Description
The Socket Appender in Apache Log4j Core versions 2.0-beta9 through 2.25.2 does not perform TLS hostname verification of the peer certificate, even when the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName configuration attribute or the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systemproperties.html#log4j2.sslVerifyHostName system property is set to true.
This issue may allow a man-in-the-middle attacker to intercept or redirect log traffic under the following conditions:
* The attacker is able to intercept or redirect network traffic between the client and the log receiver.
* The attacker can present a server certificate issued by a certification authority trusted by the Socket Appender’s configured trust store (or by the default Java trust store if no custom trust store is configured).
Users are advised to upgrade to Apache Log4j Core version 2.25.3, which addresses this issue.
As an alternative mitigation, the Socket Appender may be configured to use a private or restricted trust root to limit the set of trusted certificates. Weaknesses (CWE) (2)
Metadata
CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X 6.3 (MEDIUM) MEDIUM · 63/100 2.25.3 2025-12-18 2026-01-20 exact fad+nvd External links (8)
Mailing list3 links
Affected CPE configurations (6)
Declared in (3 POMs)
pom.xml services/worker/pom.xml libs/common-bom/pom.xml | ||||||||
| MEDIUM EPSS 11% |
MEDIUM 6.9 |
CVE-2026-34480 exact |
org.apache.logging.log4j: log4j-core 2.14.0 direct defined in: pom.xml, services/worker/pom.xml, libs/common-bom/pom.xml |
CWE-116 Improper Encoding or Escaping of Output |
2026-04-10 | Apache Log4j Core's XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#char… | 2.25.4 | fadnvd |
Description
Apache Log4j Core's XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters.
The impact depends on the StAX implementation in use:
* JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records.
* Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j's internal status logger.
Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output. Weaknesses (CWE) (1)
Metadata
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X 6.9 (MEDIUM) MEDIUM · 57.3/100 0.0% prob · 11th pct 2.25.4 2026-04-10 2026-04-24 exact fad+nvd External links (6)
Vendor advisory2 links
Affected CPE configurations (7)
Declared in (3 POMs)
pom.xml services/worker/pom.xml libs/common-bom/pom.xml | ||||||||
| MEDIUM EPSS 12% |
MEDIUM 6.3 |
CVE-2026-34477 exact |
org.apache.logging.log4j: log4j-core 2.14.0 direct defined in: pom.xml, services/worker/pom.xml, libs/common-bom/pom.xml |
CWE-297 Improper Validation of Certificate with Host Mismatch CWE-295Improper Certificate Validation |
2026-04-10 | The fix for CVE-2025-68161 https://logging.apache.org/security.html#CVE-2025-68161 was incomplete: it addressed hostname verification only when enabled via the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systempr… | 2.25.4 | fadnvd |
Description
The fix for CVE-2025-68161 https://logging.apache.org/security.html#CVE-2025-68161 was incomplete: it addressed hostname verification only when enabled via the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systemproperties.html#log4j2.sslVerifyHostName system property, but not when configured through the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName attribute of the <Ssl> element.
Although the verifyHostName configuration attribute was introduced in Log4j Core 2.12.0, it was silently ignored in all versions through 2.25.3, leaving TLS connections vulnerable to interception regardless of the configured value.
A network-based attacker may be able to perform a man-in-the-middle attack when all of the following conditions are met:
* An SMTP, Socket, or Syslog appender is in use.
* TLS is configured via a nested <Ssl> element.
* The attacker can present a certificate issued by a CA trusted by the appender's configured trust store, or by the default Java trust store if none is configured.
This issue does not affect users of the HTTP appender, which uses a separate verifyHostname https://logging.apache.org/log4j/2.x/manual/appenders/network.html#HttpAppender-attr-verifyHostName attribute that was not subject to this bug and verifies host names by default.
Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue. Weaknesses (CWE) (2)
Metadata
CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X 6.3 (MEDIUM) MEDIUM · 52.8/100 0.0% prob · 12th pct 2.25.4 2026-04-10 2026-05-06 exact fad+nvd External links (5)
Vendor advisory2 links
Affected CPE configurations (7)
Declared in (3 POMs)
pom.xml services/worker/pom.xml libs/common-bom/pom.xml | ||||||||
libs/common-bom/pom.xml (3)| Priority | Severity | CVE ID | Dependency | CWE | Published | Description | Fix Version | Source |
|---|---|---|---|---|---|---|---|---|
| MEDIUM | MEDIUM 6.3 |
CVE-2025-68161 exact |
org.apache.logging.log4j: log4j-core 2.14.0 direct defined in: pom.xml, services/worker/pom.xml, libs/common-bom/pom.xml |
CWE-297 Improper Validation of Certificate with Host Mismatch CWE-295Improper Certificate Validation |
2025-12-18 | The Socket Appender in Apache Log4j Core versions 2.0-beta9 through 2.25.2 does not perform TLS hostname verification of the peer certificate, even when the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#… | 2.25.3 | fadnvd |
Description
The Socket Appender in Apache Log4j Core versions 2.0-beta9 through 2.25.2 does not perform TLS hostname verification of the peer certificate, even when the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName configuration attribute or the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systemproperties.html#log4j2.sslVerifyHostName system property is set to true.
This issue may allow a man-in-the-middle attacker to intercept or redirect log traffic under the following conditions:
* The attacker is able to intercept or redirect network traffic between the client and the log receiver.
* The attacker can present a server certificate issued by a certification authority trusted by the Socket Appender’s configured trust store (or by the default Java trust store if no custom trust store is configured).
Users are advised to upgrade to Apache Log4j Core version 2.25.3, which addresses this issue.
As an alternative mitigation, the Socket Appender may be configured to use a private or restricted trust root to limit the set of trusted certificates. Weaknesses (CWE) (2)
Metadata
CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X 6.3 (MEDIUM) MEDIUM · 63/100 2.25.3 2025-12-18 2026-01-20 exact fad+nvd External links (8)
Mailing list3 links
Affected CPE configurations (6)
Declared in (3 POMs)
pom.xml services/worker/pom.xml libs/common-bom/pom.xml | ||||||||
| MEDIUM EPSS 11% |
MEDIUM 6.9 |
CVE-2026-34480 exact |
org.apache.logging.log4j: log4j-core 2.14.0 direct defined in: pom.xml, services/worker/pom.xml, libs/common-bom/pom.xml |
CWE-116 Improper Encoding or Escaping of Output |
2026-04-10 | Apache Log4j Core's XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#char… | 2.25.4 | fadnvd |
Description
Apache Log4j Core's XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters.
The impact depends on the StAX implementation in use:
* JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records.
* Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j's internal status logger.
Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output. Weaknesses (CWE) (1)
Metadata
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X 6.9 (MEDIUM) MEDIUM · 57.3/100 0.0% prob · 11th pct 2.25.4 2026-04-10 2026-04-24 exact fad+nvd External links (6)
Vendor advisory2 links
Affected CPE configurations (7)
Declared in (3 POMs)
pom.xml services/worker/pom.xml libs/common-bom/pom.xml | ||||||||
| MEDIUM EPSS 12% |
MEDIUM 6.3 |
CVE-2026-34477 exact |
org.apache.logging.log4j: log4j-core 2.14.0 direct defined in: pom.xml, services/worker/pom.xml, libs/common-bom/pom.xml |
CWE-297 Improper Validation of Certificate with Host Mismatch CWE-295Improper Certificate Validation |
2026-04-10 | The fix for CVE-2025-68161 https://logging.apache.org/security.html#CVE-2025-68161 was incomplete: it addressed hostname verification only when enabled via the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systempr… | 2.25.4 | fadnvd |
Description
The fix for CVE-2025-68161 https://logging.apache.org/security.html#CVE-2025-68161 was incomplete: it addressed hostname verification only when enabled via the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systemproperties.html#log4j2.sslVerifyHostName system property, but not when configured through the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName attribute of the <Ssl> element.
Although the verifyHostName configuration attribute was introduced in Log4j Core 2.12.0, it was silently ignored in all versions through 2.25.3, leaving TLS connections vulnerable to interception regardless of the configured value.
A network-based attacker may be able to perform a man-in-the-middle attack when all of the following conditions are met:
* An SMTP, Socket, or Syslog appender is in use.
* TLS is configured via a nested <Ssl> element.
* The attacker can present a certificate issued by a CA trusted by the appender's configured trust store, or by the default Java trust store if none is configured.
This issue does not affect users of the HTTP appender, which uses a separate verifyHostname https://logging.apache.org/log4j/2.x/manual/appenders/network.html#HttpAppender-attr-verifyHostName attribute that was not subject to this bug and verifies host names by default.
Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue. Weaknesses (CWE) (2)
Metadata
CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X 6.3 (MEDIUM) MEDIUM · 52.8/100 0.0% prob · 12th pct 2.25.4 2026-04-10 2026-05-06 exact fad+nvd External links (5)
Vendor advisory2 links
Affected CPE configurations (7)
Declared in (3 POMs)
pom.xml services/worker/pom.xml libs/common-bom/pom.xml | ||||||||
pom.xml (3)| Priority | Severity | CVE ID | Dependency | CWE | Published | Description | Fix Version | Source |
|---|---|---|---|---|---|---|---|---|
| MEDIUM | MEDIUM 6.3 |
CVE-2025-68161 exact |
org.apache.logging.log4j: log4j-core 2.14.0 direct defined in: pom.xml, services/worker/pom.xml, libs/common-bom/pom.xml |
CWE-297 Improper Validation of Certificate with Host Mismatch CWE-295Improper Certificate Validation |
2025-12-18 | The Socket Appender in Apache Log4j Core versions 2.0-beta9 through 2.25.2 does not perform TLS hostname verification of the peer certificate, even when the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#… | 2.25.3 | fadnvd |
Description
The Socket Appender in Apache Log4j Core versions 2.0-beta9 through 2.25.2 does not perform TLS hostname verification of the peer certificate, even when the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName configuration attribute or the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systemproperties.html#log4j2.sslVerifyHostName system property is set to true.
This issue may allow a man-in-the-middle attacker to intercept or redirect log traffic under the following conditions:
* The attacker is able to intercept or redirect network traffic between the client and the log receiver.
* The attacker can present a server certificate issued by a certification authority trusted by the Socket Appender’s configured trust store (or by the default Java trust store if no custom trust store is configured).
Users are advised to upgrade to Apache Log4j Core version 2.25.3, which addresses this issue.
As an alternative mitigation, the Socket Appender may be configured to use a private or restricted trust root to limit the set of trusted certificates. Weaknesses (CWE) (2)
Metadata
CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X 6.3 (MEDIUM) MEDIUM · 63/100 2.25.3 2025-12-18 2026-01-20 exact fad+nvd External links (8)
Mailing list3 links
Affected CPE configurations (6)
Declared in (3 POMs)
pom.xml services/worker/pom.xml libs/common-bom/pom.xml | ||||||||
| MEDIUM EPSS 11% |
MEDIUM 6.9 |
CVE-2026-34480 exact |
org.apache.logging.log4j: log4j-core 2.14.0 direct defined in: pom.xml, services/worker/pom.xml, libs/common-bom/pom.xml |
CWE-116 Improper Encoding or Escaping of Output |
2026-04-10 | Apache Log4j Core's XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#char… | 2.25.4 | fadnvd |
Description
Apache Log4j Core's XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters.
The impact depends on the StAX implementation in use:
* JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records.
* Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j's internal status logger.
Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output. Weaknesses (CWE) (1)
Metadata
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X 6.9 (MEDIUM) MEDIUM · 57.3/100 0.0% prob · 11th pct 2.25.4 2026-04-10 2026-04-24 exact fad+nvd External links (6)
Vendor advisory2 links
Affected CPE configurations (7)
Declared in (3 POMs)
pom.xml services/worker/pom.xml libs/common-bom/pom.xml | ||||||||
| MEDIUM EPSS 12% |
MEDIUM 6.3 |
CVE-2026-34477 exact |
org.apache.logging.log4j: log4j-core 2.14.0 direct defined in: pom.xml, services/worker/pom.xml, libs/common-bom/pom.xml |
CWE-297 Improper Validation of Certificate with Host Mismatch CWE-295Improper Certificate Validation |
2026-04-10 | The fix for CVE-2025-68161 https://logging.apache.org/security.html#CVE-2025-68161 was incomplete: it addressed hostname verification only when enabled via the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systempr… | 2.25.4 | fadnvd |
Description
The fix for CVE-2025-68161 https://logging.apache.org/security.html#CVE-2025-68161 was incomplete: it addressed hostname verification only when enabled via the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systemproperties.html#log4j2.sslVerifyHostName system property, but not when configured through the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName attribute of the <Ssl> element.
Although the verifyHostName configuration attribute was introduced in Log4j Core 2.12.0, it was silently ignored in all versions through 2.25.3, leaving TLS connections vulnerable to interception regardless of the configured value.
A network-based attacker may be able to perform a man-in-the-middle attack when all of the following conditions are met:
* An SMTP, Socket, or Syslog appender is in use.
* TLS is configured via a nested <Ssl> element.
* The attacker can present a certificate issued by a CA trusted by the appender's configured trust store, or by the default Java trust store if none is configured.
This issue does not affect users of the HTTP appender, which uses a separate verifyHostname https://logging.apache.org/log4j/2.x/manual/appenders/network.html#HttpAppender-attr-verifyHostName attribute that was not subject to this bug and verifies host names by default.
Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue. Weaknesses (CWE) (2)
Metadata
CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X 6.3 (MEDIUM) MEDIUM · 52.8/100 0.0% prob · 12th pct 2.25.4 2026-04-10 2026-05-06 exact fad+nvd External links (5)
Vendor advisory2 links
Affected CPE configurations (7)
Declared in (3 POMs)
pom.xml services/worker/pom.xml libs/common-bom/pom.xml | ||||||||
services/worker/pom.xml (3)| Priority | Severity | CVE ID | Dependency | CWE | Published | Description | Fix Version | Source |
|---|---|---|---|---|---|---|---|---|
| MEDIUM | MEDIUM 6.3 |
CVE-2025-68161 exact |
org.apache.logging.log4j: log4j-core 2.14.0 direct defined in: pom.xml, services/worker/pom.xml, libs/common-bom/pom.xml |
CWE-297 Improper Validation of Certificate with Host Mismatch CWE-295Improper Certificate Validation |
2025-12-18 | The Socket Appender in Apache Log4j Core versions 2.0-beta9 through 2.25.2 does not perform TLS hostname verification of the peer certificate, even when the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#… | 2.25.3 | fadnvd |
Description
The Socket Appender in Apache Log4j Core versions 2.0-beta9 through 2.25.2 does not perform TLS hostname verification of the peer certificate, even when the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName configuration attribute or the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systemproperties.html#log4j2.sslVerifyHostName system property is set to true.
This issue may allow a man-in-the-middle attacker to intercept or redirect log traffic under the following conditions:
* The attacker is able to intercept or redirect network traffic between the client and the log receiver.
* The attacker can present a server certificate issued by a certification authority trusted by the Socket Appender’s configured trust store (or by the default Java trust store if no custom trust store is configured).
Users are advised to upgrade to Apache Log4j Core version 2.25.3, which addresses this issue.
As an alternative mitigation, the Socket Appender may be configured to use a private or restricted trust root to limit the set of trusted certificates. Weaknesses (CWE) (2)
Metadata
CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X 6.3 (MEDIUM) MEDIUM · 63/100 2.25.3 2025-12-18 2026-01-20 exact fad+nvd External links (8)
Mailing list3 links
Affected CPE configurations (6)
Declared in (3 POMs)
pom.xml services/worker/pom.xml libs/common-bom/pom.xml | ||||||||
| MEDIUM EPSS 11% |
MEDIUM 6.9 |
CVE-2026-34480 exact |
org.apache.logging.log4j: log4j-core 2.14.0 direct defined in: pom.xml, services/worker/pom.xml, libs/common-bom/pom.xml |
CWE-116 Improper Encoding or Escaping of Output |
2026-04-10 | Apache Log4j Core's XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#char… | 2.25.4 | fadnvd |
Description
Apache Log4j Core's XmlLayout https://logging.apache.org/log4j/2.x/manual/layouts.html#XmlLayout , in versions up to and including 2.25.3, fails to sanitize characters forbidden by the XML 1.0 specification https://www.w3.org/TR/xml/#charsets producing invalid XML output whenever a log message or MDC value contains such characters.
The impact depends on the StAX implementation in use:
* JRE built-in StAX: Forbidden characters are silently written to the output, producing malformed XML. Conforming parsers must reject such documents with a fatal error, which may cause downstream log-processing systems to drop the affected records.
* Alternative StAX implementations (e.g., Woodstox https://github.com/FasterXML/woodstox , a transitive dependency of the Jackson XML Dataformat module): An exception is thrown during the logging call, and the log event is never delivered to its intended appender, only to Log4j's internal status logger.
Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue by sanitizing forbidden characters before XML output. Weaknesses (CWE) (1)
Metadata
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X 6.9 (MEDIUM) MEDIUM · 57.3/100 0.0% prob · 11th pct 2.25.4 2026-04-10 2026-04-24 exact fad+nvd External links (6)
Vendor advisory2 links
Affected CPE configurations (7)
Declared in (3 POMs)
pom.xml services/worker/pom.xml libs/common-bom/pom.xml | ||||||||
| MEDIUM EPSS 12% |
MEDIUM 6.3 |
CVE-2026-34477 exact |
org.apache.logging.log4j: log4j-core 2.14.0 direct defined in: pom.xml, services/worker/pom.xml, libs/common-bom/pom.xml |
CWE-297 Improper Validation of Certificate with Host Mismatch CWE-295Improper Certificate Validation |
2026-04-10 | The fix for CVE-2025-68161 https://logging.apache.org/security.html#CVE-2025-68161 was incomplete: it addressed hostname verification only when enabled via the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systempr… | 2.25.4 | fadnvd |
Description
The fix for CVE-2025-68161 https://logging.apache.org/security.html#CVE-2025-68161 was incomplete: it addressed hostname verification only when enabled via the log4j2.sslVerifyHostName https://logging.apache.org/log4j/2.x/manual/systemproperties.html#log4j2.sslVerifyHostName system property, but not when configured through the verifyHostName https://logging.apache.org/log4j/2.x/manual/appenders/network.html#SslConfiguration-attr-verifyHostName attribute of the <Ssl> element.
Although the verifyHostName configuration attribute was introduced in Log4j Core 2.12.0, it was silently ignored in all versions through 2.25.3, leaving TLS connections vulnerable to interception regardless of the configured value.
A network-based attacker may be able to perform a man-in-the-middle attack when all of the following conditions are met:
* An SMTP, Socket, or Syslog appender is in use.
* TLS is configured via a nested <Ssl> element.
* The attacker can present a certificate issued by a CA trusted by the appender's configured trust store, or by the default Java trust store if none is configured.
This issue does not affect users of the HTTP appender, which uses a separate verifyHostname https://logging.apache.org/log4j/2.x/manual/appenders/network.html#HttpAppender-attr-verifyHostName attribute that was not subject to this bug and verifies host names by default.
Users are advised to upgrade to Apache Log4j Core 2.25.4, which corrects this issue. Weaknesses (CWE) (2)
Metadata
CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X 6.3 (MEDIUM) MEDIUM · 52.8/100 0.0% prob · 12th pct 2.25.4 2026-04-10 2026-05-06 exact fad+nvd External links (5)
Vendor advisory2 links
Affected CPE configurations (7)
Declared in (3 POMs)
pom.xml services/worker/pom.xml libs/common-bom/pom.xml | ||||||||
| Product | Dependency | EOL date | Latest | Notes |
|---|---|---|---|---|
| Spring Framework | org.springframework:spring-web 5.3.20 defined in: services/api/pom.xml |
2024-08-31 | 5.3.39 | Latest: 5.3.39 (2024-08-14) |
| Severity | Obsolete | Replacement | Why |
|---|---|---|---|
| LOW | junit:junit 4.12 defined in: services/worker/pom.xml |
org.junit.jupiter:junit-jupiter (JUnit 5) | JUnit 4 is in maintenance; JUnit 5 is the modern line. |
| Jump | Dependency | Current | Latest | Released |
|---|---|---|---|---|
| +1 major | npm:chalk defined in: packages/cli/yarn.lock |
4.1.2 | 5.6.2 | 2025-09-08 |
| +3 major | npm:supports-color defined in: packages/cli/yarn.lock |
7.2.0 | 10.2.2 | 2025-09-08 |
| +1 major | org.yaml:snakeyaml defined in: services/worker/pom.xml |
1.30 | 2.4 | 2025-02-15 |
| +9 minor | com.fasterxml.jackson.core:jackson-databind defined in: pom.xml, services/api/pom.xml, libs/common-bom/pom.xml |
2.9.10 | 2.18.4 | 2025-05-07 |
| +12 minor | org.apache.logging.log4j:log4j-core defined in: pom.xml, services/worker/pom.xml, libs/common-bom/pom.xml |
2.14.0 | 2.26.0 | 2026-05-02 |
| Dependency | License(s) | Source | |
|---|---|---|---|
| npm: supports-color 7.2.0 direct defined in: packages/cli/yarn.lock |
MIT | npm |
| Worst sev | Direct dependency | Current | Pin to ≥ | Maven Central latest | CVEs covered |
|---|---|---|---|---|---|
| MEDIUM | org.apache.logging.log4j:log4j-core | 2.14.0 | 2.25.4 | 2.26.0 | 3 CVE: CVE-2025-68161, CVE-2026-34477, CVE-2026-34480 |