Vulnerabilities |
18 via 41 paths |
|---|---|
Dependencies |
23 |
Source |
GitHub |
Find, fix and prevent vulnerabilities in your code.
critical severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0
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 Deserialization of Untrusted Data in the DatabindContext._resolveAndValidateGeneric() method, which validates only the raw container class of a type identifier against the configured PolymorphicTypeValidator and not its nested generic type arguments. An attacker who controls the type identifier can instantiate a denied class, and reach unauthenticated remote code execution through an available gadget, by embedding that class as a generic parameter of an allowlisted container such as java.util.ArrayList<com.evil.Gadget>, which passes validation while the nested type is loaded, instantiated, and populated with attacker-controlled values. Exploitation requires polymorphic type validation to be enabled with a configured validator, the application to deserialize untrusted JSON, and a suitable gadget class on the classpath.
Details
Serialization is a process of converting an object into a sequence of bytes which can be persisted to a disk or database or can be sent through streams. The reverse process of creating object from sequence of bytes is called deserialization. Serialization is commonly used for communication (sharing objects between multiple hosts) and persistence (store the object state in a file or a database). It is an integral part of popular protocols like Remote Method Invocation (RMI), Java Management Extension (JMX), Java Messaging System (JMS), Action Message Format (AMF), Java Server Faces (JSF) ViewState, etc.
Deserialization of untrusted data (CWE-502) is when the application deserializes untrusted data without sufficiently verifying that the resulting data will be valid, thus allowing the attacker to control the state or the flow of the execution.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.8, 2.21.4 or higher.
References
critical severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0
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 Incomplete List of Disallowed Inputs in the BasicPolymorphicTypeValidator.Builder.allowIfSubTypeIsArray() method, which allowlists an array based only on clazz.isArray() and does not validate the array's component type. An attacker who controls the deserialized JSON can instantiate types outside the configured allowlist by wrapping them in an array, because array elements without per-element type identifiers are constructed directly with no further validator check.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.8, 2.21.4 or higher.
References
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: com.fasterxml.jackson.core:jackson-core@2.18.0 and io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › com.fasterxml.jackson.core:jackson-core@2.18.0Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.18.6.
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0 › com.fasterxml.jackson.core:jackson-core@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0 › com.fasterxml.jackson.core:jackson-core@2.18.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 Allocation of Resources Without Limits or Throttling in which the non-blocking async JSON parser can be made to bypass the maxNumberLength constraint (default: 1000 characters) defined in StreamReadConstraints. An attacker can cause excessive memory allocation and CPU exhaustion by submitting JSON documents containing extremely long numeric values through the asynchronous parser interface.
PoC
The following JUnit 5 test demonstrates the vulnerability. It shows that the async parser accepts a 5,000-digit number, whereas the limit should be 1,000.
package tools.jackson.core.unittest.dos;
import java.nio.charset.StandardCharsets;
import org.junit.jupiter.api.Test;
import tools.jackson.core.*;
import tools.jackson.core.exc.StreamConstraintsException;
import tools.jackson.core.json.JsonFactory;
import tools.jackson.core.json.async.NonBlockingByteArrayJsonParser;
import static org.junit.jupiter.api.Assertions.*;
/**
* POC: Number Length Constraint Bypass in Non-Blocking (Async) JSON Parsers
*
* Authors: sprabhav7, rohan-repos
*
* maxNumberLength default = 1000 characters (digits).
* A number with more than 1000 digits should be rejected by any parser.
*
* BUG: The async parser never calls resetInt()/resetFloat() which is where
* validateIntegerLength()/validateFPLength() lives. Instead it calls
* _valueComplete() which skips all number length validation.
*
* CWE-770: Allocation of Resources Without Limits or Throttling
*/
class AsyncParserNumberLengthBypassTest {
private static final int MAX_NUMBER_LENGTH = 1000;
private static final int TEST_NUMBER_LENGTH = 5000;
private final JsonFactory factory = new JsonFactory();
// CONTROL: Sync parser correctly rejects a number exceeding maxNumberLength
@Test
void syncParserRejectsLongNumber() throws Exception {
byte[] payload = buildPayloadWithLongInteger(TEST_NUMBER_LENGTH);
// Output to console
System.out.println("[SYNC] Parsing " + TEST_NUMBER_LENGTH + "-digit number (limit: " + MAX_NUMBER_LENGTH + ")");
try {
try (JsonParser p = factory.createParser(ObjectReadContext.empty(), payload)) {
while (p.nextToken() != null) {
if (p.currentToken() == JsonToken.VALUE_NUMBER_INT) {
System.out.println("[SYNC] Accepted number with " + p.getText().length() + " digits — UNEXPECTED");
}
}
}
fail("Sync parser must reject a " + TEST_NUMBER_LENGTH + "-digit number");
} catch (StreamConstraintsException e) {
System.out.println("[SYNC] Rejected with StreamConstraintsException: " + e.getMessage());
}
}
// VULNERABILITY: Async parser accepts the SAME number that sync rejects
@Test
void asyncParserAcceptsLongNumber() throws Exception {
byte[] payload = buildPayloadWithLongInteger(TEST_NUMBER_LENGTH);
NonBlockingByteArrayJsonParser p =
(NonBlockingByteArrayJsonParser) factory.createNonBlockingByteArrayParser(ObjectReadContext.empty());
p.feedInput(payload, 0, payload.length);
p.endOfInput();
boolean foundNumber = false;
try {
while (p.nextToken() != null) {
if (p.currentToken() == JsonToken.VALUE_NUMBER_INT) {
foundNumber = true;
String numberText = p.getText();
assertEquals(TEST_NUMBER_LENGTH, numberText.length(),
"Async parser silently accepted all " + TEST_NUMBER_LENGTH + " digits");
}
}
// Output to console
System.out.println("[ASYNC INT] Accepted number with " + TEST_NUMBER_LENGTH + " digits — BUG CONFIRMED");
assertTrue(foundNumber, "Parser should have produced a VALUE_NUMBER_INT token");
} catch (StreamConstraintsException e) {
fail("Bug is fixed — async parser now correctly rejects long numbers: " + e.getMessage());
}
p.close();
}
private byte[] buildPayloadWithLongInteger(int numDigits) {
StringBuilder sb = new StringBuilder(numDigits + 10);
sb.append("{\"v\":");
for (int i = 0; i < numDigits; i++) {
sb.append((char) ('1' + (i % 9)));
}
sb.append('}');
return sb.toString().getBytes(StandardCharsets.UTF_8);
}
}
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
wspackage
Remediation
Upgrade com.fasterxml.jackson.core:jackson-core to version 2.18.6, 2.21.1 or higher.
References
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: com.fasterxml.jackson.core:jackson-core@2.18.0 and io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › com.fasterxml.jackson.core:jackson-core@2.18.0Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.18.7.
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0 › com.fasterxml.jackson.core:jackson-core@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0 › com.fasterxml.jackson.core:jackson-core@2.18.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 Allocation of Resources Without Limits or Throttling in the enforcement of document length constraints in blocking, async, and DataInput parser processes. An attacker can cause excessive resource consumption by submitting oversized JSON documents that bypass configured size limits.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-core to version 2.18.7, 2.21.2 or higher.
References
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: com.fasterxml.jackson.core:jackson-core@2.18.0 and io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › com.fasterxml.jackson.core:jackson-core@2.18.0Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.18.8.
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0 › com.fasterxml.jackson.core:jackson-core@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0 › com.fasterxml.jackson.core:jackson-core@2.18.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 Allocation of Resources Without Limits or Throttling in the NonBlockingUtf8JsonParserBase file. An attacker can exhaust system memory by streaming JSON input in small chunks to the asynchronous parser, causing unbounded accumulation of digit characters in memory due to missing validation of number length during chunked parsing. This can lead to denial of service by overwhelming the application's memory resources.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-core to version 2.18.8, 2.21.4 or higher.
References
high severity
new
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: com.fasterxml.jackson.core:jackson-core@2.18.0 and io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › com.fasterxml.jackson.core:jackson-core@2.18.0Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.18.11.
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0 › com.fasterxml.jackson.core:jackson-core@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0 › com.fasterxml.jackson.core:jackson-core@2.18.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 Allocation of Resources Without Limits or Throttling in the _reportInvalidToken(int, String, String) method of UTF8DataInputJsonParser, which accumulates invalid token characters into a StringBuilder with no check against ErrorReportConfiguration.getMaxErrorTokenLength(), unlike UTF8StreamJsonParser, ReaderBasedJsonParser, and NonBlockingUtf8JsonParserBase, which enforce the 256-character default. An attacker can exhaust the JVM heap by submitting a sufficiently long malformed token, since the whole token is copied into the exception message, where a 20-million-character token produces a 20,000,109-character message against 367 characters on the bounded path. This requires the application to create its parser through JsonFactory.createParser(DataInput), and no configuration constrains the path, since maxDocumentLength does not apply to DataInput sources and maxStringLength does not cover it.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-core to version 2.18.11, 2.21.7, 2.22.3 or higher.
References
high severity
new
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0
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 Allocation of Resources Without Limits or Throttling via the CoreXMLDeserializers.Std._deserialize path in src/main/java/com/fasterxml/jackson/databind/ext/CoreXMLDeserializers.java. An attacker can consume excessive CPU by supplying a JSON string bound to a javax.xml.datatype.Duration or XMLGregorianCalendar field, causing DatatypeFactory.newDuration(value) or newXMLGregorianCalendar(value) to parse arbitrarily long numeric components. This stalls the request-handling thread and can exhaust server CPU under default deserialization settings, denying service to other users.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.10, 2.21.6, 2.22.2 or higher.
References
high severity
new
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0
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 Allocation of Resources Without Limits or Throttling in the resolveForwardReference() method of CollectionDeserializer.CollectionReferringAccumulator, and in the corresponding map accumulators, which perform a linear search of the pending accumulator for every resolved object ID. An attacker can consume quadratic CPU and exhaust a request-time or worker-capacity budget by submitting JSON whose N unresolved object-ID references resolve in reverse order, costing roughly N*(N+1)/2 comparisons, measured at 2,003,000 for N=2,000. This requires the application to deserialize attacker-influenced JSON into an identity-enabled collection or map under @JsonIdentityInfo, though it needs no deep nesting or unusual JSON syntax.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.11, 2.21.7, 2.22.3 or higher.
References
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0
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 Incorrect Authorization in the deserialization process when handling properties annotated with both @JsonView and @JsonUnwrapped. An attacker can modify data that should be restricted to a higher-privileged view by supplying crafted JSON input.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.9, 2.21.5, 2.22.1 or higher.
References
medium severity
new
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: com.fasterxml.jackson.core:jackson-core@2.18.0 and io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › com.fasterxml.jackson.core:jackson-core@2.18.0Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.18.11.
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0 › com.fasterxml.jackson.core:jackson-core@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0 › com.fasterxml.jackson.core:jackson-core@2.18.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 Regular Expression Denial of Service (ReDoS) in the PATTERN_FLOAT regex of NumberInput, reached through looksLikeValidNumber(), where adjacent quantifiers over the same character class ([0-9]*, then an optional [.], then [0-9]+) carry no possessive quantifiers or atomic grouping, so the engine explores every split point between digit groups on non-matching input. An attacker can pin a request-handling thread and exhaust the worker pool with concurrent requests by supplying a long numeric-looking string that fails to match, since match cost is quadratic in input length, with 160,000 characters costing 74.4 seconds in a single call. This requires the application to reach looksLikeValidNumber() with attacker-controlled strings, which is the default path when jackson-databind coerces a String field to a number, and the input is bounded only by StreamReadConstraints.maxStringLength at 20,000,000 rather than by maxNumberLength at 1,000.
Workaround
This vulnerability can be avoided by lowering StreamReadConstraints.maxStringLength toward the string length the application actually needs, which caps the input this quadratic path can be handed, since it is that limit and not maxNumberLength that governs here.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.
The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.
Let’s take the following regular expression as an example:
regex = /A(B|C+)+D/
This regular expression accomplishes the following:
AThe string must start with the letter 'A'(B|C+)+The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the+matches one or more times). The+at the end of this section states that we can look for one or more matches of this section.DFinally, we ensure this section of the string ends with a 'D'
The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD
It most cases, it doesn't take very long for a regex engine to find a match:
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total
$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total
The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.
Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.
Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:
- CCC
- CC+C
- C+CC
- C+C+C.
The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.
From there, the number of steps the engine must use to validate a string just continues to grow.
| String | Number of C's | Number of steps |
|---|---|---|
| ACCCX | 3 | 38 |
| ACCCCX | 4 | 71 |
| ACCCCCX | 5 | 136 |
| ACCCCCCCCCCCCCCX | 14 | 65,553 |
By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-core to version 2.18.11, 2.21.7, 2.22.3 or higher.
References
medium severity
new
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0
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 Allocation of Resources Without Limits or Throttling in the _findDeserializer() method of TypeDeserializerBase, which caches every unknown type ID as a distinct key in the _deserializers map even when all of them resolve to the same defaultImpl fallback. An attacker can grow that cache without bound for the lifetime of the process, exhausting memory over time, by submitting a stream of novel type identifiers. This requires the application to use name-based polymorphism through @JsonTypeInfo(use = Id.NAME, defaultImpl = ...), to accept attacker-controlled type identifiers, and to reuse the mapper instance across requests.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.11, 2.21.7, 2.22.3 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0
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 Improperly Controlled Modification of Dynamically-Determined Object Attributes in the BeanDeserializerBase.createContextual() method, which applies the per-property exclusions through _handleByNameInclusion() and then rebuilds the property map from the unfiltered original, overwriting the filtered map and restoring every property the exclusion had removed. An attacker can set fields that were marked ignored, enabling mass assignment, by supplying those property names in untrusted JSON during deserialization. Exploitation requires case-insensitive property matching to be enabled via @JsonFormat with ACCEPT_CASE_INSENSITIVE_PROPERTIES alongside per-property @JsonIgnoreProperties.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.9, 2.21.5, 2.22.1 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0
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 Improperly Controlled Modification of Dynamically-Determined Object Attributes in the POJOPropertiesCollector._removeUnwantedIgnorals process. An attacker can access or modify properties that were intended to be ignored by supplying JSON input with keys matching the renamed property names, thereby bypassing intended access restrictions.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.8, 2.21.4 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0
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 Server-side Request Forgery (SSRF) in the JDKFromStringDeserializer class, which constructs InetSocketAddress and resolves the hostname through DNS at deserialization time. An attacker can force the server to issue outbound DNS lookups for chosen hostnames by submitting JSON that is deserialized into a type holding an InetSocketAddress field, with no authentication required. The observable effect is limited to DNS resolution of attacker-chosen names, useful for out-of-band interaction or internal resolver probing rather than a full outbound request, and it applies only where the application deserializes untrusted JSON into types containing such fields.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.8, 2.21.4 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0
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 Server-side Request Forgery (SSRF) through the STD_INET_ADDRESS branch in FromStringDeserializer in src/main/java/com/fasterxml/jackson/databind/deser/std/FromStringDeserializer.java. An attacker can trigger outbound DNS lookups and blind SSRF behavior by supplying a hostname string in JSON that is deserialized into java.net.InetAddress. When application code binds untrusted input into an InetAddress field or type, the deserializer calls InetAddress.getByName(value) on the attacker-controlled string and resolves it before any application validation runs. This lets an attacker force DNS-based callbacks or probe internal hostnames, causing unwanted network egress and leaking resolver-visible information.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.9, 2.21.5, 2.22.1 or higher.
References
medium severity
new
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0
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 Use of Externally-Controlled Input to Select Classes or Code ('Unsafe Reflection') through NioPathDeserializer in src/main/java/com/fasterxml/jackson/databind/ext/NioPathDeserializer.java. An attacker can force readValue() to resolve an attacker-controlled java.nio.file.Path URI by supplying a non-file scheme such as jar:, http:, s3:, or a custom provider scheme in untrusted JSON. That input reaches new URI(value) and then Path.of(uri), which falls back to ServiceLoader<FileSystemProvider> resolution and can invoke a matching provider’s getPath(uri) during deserialization. The result is unintended provider loading and provider-driven path handling inside the application, which can trigger denial of service or other side effects depending on what FileSystemProvider implementations are present on the classpath.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.10, 2.21.6, 2.22.2 or higher.
References
medium severity
new
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0
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 Deserialization of Untrusted Data in the isSafeSubType() method of DefaultBaseTypeLimitingValidator, whose denylist of unsafe base types omits java.lang.Comparable, so the method returns true for any subtype resolved under a Comparable base. An attacker can trigger instantiation of arbitrary classes that implement Comparable, such as java.io.File to reach path-traversal primitives, by sending JSON with attacker-controlled type identifiers. This requires the application to use a bare @JsonTypeInfo with the default validator and no explicit PolymorphicTypeValidator, and a property or class whose declared base type is Comparable.
Workaround
This vulnerability can be avoided by configuring an explicit restrictive PolymorphicTypeValidator, such as a BasicPolymorphicTypeValidator allowlist passed to activateDefaultTyping(), instead of relying on the default validator.
Note: The discoverer of this vulnerability reports that "I have not identified a class implementing Comparable that yields code execution purely through deserialization".
Details
Serialization is a process of converting an object into a sequence of bytes which can be persisted to a disk or database or can be sent through streams. The reverse process of creating object from sequence of bytes is called deserialization. Serialization is commonly used for communication (sharing objects between multiple hosts) and persistence (store the object state in a file or a database). It is an integral part of popular protocols like Remote Method Invocation (RMI), Java Management Extension (JMX), Java Messaging System (JMS), Action Message Format (AMF), Java Server Faces (JSF) ViewState, etc.
Deserialization of untrusted data (CWE-502) is when the application deserializes untrusted data without sufficiently verifying that the resulting data will be valid, thus allowing the attacker to control the state or the flow of the execution.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.10, 2.21.6, 2.22.2 or higher.
References
medium severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-databind
- Introduced through: io.descoped.dc:data-collector-api@2.0.4
Detailed paths
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.core:jackson-databind@2.18.0
-
Introduced through: descoped/data-collector-connector-content-stream-rawdata@descoped/data-collector-connector-content-stream-rawdata › io.descoped.dc:data-collector-api@2.0.4 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.18.0 › com.fasterxml.jackson.core:jackson-databind@2.18.0
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 Incorrect Authorization in the deserializeUsingPropertyBasedWithExternalTypeId file. An attacker can populate restricted creator properties from untrusted input by crafting JSON that exploits the lack of view checks on parameters annotated with both @JsonView and @JsonTypeInfo(include=As.EXTERNAL_PROPERTY). This allows unauthorized assignment of sensitive fields, even when a restrictive view is active, by injecting values through polymorphic type information.
Remediation
Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.9, 2.21.5 or higher.