Vulnerabilities

17 via 96 paths

Dependencies

25

Source

GitHub

Find, fix and prevent vulnerabilities in your code.

Severity
  • 2
  • 10
  • 4
  • 1
Status
  • 17
  • 0
  • 0

critical severity
new

Deserialization of Untrusted Data

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.14.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache com.fasterxml.jackson.core:jackson-databind@2.14.0
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.8.

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
new

Incomplete List of Disallowed Inputs

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.14.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache com.fasterxml.jackson.core:jackson-databind@2.14.0
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.8.

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

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: com.fasterxml.jackson.core:jackson-core
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.14.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache com.fasterxml.jackson.core:jackson-databind@2.14.0 com.fasterxml.jackson.core:jackson-core@2.14.0
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.6.

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 ws package

Remediation

Upgrade com.fasterxml.jackson.core:jackson-core to version 2.18.6, 2.21.1 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: com.fasterxml.jackson.core:jackson-core
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.14.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache com.fasterxml.jackson.core:jackson-databind@2.14.0 com.fasterxml.jackson.core:jackson-core@2.14.0
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.7.

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

Denial of Service (DoS)

  • Vulnerable module: com.fasterxml.jackson.core:jackson-core
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.14.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache com.fasterxml.jackson.core:jackson-databind@2.14.0 com.fasterxml.jackson.core:jackson-core@2.14.0
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.15.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 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

Stack-based Buffer Overflow

  • Vulnerable module: com.fasterxml.jackson.core:jackson-core
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.14.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache com.fasterxml.jackson.core:jackson-databind@2.14.0 com.fasterxml.jackson.core:jackson-core@2.14.0
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.15.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 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

Incorrect Authorization

  • Vulnerable module: org.springframework:spring-core
  • Introduced through: org.springframework:spring-aop@6.0.6 and org.springframework.data:spring-data-redis@3.1.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework:spring-aop@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework:spring-aop@6.2.11.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework:spring-aop@6.2.11.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-aop@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.4.10.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-oxm@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.4.10.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-oxm@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework.data:spring-data-commons@3.1.0 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.4.10.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework.data:spring-data-commons@3.1.0 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.4.10.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-expression@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-expression@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.

Overview

org.springframework:spring-core is a core package within the spring-framework that contains multiple classes and utilities.

Affected versions of this package are vulnerable to Incorrect Authorization via the AnnotationsScanner and AnnotatedMethod class. An attacker can gain unauthorized access to sensitive information by exploiting improper resolution of annotations on methods within type hierarchies that use parameterized supertypes with unbounded generics.

Note: This is only exploitable if security annotations are used on methods in generic superclasses or generic interfaces and the @EnableMethodSecurity feature is enabled.

Remediation

Upgrade org.springframework:spring-core to version 6.2.11 or higher.

References

high severity
new

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.springframework.data:spring-data-commons
  • Introduced through: org.springframework.data:spring-data-redis@3.1.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework.data:spring-data-commons@3.1.0
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.5.12.

Overview

org.springframework.data:spring-data-commons is a maven plugin to centralize common resources and configuration for Spring Data Maven builds.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via the property-lookup cache. An attacker can cause unbounded memory consumption by sending repeated requests with unique, attacker-controlled property names, leading to heap exhaustion.

Note:

This is only exploitable if the application uses features that forward HTTP-supplied strings to PropertyPath.from without prior filtering, in particular Querydsl web bindings (via QuerydslPredicateArgumentResolver) with the default permit-all visibility, and @ProjectedPayload form-parameter binding (via MapDataBinder).

Remediation

Upgrade org.springframework.data:spring-data-commons to version 3.5.12, 4.0.6 or higher.

References

high severity
new

Denial of Service (DoS)

  • Vulnerable module: org.springframework.data:spring-data-commons
  • Introduced through: org.springframework.data:spring-data-redis@3.1.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework.data:spring-data-commons@3.1.0
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.5.12.

Overview

org.springframework.data:spring-data-commons is a maven plugin to centralize common resources and configuration for Spring Data Maven builds.

Affected versions of this package are vulnerable to Denial of Service (DoS) via the MappingContext property path resolution. An attacker can cause resource exhaustion by supplying specially crafted property path strings.

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 org.springframework.data:spring-data-commons to version 3.5.12, 4.0.6 or higher.

References

high severity

Relative Path Traversal

  • Vulnerable module: org.springframework:spring-beans
  • Introduced through: org.springframework:spring-aop@6.0.6 and org.springframework.data:spring-data-redis@3.1.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6
    Remediation: Upgrade to org.springframework:spring-aop@6.2.10.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.4.9.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-beans@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-beans@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-oxm@7.0.8 org.springframework:spring-beans@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework.data:spring-data-commons@3.1.0 org.springframework:spring-beans@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.4.9.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-beans@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-beans@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-beans@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.

Overview

org.springframework:spring-beans is a package that is the basis for Spring Framework's IoC container. The BeanFactory interface provides an advanced configuration mechanism capable of managing any type of object.

Affected versions of this package are vulnerable to Relative Path Traversal when deployed on non-compliant Servlet containers. An unauthenticated attacker could gain access to files and directories outside the intended web root.

Notes:

  1. This is only exploitable if the application is deployed as a WAR or with an embedded Servlet container, the Servlet container does not reject suspicious sequences and the application serves static resources with Spring resource handling.

  2. Applications deployed on Apache Tomcat or Eclipse Jetty are not vulnerable, as long as default security features are not disabled in the configuration.

  3. This vulnerability was also fixed in the commercial versions 6.1.22 and 5.3.44.

Remediation

