Find, fix and prevent vulnerabilities in your code.
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: net.logstash.logback:logstash-logback-encoder@6.3
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › net.logstash.logback:logstash-logback-encoder@6.3 › com.fasterxml.jackson.core:jackson-databind@2.10.1 › com.fasterxml.jackson.core:jackson-core@2.10.1Remediation: Upgrade to net.logstash.logback:logstash-logback-encoder@7.4.
Overview
com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation
Affected versions of this package are vulnerable to Denial of Service (DoS) due to missing input size validation when performing numeric type conversions. A remote attacker can exploit this vulnerability by causing the application to deserialize data containing certain numeric types with large values, causing the application to exhaust all available resources.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
ws
package
Remediation
Upgrade com.fasterxml.jackson.core:jackson-core
to version 2.15.0-rc1 or higher.
References
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: net.logstash.logback:logstash-logback-encoder@6.3
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › net.logstash.logback:logstash-logback-encoder@6.3 › com.fasterxml.jackson.core:jackson-databind@2.10.1 › com.fasterxml.jackson.core:jackson-core@2.10.1Remediation: Upgrade to net.logstash.logback:logstash-logback-encoder@7.4.
Overview
com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation
Affected versions of this package are vulnerable to Stack-based Buffer Overflow due to the parse
process, which accepts an unlimited input file with deeply nested data. An attacker can cause a stack overflow and crash the application by providing input files with excessively deep nesting.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-core
to version 2.15.0-rc1 or higher.
References
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: net.logstash.logback:logstash-logback-encoder@6.3
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › net.logstash.logback:logstash-logback-encoder@6.3 › com.fasterxml.jackson.core:jackson-databind@2.10.1Remediation: Upgrade to net.logstash.logback:logstash-logback-encoder@6.4.
Overview
com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.
Affected versions of this package are vulnerable to XML External Entity (XXE) Injection. A flaw was found in FasterXML Jackson Databind, where it does not have entity expansion secured properly in the DOMDeserializer
class. The highest threat from this vulnerability is data integrity.
Details
XXE Injection is a type of attack against an application that parses XML input. XML is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. By default, many XML processors allow specification of an external entity, a URI that is dereferenced and evaluated during XML processing. When an XML document is being parsed, the parser can make a request and include the content at the specified URI inside of the XML document.
Attacks can include disclosing local files, which may contain sensitive data such as passwords or private user data, using file: schemes or relative paths in the system identifier.
For example, below is a sample XML document, containing an XML element- username.
<xml>
<?xml version="1.0" encoding="ISO-8859-1"?>
<username>John</username>
</xml>
An external XML entity - xxe
, is defined using a system identifier and present within a DOCTYPE header. These entities can access local or remote content. For example the below code contains an external XML entity that would fetch the content of /etc/passwd
and display it to the user rendered by username
.
<xml>
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE foo [
<!ENTITY xxe SYSTEM "file:///etc/passwd" >]>
<username>&xxe;</username>
</xml>
Other XXE Injection attacks can access local resources that may not stop returning data, possibly impacting application availability and leading to Denial of Service.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind
to version 2.6.7.4, 2.9.10.7, 2.10.5.1 or higher.
References
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: net.logstash.logback:logstash-logback-encoder@6.3
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › net.logstash.logback:logstash-logback-encoder@6.3 › com.fasterxml.jackson.core:jackson-databind@2.10.1Remediation: Upgrade to net.logstash.logback:logstash-logback-encoder@7.1.
Overview
com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.
Affected versions of this package are vulnerable to Denial of Service (DoS) via a large depth of nested objects.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
ws
package
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind
to version 2.12.6.1, 2.13.2.1 or higher.
References
high severity
- Vulnerable module: ch.qos.logback:logback-classic
- Introduced through: ch.qos.logback:logback-classic@1.2.0
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › ch.qos.logback:logback-classic@1.2.0Remediation: Upgrade to ch.qos.logback:logback-classic@1.2.13.
Overview
ch.qos.logback:logback-classic is a reliable, generic, fast and flexible logging library for Java.
Affected versions of this package are vulnerable to Denial of Service (DoS). An attacker can mount a denial-of-service attack by sending poisoned data. This is only exploitable if logback receiver component is deployed.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
ws
package
Remediation
Upgrade ch.qos.logback:logback-classic
to version 1.2.13, 1.3.12, 1.4.12 or higher.
References
high severity
- Vulnerable module: ch.qos.logback:logback-classic
- Introduced through: ch.qos.logback:logback-classic@1.2.0
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › ch.qos.logback:logback-classic@1.2.0Remediation: Upgrade to ch.qos.logback:logback-classic@1.2.13.
Overview
ch.qos.logback:logback-classic is a reliable, generic, fast and flexible logging library for Java.
Affected versions of this package are vulnerable to Uncontrolled Resource Consumption ('Resource Exhaustion') via the logback receiver
component. An attacker can mount a denial-of-service attack by sending poisoned data.
Note:
Successful exploitation requires the logback-receiver component being enabled and also reachable by the attacker.
Remediation
Upgrade ch.qos.logback:logback-classic
to version 1.2.13, 1.3.14, 1.4.14 or higher.
References
high severity
- Vulnerable module: ch.qos.logback:logback-core
- Introduced through: ch.qos.logback:logback-classic@1.2.0
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › ch.qos.logback:logback-classic@1.2.0 › ch.qos.logback:logback-core@1.2.0Remediation: Upgrade to ch.qos.logback:logback-classic@1.2.13.
Overview
ch.qos.logback:logback-core is a logback-core module.
Affected versions of this package are vulnerable to Denial of Service (DoS). An attacker can mount a denial-of-service attack by sending poisoned data. This is only exploitable if logback receiver component is deployed.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
ws
package
Remediation
Upgrade ch.qos.logback:logback-core
to version 1.2.13, 1.3.12, 1.4.12 or higher.
References
high severity
- Vulnerable module: ch.qos.logback:logback-core
- Introduced through: ch.qos.logback:logback-classic@1.2.0
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › ch.qos.logback:logback-classic@1.2.0 › ch.qos.logback:logback-core@1.2.0Remediation: Upgrade to ch.qos.logback:logback-classic@1.2.13.
Overview
ch.qos.logback:logback-core is a logback-core module.
Affected versions of this package are vulnerable to Uncontrolled Resource Consumption ('Resource Exhaustion') via the logback receiver
component. An attacker can mount a denial-of-service attack by sending poisoned data.
Note:
Successful exploitation requires the logback-receiver component being enabled and also reachable by the attacker.
Remediation
Upgrade ch.qos.logback:logback-core
to version 1.2.13, 1.3.14, 1.4.14 or higher.
References
medium severity
- Vulnerable module: ch.qos.logback:logback-classic
- Introduced through: ch.qos.logback:logback-classic@1.2.0
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › ch.qos.logback:logback-classic@1.2.0Remediation: Upgrade to ch.qos.logback:logback-classic@1.3.15.
Overview
ch.qos.logback:logback-classic is a reliable, generic, fast and flexible logging library for Java.
Affected versions of this package are vulnerable to Improper Neutralization of Special Elements via the JaninoEventEvaluator
extension. An attacker can execute arbitrary code by compromising an existing logback configuration file or injecting an environment variable before program execution.
Remediation
Upgrade ch.qos.logback:logback-classic
to version 1.3.15, 1.5.13 or higher.
References
medium severity
- Vulnerable module: ch.qos.logback:logback-core
- Introduced through: ch.qos.logback:logback-classic@1.2.0
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › ch.qos.logback:logback-classic@1.2.0 › ch.qos.logback:logback-core@1.2.0Remediation: Upgrade to ch.qos.logback:logback-classic@1.3.15.
Overview
ch.qos.logback:logback-core is a logback-core module.
Affected versions of this package are vulnerable to Improper Neutralization of Special Elements via the JaninoEventEvaluator
extension. An attacker can execute arbitrary code by compromising an existing logback configuration file or injecting an environment variable before program execution.
Remediation
Upgrade ch.qos.logback:logback-core
to version 1.3.15, 1.5.13 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: net.logstash.logback:logstash-logback-encoder@6.3
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › net.logstash.logback:logstash-logback-encoder@6.3 › com.fasterxml.jackson.core:jackson-databind@2.10.1Remediation: Upgrade to net.logstash.logback:logstash-logback-encoder@7.1.
Overview
com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.
Affected versions of this package are vulnerable to Denial of Service (DoS) when using JDK serialization to serialize and deserialize JsonNode
values.
It is possible for the attacker to send a 4-byte length payload, with a value of Integer.MAX_VALUE
, that will eventually cause large buffer allocation and out of heap memory.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
ws
package
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind
to version 2.13.1, 2.12.6 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: net.logstash.logback:logstash-logback-encoder@6.3
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › net.logstash.logback:logstash-logback-encoder@6.3 › com.fasterxml.jackson.core:jackson-databind@2.10.1Remediation: Upgrade to net.logstash.logback:logstash-logback-encoder@7.3.
Overview
com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.
Affected versions of this package are vulnerable to Denial of Service (DoS) in the _deserializeFromArray()
function in BeanDeserializer
, due to resource exhaustion when processing a deeply nested array.
NOTE:
For this vulnerability to be exploitable the non-default DeserializationFeature
must be enabled.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
ws
package
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind
to version 2.12.7.1, 2.13.4 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: net.logstash.logback:logstash-logback-encoder@6.3
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › net.logstash.logback:logstash-logback-encoder@6.3 › com.fasterxml.jackson.core:jackson-databind@2.10.1Remediation: Upgrade to net.logstash.logback:logstash-logback-encoder@7.3.
Overview
com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.
Affected versions of this package are vulnerable to Denial of Service (DoS) in the _deserializeWrappedValue()
function in StdDeserializer.java
, due to resource exhaustion when processing deeply nested arrays.
NOTE: This vulnerability is only exploitable when the non-default UNWRAP_SINGLE_VALUE_ARRAYS
feature is enabled.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
ws
package
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind
to version 2.12.7.1, 2.13.4.1 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: net.logstash.logback:logstash-logback-encoder@6.3
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › net.logstash.logback:logstash-logback-encoder@6.3 › com.fasterxml.jackson.core:jackson-databind@2.10.1 › com.fasterxml.jackson.core:jackson-core@2.10.1Remediation: Upgrade to net.logstash.logback:logstash-logback-encoder@7.0.
Overview
com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation
Affected versions of this package are vulnerable to Information Exposure due to the JsonLocation._appendSourceDesc
method. An attacker can access up to 500 bytes of unintended memory content by exploiting exception messages that incorrectly read from the beginning of a byte array instead of the logical payload start.
Workaround
This vulnerability can be mitigated by disabling exception message exposure to clients to avoid returning parsing exception messages in HTTP responses and/or disabling source inclusion in exceptions to prevent Jackson from embedding any source content in exception messages, avoiding leakage.
PoC
byte[] buffer = new byte[1000];
System.arraycopy("SECRET".getBytes(), 0, buffer, 0, 6);
System.arraycopy("{ \"bad\": }".getBytes(), 0, buffer, 700, 10);
JsonFactory factory = new JsonFactory();
JsonParser parser = factory.createParser(buffer, 700, 20);
parser.nextToken(); // throws exception
// Exception message will include "SECRET"
Remediation
Upgrade com.fasterxml.jackson.core:jackson-core
to version 2.13.0-rc1 or higher.
References
medium severity
- Vulnerable module: ch.qos.logback:logback-core
- Introduced through: ch.qos.logback:logback-classic@1.2.0
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › ch.qos.logback:logback-classic@1.2.0 › ch.qos.logback:logback-core@1.2.0Remediation: Upgrade to ch.qos.logback:logback-classic@1.2.7.
Overview
ch.qos.logback:logback-core is a logback-core module.
Affected versions of this package are vulnerable to Insufficient Hostname Verification. X.509
are not properly validated. By spoofing the TLS/SSL server via a certificate that appears valid, an attacker with the ability to intercept network traffic (e.g. MitM, DNS cache poisoning) can disclose and optionally manipulate transmitted data.
Remediation
Upgrade ch.qos.logback:logback-core
to version 1.2.7 or higher.
References
medium severity
- Module: ch.qos.logback:logback-classic
- Introduced through: ch.qos.logback:logback-classic@1.2.0
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › ch.qos.logback:logback-classic@1.2.0
Dual license: EPL-1.0, LGPL-2.1
medium severity
- Module: ch.qos.logback:logback-core
- Introduced through: ch.qos.logback:logback-classic@1.2.0
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › ch.qos.logback:logback-classic@1.2.0 › ch.qos.logback:logback-core@1.2.0
Dual license: EPL-1.0, LGPL-2.1
low severity
- Vulnerable module: ch.qos.logback:logback-core
- Introduced through: ch.qos.logback:logback-classic@1.2.0
Detailed paths
-
Introduced through: goetschalckx/spring-boot-logging-json@goetschalckx/spring-boot-logging-json#1fdcd5aaf466fb0f51f1d58c2ba1538ba322e1d8 › ch.qos.logback:logback-classic@1.2.0 › ch.qos.logback:logback-core@1.2.0Remediation: Upgrade to ch.qos.logback:logback-classic@1.3.15.
Overview
ch.qos.logback:logback-core is a logback-core module.
Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) through the SaxEventRecorder
process. An attacker can forge requests by compromising logback configuration files in XML.
Remediation
Upgrade ch.qos.logback:logback-core
to version 1.3.15, 1.5.13 or higher.