Upgrade org.springframework:spring-beans to version 6.2.10 or higher.

References

high severity
new

Denial of Service (DoS)

  • Vulnerable module: org.springframework.data:spring-data-commons
  • Introduced through: org.springframework.data:spring-data-redis@3.1.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework.data:spring-data-commons@3.1.0
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.5.12.

Overview

org.springframework.data:spring-data-commons is a maven plugin to centralize common resources and configuration for Spring Data Maven builds.

Affected versions of this package are vulnerable to Denial of Service (DoS) via data binding. An attacker can exhaust system memory resources by sending specially crafted HTTP requests.

Note:

This is only exploitable if both Spring Data Web Support is enabled and a Controller method uses @ProjectedPayload.

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 org.springframework.data:spring-data-commons to version 3.5.12, 4.0.6 or higher.

References

high severity
new

Denial of Service (DoS)

  • Vulnerable module: org.springframework.data:spring-data-commons
  • Introduced through: org.springframework.data:spring-data-redis@3.1.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework.data:spring-data-commons@3.1.0
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.5.12.

Overview

org.springframework.data:spring-data-commons is a maven plugin to centralize common resources and configuration for Spring Data Maven builds.

Affected versions of this package are vulnerable to Denial of Service (DoS) in the parsing of Sort parameters. An attacker can cause a stack overflow and disrupt service availability by submitting specially crafted input to the affected parameter.

Note:

This is only exploitable if the application explicitly exposes an endpoint that accepts Sort parameters from untrusted sources and passes them on without performing sanitization or if the application exposes endpoints with parameters annotated with @ProjectedPayload or @QuerydslPredicate.

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 org.springframework.data:spring-data-commons to version 3.5.12, 4.0.6 or higher.

References

medium severity
new

Improperly Controlled Modification of Dynamically-Determined Object Attributes

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.14.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache com.fasterxml.jackson.core:jackson-databind@2.14.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

A fix was pushed into the master branch but not yet published.

References

medium severity
new

Server-side Request Forgery (SSRF)

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.14.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache com.fasterxml.jackson.core:jackson-databind@2.14.0
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.8.

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

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.springframework:spring-core
  • Introduced through: org.springframework:spring-aop@6.0.6 and org.springframework.data:spring-data-redis@3.1.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework:spring-aop@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework:spring-aop@6.2.18.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework:spring-aop@6.2.18.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-aop@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.5.11.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-oxm@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.5.11.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-oxm@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework.data:spring-data-commons@3.1.0 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.5.11.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework.data:spring-data-commons@3.1.0 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.5.11.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-expression@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-expression@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.

Overview

org.springframework:spring-core is a core package within the spring-framework that contains multiple classes and utilities.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via static resource resolution. An attacker can cause denial of service by sending crafted requests that are slow to resolve when accessing file-system-backed static resources, causing HTTP connections to remain occupied and exhausting server resources.

Note: This is only exploitable if all the following are true:

  1. The application uses Spring MVC or Spring WebFlux.

  2. Static resources are served from the file system.

  3. The application is running on Windows.

Remediation

Upgrade org.springframework:spring-core to version 6.2.18, 7.0.7 or higher.

References

medium severity
new

Improper Neutralization of Special Elements used in an Expression Language Statement ('Expression Language Injection')

  • Vulnerable module: org.springframework.data:spring-data-keyvalue
  • Introduced through: org.springframework.data:spring-data-redis@3.1.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.5.12.

Overview

Affected versions of this package are vulnerable to Improper Neutralization of Special Elements used in an Expression Language Statement ('Expression Language Injection') in the SpelPropertyComparator function. An attacker can execute arbitrary SpEL expressions by supplying crafted input to the Sort parameter in repository query methods.

Note:

This is only exploitable if all the conditions below are true:

  • The SpelPropertyComparator is used for sorting;

  • The method is exposed to untrusted input (e.g. via a custom REST endpoint);

  • Unsanitized user input is directly passed to the method.

Remediation

Upgrade org.springframework.data:spring-data-keyvalue to version 3.5.12, 4.0.6 or higher.

References

low severity

Improper Handling of Case Sensitivity

  • Vulnerable module: org.springframework:spring-core
  • Introduced through: org.springframework:spring-aop@6.0.6 and org.springframework.data:spring-data-redis@3.1.0

Detailed paths

  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework:spring-aop@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework:spring-aop@6.1.14.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework:spring-aop@6.1.14.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-aop@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.2.11.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-oxm@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.2.11.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-oxm@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework.data:spring-data-commons@3.1.0 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.2.11.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework.data:spring-data-commons@3.1.0 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@3.2.11.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-tx@7.0.8 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-expression@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-expression@7.0.8 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework.data:spring-data-keyvalue@3.1.0 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.
  • Introduced through: vashilK/Redis-cache@vashilK/Redis-cache org.springframework.data:spring-data-redis@3.1.0 org.springframework:spring-context-support@7.0.8 org.springframework:spring-context@7.0.8 org.springframework:spring-aop@6.0.6 org.springframework:spring-beans@6.0.6 org.springframework:spring-core@6.0.6
    Remediation: Upgrade to org.springframework.data:spring-data-redis@4.0.6.

Overview

org.springframework:spring-core is a core package within the spring-framework that contains multiple classes and utilities.

Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity due to String.toLowerCase() having some Locale dependent exceptions that could potentially result in fields not protected as expected.

Note:

The fix for CVE-2022-22968 made disallowedFields patterns in DataBinder case insensitive.

This vulnerability was also fixed in commercial versions 5.3.41 and 6.0.25.

Remediation

Upgrade org.springframework:spring-core to version 6.1.14 or higher.

References