Vulnerabilities

103 via 614 paths

Dependencies

90

Source

GitHub

Find, fix and prevent vulnerabilities in your code.

Issue type
  • 103
  • 2
Severity
  • 10
  • 46
  • 38
  • 11
Status
  • 105
  • 0
  • 0

critical severity

Missing Critical Step in Authentication

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.10.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Missing Critical Step in Authentication in the JNDIRealm process when configured to authenticate binds using GSSAPI. An attacker can gain unauthorized access by bypassing password verification during authentication.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.101, 10.1.37, 11.0.5 or higher.

References

critical severity

Improper Validation of Certificate with Host Mismatch

  • Vulnerable module: org.springframework.boot:spring-boot-autoconfigure
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.

Overview

Affected versions of this package are vulnerable to Improper Validation of Certificate with Host Mismatch due to establishing SSL connections to Cassandra without verifying that the hostname in the server's SSL certificate actually matched the hostname of the server being connected to. While the application might have verified that the certificate was signed by a trusted Certificate Authority (CA), failing to verify the hostname means an attacker could present any valid certificate (even one meant for a different domain) to successfully intercept the connection, leaving the application vulnerable to Man-in-the-Middle (MitM) attacks.

Remediation

Upgrade org.springframework.boot:spring-boot-autoconfigure to version 3.5.14, 4.0.6 or higher.

References

critical severity

Deserialization of Untrusted Data

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.15.3 and org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter com.fasterxml.jackson.core:jackson-databind@2.15.3
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 com.fasterxml.jackson.core:jackson-databind@2.15.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

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

Incomplete List of Disallowed Inputs

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.15.3 and org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter com.fasterxml.jackson.core:jackson-databind@2.15.3
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 com.fasterxml.jackson.core:jackson-databind@2.15.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

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

critical severity

Time-of-check Time-of-use (TOCTOU) Race Condition

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.7.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.7.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Time-of-check Time-of-use (TOCTOU) Race Condition. On case insensitive file systems, when the default servlet is write-enabled, an attacker can upload a malicious file containing executable code and bypass case sensitivity checks, causing it to be treated as a JSP and executed.

This vector has been observed when the application is under load and read and upload operations are performed on the same file simultaneously.

Note:

The default readonly initialization parameter value of true is not vulnerable.

This is related to CVE-2024-56337 where additional configurations are defined to fully mitigate this issue as upgrading to the fixed version doesn't fully mitigate this vulnerability;

In addition to upgrading to the fixed version, users are advised to apply the following mitigations, depending on which version of Java they are using with Tomcat :

  1. running on Java 8 or Java 11: the system property sun.io.useCanonCaches must be explicitly set to false (it defaults to true)

  2. running on Java 17: the system property sun.io.useCanonCaches, if set, must be set to false (it defaults to false)

  3. running on Java 21 onwards: no further configuration is required (the system property and the problematic cache have been removed)

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.98, 10.1.34, 11.0.2 or higher.

References

critical severity

Time-of-check Time-of-use (TOCTOU) Race Condition

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.7.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.7.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Time-of-check Time-of-use (TOCTOU) Race Condition due to imcomplete mitigation advice associated with CVE-2024-50379 in the file-handling process with servlet write enabled.

In addition to upgrading to the fixed version, users are advised to apply the following mitigations, depending on which version of Java they are using with Tomcat :

  1. running on Java 8 or Java 11: the system property sun.io.useCanonCaches must be explicitly set to false (it defaults to true)

  2. running on Java 17: the system property sun.io.useCanonCaches, if set, must be set to false (it defaults to false)

  3. running on Java 21 onwards: no further configuration is required (the system property and the problematic cache have been removed)

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.98, 10.1.34, 11.0.2 or higher.

References

critical severity

Uncaught Exception

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Uncaught Exception due to the custom Jakarta Authentication ServerAuthContext component which may throw an exception during the authentication process without setting an HTTP status to indicate failure. An attacker can gain unauthorized access by exploiting this unchecked error condition.

Note:

This is only exploitable if Tomcat is configured to use a custom Jakarta Authentication ServerAuthContext component that behaves in this way. According to the maintainers, no such cases are known.

PoC

import requests

# Target server configuration
TARGET_URL = "http://example.com/login"  # Replace with your target's authentication URL
TEST_HEADERS = {
    "Content-Type": "application/json"
}
TEST_PAYLOAD = {
    "username": "test_user",  # Sample username
    "password": "invalid_password"  # Invalid password for testing
}

def check_cve_2024_52316(target_url):
    """
    Test for CVE-2024-52316 vulnerability by sending crafted authentication requests.

    Args:
        target_url (str): The URL of the authentication endpoint to test.
    """
    try:
        print(f"[*] Sending test request to {target_url}")
        # Send a POST request with the test payload
        response = requests.post(target_url, json=TEST_PAYLOAD, headers=TEST_HEADERS, timeout=5)
        
        # Analyze the server's response
        if response.status_code in [401, 403]:
            print(f"[SAFE] The server returned an expected HTTP status code: {response.status_code}")
        elif response.status_code == 200:
            print(f"[VULNERABLE] Potential CVE-2024-52316 detected! Server returned status code: {response.status_code}")
        else:
            print(f"[INFO] Unexpected HTTP status code: {response.status_code}")
            print("Response content:", response.text)
    except requests.exceptions.RequestException as e:
        print(f"[ERROR] Failed to connect to the target: {e}")

if __name__ == "__main__":
    print("[START] CVE-2024-52316 Detection Script")
    check_cve_2024_52316(TARGET_URL)

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.96, 10.1.31, 11.0.0 or higher.

References

critical severity

Improper Validation of Certificate with Host Mismatch

  • Vulnerable module: org.springframework.boot:spring-boot-autoconfigure
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.

Overview

Affected versions of this package are vulnerable to Improper Validation of Certificate with Host Mismatch when using an SSL bundle. This effectively weakens TLS by allowing connections without verifying the server identity (classic MITM risk).

Remediation

Upgrade org.springframework.boot:spring-boot-autoconfigure to version 3.5.14, 4.0.6 or higher.

References

critical severity

Improper Authentication

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Authentication when DIGEST authentication is configured. An attacker can gain unauthorized access by providing any unknown username, as the system will incorrectly authenticate the user.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.118, 10.1.55, 11.0.22 or higher.

References

critical severity

Improper Certificate Validation

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.13.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.13.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Certificate Validation in the SNI extension, when client certificate authentication relies exclusively on the Connector (and is not enforced in the web application). The hostname provided via the SNI extension may be different from the hostname in the HTTP host header field.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.113, 10.1.50, 11.0.15 or higher.

References

high severity

Uncontrolled Recursion

  • Vulnerable module: org.apache.commons:commons-lang3
  • Introduced through: org.apache.commons:commons-lang3@3.14.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.apache.commons:commons-lang3@3.14.0
    Remediation: Upgrade to org.apache.commons:commons-lang3@3.18.0.

Overview

Affected versions of this package are vulnerable to Uncontrolled Recursion via the ClassUtils.getClass function. An attacker can cause the application to terminate unexpectedly by providing excessively long input values.

Remediation

Upgrade org.apache.commons:commons-lang3 to version 3.18.0 or higher.

References

high severity

Improper Authentication

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.13.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.13.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Authentication in processOCSPRequest(), which is part of the the CLIENT_CERT authentication process. An attacker can trigger a soft-fail of OCSP checks when soft-fail is disabled.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.116, 10.1.53, 11.0.20 or higher.

References

high severity

Improper Authentication

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.0.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Authentication in the EncryptionInterceptor process of the cluster component. An attacker can gain unauthorized access or perform unauthorized actions by replaying previously captured authentication data.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.119, 10.1.56, 11.0.23 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-core@2.15.3, com.fasterxml.jackson.core:jackson-databind@2.15.3 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter com.fasterxml.jackson.core:jackson-core@2.15.3
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.18.6.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter com.fasterxml.jackson.core:jackson-databind@2.15.3 com.fasterxml.jackson.core:jackson-core@2.15.3
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.6.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 com.fasterxml.jackson.core:jackson-databind@2.15.3 com.fasterxml.jackson.core:jackson-core@2.15.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.13.

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-core@2.15.3, com.fasterxml.jackson.core:jackson-databind@2.15.3 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter com.fasterxml.jackson.core:jackson-core@2.15.3
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.18.7.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter com.fasterxml.jackson.core:jackson-databind@2.15.3 com.fasterxml.jackson.core:jackson-core@2.15.3
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.7.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 com.fasterxml.jackson.core:jackson-databind@2.15.3 com.fasterxml.jackson.core:jackson-core@2.15.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.13.

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

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: com.fasterxml.jackson.core:jackson-core
  • Introduced through: com.fasterxml.jackson.core:jackson-core@2.15.3, com.fasterxml.jackson.core:jackson-databind@2.15.3 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter com.fasterxml.jackson.core:jackson-core@2.15.3
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.18.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter com.fasterxml.jackson.core:jackson-databind@2.15.3 com.fasterxml.jackson.core:jackson-core@2.15.3
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 com.fasterxml.jackson.core:jackson-databind@2.15.3 com.fasterxml.jackson.core:jackson-core@2.15.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

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

Denial of Service (DoS)

  • Vulnerable module: org.apache.httpcomponents.core5:httpcore5-h2
  • Introduced through: software.amazon.awssdk:apache5-client@2.52.1

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter software.amazon.awssdk:apache5-client@2.52.1 org.apache.httpcomponents.client5:httpclient5@5.2.1 org.apache.httpcomponents.core5:httpcore5-h2@5.2.3
    Remediation: Upgrade to software.amazon.awssdk:apache5-client@2.52.1.

Overview

Affected versions of this package are vulnerable to Denial of Service (DoS) due to incorrect stream accounting in the handling of server-sent stream resets. An attacker can cause excessive server resource consumption by rapidly opening streams and triggering resets using malformed frames or flow control errors, resulting in the server processing an unbounded number of concurrent streams on a single connection.

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.apache.httpcomponents.core5:httpcore5-h2 to version 5.3.5 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling due to the uniform handling of request parameters and parts in multipart requests. An attacker can craft a malicious request with a large number of parts, which can lead to a Denial of Service.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.106, 10.1.42, 11.0.8 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.8.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via HTTP/2 multiplexing feature. an attacker can trigger resource exhaustion by creating excessive HTTP/2 streams within a single TCP connection.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.107, 10.1.43, 11.0.9 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via the WebDAV LOCK and PROPFIND XML request bodies. An attacker can cause excessive resource consumption by sending specially crafted requests that trigger unbounded reads.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.118, 10.1.55, 11.0.22 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.7.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.7.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via the unwrap() function in SecureNio2Channel class, during a TLS handshake. Under certain configurations using TLS 1.3, an attacker can trigger an OutOfMemoryError.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.90, 10.1.25, 11.0.0-M21 or higher.

References

high severity

Detection of Error Condition Without Action

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.0.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Detection of Error Condition Without Action due to improper handling of invalid certificate revocation list (CRL) configurations in the FFM connector. An attacker can bypass intended certificate validation by supplying an invalid CRL configuration.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.119, 10.1.56, 11.0.23 or higher.

References

high severity

Improper Cleanup on Thrown Exception

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.11.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Cleanup on Thrown Exception when handling failed HTTP/2 requests with certain invalid HTTP priority headers. An attacker can trigger an OutOfMemoryException by sending a large number of malicious requests.

Note: The project maintainers note that version 9.0.103 also fixes the vulnerability but was never officially released.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.104, 10.1.40, 11.0.6 or higher.

References

high severity

Improper Resource Shutdown or Release

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Resource Shutdown or Release via the HTTP/2 Handler. An attacker can cause a denial of service by sending specially crafted requests that exploit improper handling of resource shutdown.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.108, 10.1.44, 11.0.10 or higher.

References

high severity

Incorrect Authorization

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.11.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Incorrect Authorization when using an OCSP responder. OCSP response verification and freshness checks can be bypassed, allowing certificate revocation to be bypassed.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.114, 10.1.52, 11.0.18 or higher.

References

high severity

Insufficient Session Expiration

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.7.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.7.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Insufficient Session Expiration due to an infinite timeout being assigned to an open connection improperly, in http2/Stream.java. An attacker can force this situation by sending an HTTP/2 stream with excessive headers, causing an out-of-memory error or exhausting maxConnections.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.90, 10.1.25, 11.0.0-M21 or higher.

References

high severity

Integer Overflow or Wraparound

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.8.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Integer Overflow or Wraparound via file uploads through servlet containers. An attacker can craft malicious multipart/form-data requests with specially crafted Content-Length headers that trigger integer overflow vulnerabilities, potentially bypassing file size restrictions and causing memory exhaustion.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.107, 10.1.43, 11.0.9 or higher.

References

high severity

Incorrect Authorization

  • Vulnerable module: org.springframework:spring-core
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-core@4.1.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.

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

Inefficient Algorithmic Complexity

  • Vulnerable module: org.springframework:spring-expression
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0, io.awspring.cloud:spring-cloud-aws-starter@4.1.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

Affected versions of this package are vulnerable to Inefficient Algorithmic Complexity via evaluation of user-controlled Spring Expression Language (SpEL) expressions. An attacker can cause denial of service by supplying specially crafted SpEL expressions that trigger excessive CPU or memory consumption during expression evaluation, leading to application degradation or unavailability.

Remediation

Upgrade org.springframework:spring-expression to version 6.0.0, 6.2.19, 7.0.8 or higher.

References

high severity

Path Traversal

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.10.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Path Traversal via the WebMvc.fn and WebFlux.fn frameworks. An attacker can access any file on the file system that is also accessible to the process in which the Spring application is running by crafting malicious HTTP requests.

Note:

This is only exploitable if the web application uses RouterFunctions to serve static resources and resource handling is explicitly configured with a FileSystemResource location.

Workaround

This vulnerability can be mitigated by using the Spring Security HTTP Firewall or running the application on Tomcat or Jetty.

Remediation

Upgrade org.springframework:spring-webmvc to version 6.1.13 or higher.

References

high severity

Path Traversal

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Path Traversal through the functional web frameworks WebMvc.fn or WebFlux.fn. An attacker can craft malicious HTTP requests and obtain any file on the file system that is also accessible.

Note: This is similar to CVE-2024-38816, but with different input.

Remediation

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

References

high severity

Improper Authentication

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Authentication in processOCSPRequest(), which is part of the the CLIENT_CERT authentication process. In some "edge cases", an attacker can trigger a soft-fail of OCSP checks when soft-fail is disabled.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.117, 10.1.54, 11.0.21 or higher.

References

high severity

HTTP Request Smuggling

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.13.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.13.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to HTTP Request Smuggling in ChunkedInputFilter, when handling HTTP/1.1 requests with invalid chunk extensions. An attacker can interfere with the interpretation of HTTP requests and responses by injecting CRLF sequences and sending the payload to an application using a reverse proxy that allows those sequences.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.116, 10.1.53, 11.0.20 or higher.

References

high severity

Relative Path Traversal

  • Vulnerable module: org.springframework:spring-beans
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0, io.awspring.cloud:spring-cloud-aws-starter@4.1.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.9.

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

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.springframework:spring-expression
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0, io.awspring.cloud:spring-cloud-aws-starter@4.1.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.springframework:spring-expression is a

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling. via caching of parsed Spring Expression Language (SpEL) expressions. An attacker can cause denial of service by supplying crafted user-controlled SpEL expressions that trigger unbounded growth of the expression cache. Over time, repeated evaluations can consume excessive memory, eventually leading to memory exhaustion and application unavailability.

Note: Exploitation typically requires a large number of expression evaluations, potentially millions of requests, even when reusing a single expression with dynamic inputs.

Remediation

Upgrade org.springframework:spring-expression to version 6.0.0, 6.2.19, 7.0.8 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via static resource resolution when versioned resource support is enabled. An attacker can cause denial of service by sending crafted requests that trigger expensive resource resolution operations against filesystem-backed static resources. Repeated requests can consume server resources and keep HTTP connections occupied for extended periods, potentially degrading performance or rendering the application unavailable.

Note: This is only exploitable if the application uses Spring MVC or Spring WebFlux, serves static resources from the filesystem, and has versioned resource support enabled.

Remediation

Upgrade org.springframework:spring-webmvc to version 6.0.0, 6.2.19, 7.0.8 or higher.

References

high severity

Direct Request ('Forced Browsing')

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Direct Request ('Forced Browsing') via shared caching of static resource resolutions across resource handlers. An attacker can gain unauthorized access to protected resources when a shared cache stores a resource resolution result from a publicly accessible handler and subsequently reuses it for a protected handler serving a resource with the same name. This can cause resources that should require authentication to be served without proper access control checks.

Note: This is only exploitable if the application uses Spring MVC or Spring WebFlux, configures multiple resource handlers with different resource locations, protects at least one handler with authentication, and uses a shared cache for resource resolution.

Remediation

Upgrade org.springframework:spring-webmvc to version 6.0.0, 6.2.19, 7.0.8 or higher.

References

high severity

Directory Traversal

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.12.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Directory Traversal via the Script View Templates. An attacker can access sensitive file contents outside of the intended directories by leveraging the Java scripting engine in template rendering.

Note:

This is only exploitable if the application has a mapping for "/**" that results in view rendering, and where the view name is not explicitly specified.

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade org.springframework:spring-webmvc to version 6.2.17, 7.0.6 or higher.

References

high severity

Directory Traversal

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Directory Traversal via static resource resolution when versioned resource support is enabled. An attacker can perform path traversal and access files outside the configured static resource locations by sending crafted requests that abuse the versioned resource resolution mechanism.

Note: This is only exploitable if the application uses Spring MVC or Spring WebFlux, serves static resources from the filesystem, has versioned resource support enabled, and the attacker knows or can guess metadata associated with targeted resources.

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade org.springframework:spring-webmvc to version 6.0.0, 6.2.19, 7.0.8 or higher.

References

high severity

Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG)

  • Vulnerable module: org.springframework.boot:spring-boot
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.

Overview

Affected versions of this package are vulnerable to Use of Cryptographically Weak Pseudo-Random Number Generator (PRNG) for the property source for ${random.value} (as well as ${random.int} and ${random.long}). Standard PRNGs (like java.util.Random) use deterministic mathematical algorithms starting from a seed value. Because the state space is relatively small and lacks ongoing entropy (true randomness), an attacker who observes a sequence of generated values can mathematically reverse-engineer the seed. Once the seed is known, the attacker can predict all past and future values generated by that PRNG. If these values are used to generate security-sensitive assets like API keys, session tokens, or passwords, the system becomes compromised.

Remediation

Upgrade org.springframework.boot:spring-boot to version 3.5.14, 4.0.6 or higher.

References

high severity

Path Equivalence

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.9.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Path Equivalence in the doPut() function in DefaultServlet.java, which insecurely replaces path separators with .s.

If the Default Servlet is configured with writes enabled - which it is not by default - a user can exploit Tomcat's partial PUT functionality to achieve code execution via deserialization. The target URL containing sensitive uploaded files must be a sub-directory of a target URL for public uploads, and the malicious user must know the names of the target sensitive files, which are also uploaded using a partial PUT. If both attacker and target application are using the default storage location and it contains a library that deserializes untrusted code, the attacker can trigger the execution of malicious code.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.99, 10.1.35, 11.0.3 or higher.

References

high severity

Relative Path Traversal

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.10.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Relative Path Traversal via the URL normalization. An attacker can bypass security constraints and access restricted directories such as /WEB-INF/ and /META-INF/ by manipulating the request URI. If PUT requests are also enabled then malicious files could be uploaded leading to remote code execution.

Note:

  1. Older, EOL versions may also be affected.
  2. PUT requests are normally limited to trusted users and it is considered unlikely that PUT requests would be enabled in conjunction with a rewrite that manipulated the URI.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.109, 10.1.45, 11.0.11 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.3.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.3.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Denial of Service (DoS) when processing a crafted HTTP/2 request. If the request exceeded any of the configured limits for headers, the associated HTTP/2 stream was not reset until after all of the headers had been processed.

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.apache.tomcat.embed:tomcat-embed-core to version 8.5.99, 9.0.86, 10.1.19, 1.0.0-M17 or higher.

References

high severity

Untrusted Search Path

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Untrusted Search Path via the icacls.exe call during Windows installation, when a full path is not specified. An attacker can execute arbitrary code with elevated privileges by placing a malicious executable in a directory that is searched before the intended system directory.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.106, 10.1.42, 11.0.8 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-websocket
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.3.

Overview

Affected versions of this package are vulnerable to Denial of Service (DoS) when a WebSocket client can keep a WebSocket connection open which is leading to increased resource consumption.

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.apache.tomcat.embed:tomcat-embed-websocket to version 8.5.99, 9.0.86, 10.1.19, 1.0.0-M17 or higher.

References

high severity

Insecure Temporary File

  • Vulnerable module: org.springframework.boot:spring-boot
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.

Overview

Affected versions of this package are vulnerable to Insecure Temporary File due to the ApplicationTemp mechanism creating a temporary directory using a predictable name. Because the name can be easily guessed, a local attacker on the same server can maliciously pre-create this directory before the Spring Boot application starts. When the application launches, it would blindly use the existing directory without verifying if it is actually owned by the application's user or the attacker.

Remediation

Upgrade org.springframework.boot:spring-boot to version 3.5.14, 4.0.6 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: ch.qos.logback:logback-classic
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.1.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.1.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.1.

Overview

ch.qos.logback:logback-classic is a reliable, generic, fast and flexible logging library for Java.

Affected versions of this package are vulnerable to Denial of Service (DoS). An attacker can mount a denial-of-service attack by sending poisoned data. This is only exploitable if logback receiver component is deployed.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade ch.qos.logback:logback-classic to version 1.2.13, 1.3.12, 1.4.12 or higher.

References

high severity

Uncontrolled Resource Consumption ('Resource Exhaustion')

  • Vulnerable module: ch.qos.logback:logback-classic
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.1.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.1.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.1.

Overview

ch.qos.logback:logback-classic is a reliable, generic, fast and flexible logging library for Java.

Affected versions of this package are vulnerable to Uncontrolled Resource Consumption ('Resource Exhaustion') via the logback receiver component. An attacker can mount a denial-of-service attack by sending poisoned data.

Note:

Successful exploitation requires the logback-receiver component being enabled and also reachable by the attacker.

Remediation

Upgrade ch.qos.logback:logback-classic to version 1.2.13, 1.3.14, 1.4.14 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.1.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.1.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.1.

Overview

ch.qos.logback:logback-core is a logback-core module.

Affected versions of this package are vulnerable to Denial of Service (DoS). An attacker can mount a denial-of-service attack by sending poisoned data. This is only exploitable if logback receiver component is deployed.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade ch.qos.logback:logback-core to version 1.2.13, 1.3.12, 1.4.12 or higher.

References

high severity

Uncontrolled Resource Consumption ('Resource Exhaustion')

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.1.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.1.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.1.

Overview

ch.qos.logback:logback-core is a logback-core module.

Affected versions of this package are vulnerable to Uncontrolled Resource Consumption ('Resource Exhaustion') via the logback receiver component. An attacker can mount a denial-of-service attack by sending poisoned data.

Note:

Successful exploitation requires the logback-receiver component being enabled and also reachable by the attacker.

Remediation

Upgrade ch.qos.logback:logback-core to version 1.2.13, 1.3.14, 1.4.14 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.apache.httpcomponents.core5:httpcore5-h2
  • Introduced through: software.amazon.awssdk:apache5-client@2.52.1

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter software.amazon.awssdk:apache5-client@2.52.1 org.apache.httpcomponents.client5:httpclient5@5.2.1 org.apache.httpcomponents.core5:httpcore5-h2@5.2.3
    Remediation: Upgrade to software.amazon.awssdk:apache5-client@2.52.1.

Overview

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling due to the lack of enforced limits in the HPackDecoder process. An attacker can exhaust system memory by sending oversized compressed header blocks before the HTTP/2 SETTINGS acknowledgement applies the configured header list size limit.

Remediation

Upgrade org.apache.httpcomponents.core5:httpcore5-h2 to version 5.4.3, 5.5-beta2 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.apache.httpcomponents.core5:httpcore5-h2
  • Introduced through: software.amazon.awssdk:apache5-client@2.52.1

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter software.amazon.awssdk:apache5-client@2.52.1 org.apache.httpcomponents.client5:httpclient5@5.2.1 org.apache.httpcomponents.core5:httpcore5-h2@5.2.3
    Remediation: Upgrade to software.amazon.awssdk:apache5-client@2.52.1.

Overview

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via the HTTP/1.1 message parsing process. An attacker can exhaust system memory by sending messages with an excessive number of headers or excessively long headers.

Remediation

Upgrade org.apache.httpcomponents.core5:httpcore5-h2 to version 5.4.2, 5.5-beta1 or higher.

References

high severity

Incomplete Cleanup

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Affected versions of this package are vulnerable to Incomplete Cleanup via multipart request handling in WebFlux. An attacker can exhaust disk space by sending multipart requests with large parts that trigger creation of temporary files, which under certain conditions are not deleted after the request completes, leading to accumulation of temp files and denial of service.

Remediation

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

References

high severity

Open Redirect

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.3.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.3.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.3.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Affected versions of this package are vulnerable to Open Redirect when UriComponentsBuilder parses an externally provided URL, and the application subsequently uses that URL. If it contains hierarchical components such as path, query, and fragment it may evade validation.

Remediation

Upgrade org.springframework:spring-web to version 5.3.32, 6.0.17, 6.1.4 or higher.

References

high severity

Open Redirect

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.4.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.4.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.4.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Affected versions of this package are vulnerable to Open Redirect when using UriComponentsBuilder to parse an externally provided URL and perform validation checks on the host of the parsed URL.

Note: This is the same as CVE-2024-22243, but with different input.

Remediation

Upgrade org.springframework:spring-web to version 5.3.33, 6.0.18, 6.1.5 or higher.

References

high severity

Expression Injection

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11

Overview

ch.qos.logback:logback-core is a logback-core module.

Affected versions of this package are vulnerable to Expression Injection in the Janino-evaluated condition attribute of <if> configuration elements, handled by IfModelHandler, whose denylist blocked only the literal new operator. A user who can modify the logback configuration can execute arbitrary code by writing an <if> condition that evades that denylist, either through references it did not cover such as Runtime or springframework, or through Unicode escape sequences like \u that reconstruct the blocked new operator. Exploitation requires write access to the logback configuration and the use of conditional <if> processing with Janino present on the classpath.

Remediation

Upgrade ch.qos.logback:logback-core to version 1.5.36 or higher.

References

medium severity

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.15.3 and org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter com.fasterxml.jackson.core:jackson-databind@2.15.3
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 com.fasterxml.jackson.core:jackson-databind@2.15.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.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

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.15.3 and org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter com.fasterxml.jackson.core:jackson-databind@2.15.3
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 com.fasterxml.jackson.core:jackson-databind@2.15.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

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

Server-side Request Forgery (SSRF)

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: com.fasterxml.jackson.core:jackson-databind@2.15.3 and org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter com.fasterxml.jackson.core:jackson-databind@2.15.3
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 com.fasterxml.jackson.core:jackson-databind@2.15.3
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

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

Always-Incorrect Control Flow Implementation

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.0.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Always-Incorrect Control Flow Implementation due to incorrect control flow in the RewriteValve process. An attacker can bypass intended rewrite rules by crafting requests that exploit the improper evaluation of OR chains in conditions.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.119, 10.1.56, 11.0.23 or higher.

References

medium severity

Improper Validation of Syntactic Correctness of Input

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Validation of Syntactic Correctness of Input in the processing of HTTP/2 request headers. An attacker can cause unexpected behavior or potentially compromise the application by sending specially crafted HTTP/2 request headers.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.118, 10.1.55, 11.0.22 or higher.

References

medium severity

Session Fixation

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Session Fixation via the rewrite valve if enabled for a web application. An attacker can gain unauthorized access to another user's session by crafting a request that allows session fixation.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.106, 10.1.42, 11.0.8 or higher.

References

medium severity

Exposure of Private Personal Information to an Unauthorized Actor

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-websocket
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

Affected versions of this package are vulnerable to Exposure of Private Personal Information to an Unauthorized Actor in WebSocket client during authentication. An attacker can obtain sensitive HTTP authentication headers by initiating a WebSocket handshake with a malicious host.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-websocket to version 8.0.1, 9.0.0.M1, 9.0.118, 10.1.55, 11.0.22 or higher.

References

medium severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.springframework:spring-core
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-core@4.1.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.

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

Exposed Dangerous Method or Function

  • Vulnerable module: org.springframework:spring-expression
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0, io.awspring.cloud:spring-cloud-aws-starter@4.1.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

Affected versions of this package are vulnerable to Exposed Dangerous Method or Function via Spring Expression Language (SpEL) method invocation handling. An attacker can invoke arbitrary zero-argument methods by supplying crafted SpEL expressions, even in contexts intended to restrict method execution or provide read-only access. This may allow execution of unintended application logic and access to functionality that should not be exposed through expression evaluation.

Note: This is only exploitable if the application accepts and evaluates untrusted or user-controlled SpEL expressions.

Remediation

Upgrade org.springframework:spring-expression to version 6.0.0, 6.2.19, 7.0.8 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.9.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.9.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Affected versions of this package are vulnerable to Denial of Service (DoS) in the form of improper ETag prefix validation when parsing ETags from the If-Match or If-None-Match request headers. An attacker can exploit this vulnerability to cause denial of service by sending a maliciously crafted conditional HTTP request.

Workaround

Users of older, unsupported versions could enforce a size limit on If-Match and If-None-Match headers, e.g. through a Filter.

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:spring-web to version 5.3.38, 6.0.23, 6.1.12 or higher.

References

medium severity
new

HTTP Request Smuggling

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to HTTP Request Smuggling. via multipart request parsing discrepancies between Spring MVC/WebFlux and intermediary security devices. An attacker can bypass Web Application Firewall (WAF) or proxy security controls by sending crafted multipart requests that are interpreted differently by the intermediary and the Spring application, allowing malicious content to evade inspection and reach the backend application.

Remediation

Upgrade org.springframework:spring-webmvc to version 6.0.0, 6.2.19, 7.0.8 or higher.

References

medium severity

Deserialization of Untrusted Data

  • Vulnerable module: ch.qos.logback:logback-classic
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

ch.qos.logback:logback-classic is a reliable, generic, fast and flexible logging library for Java.

Affected versions of this package are vulnerable to Deserialization of Untrusted Data in HardenedObjectInputStream, whose resolveClass allowlist admitted any class whose name starts with java.lang or java.util rather than matching specific authorized classes. An attacker can instantiate dangerous classes such as java.lang.ProcessBuilder during deserialization, reaching remote code execution through a gadget chain, by delivering a malicious serialized object to a logback component that deserializes it, such as its socket receiver for serialized logging events (SocketNode). Exploitation requires the application to deserialize attacker-controlled serialized data through logback, in practice via its socket-based receiver, together with a usable gadget class on the classpath.

Workaround

This vulnerability can be avoided by not exposing logback's socket-based serialized receivers, such as SocketReceiver and ServerSocketReceiver, to untrusted networks, which removes the path by which attacker-controlled serialized objects reach the deserialization filter.

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 ch.qos.logback:logback-classic to version 1.5.33 or higher.

References

medium severity

Deserialization of Untrusted Data

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

ch.qos.logback:logback-core is a logback-core module.

Affected versions of this package are vulnerable to Deserialization of Untrusted Data in HardenedObjectInputStream, whose resolveClass allowlist admitted any class whose name starts with java.lang or java.util rather than matching specific authorized classes. An attacker can instantiate dangerous classes such as java.lang.ProcessBuilder during deserialization, reaching remote code execution through a gadget chain, by delivering a malicious serialized object to a logback component that deserializes it, such as its socket receiver for serialized logging events (SocketNode). Exploitation requires the application to deserialize attacker-controlled serialized data through logback, in practice via its socket-based receiver, together with a usable gadget class on the classpath.

Workaround

This vulnerability can be avoided by not exposing logback's socket-based serialized receivers, such as SocketReceiver and ServerSocketReceiver, to untrusted networks, which removes the path by which attacker-controlled serialized objects reach the deserialization filter.

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 ch.qos.logback:logback-core to version 1.5.33 or higher.

References

medium severity

Improper Encoding or Escaping of Output

  • Vulnerable module: org.apache.logging.log4j:log4j-api
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 org.apache.logging.log4j:log4j-to-slf4j@2.21.1 org.apache.logging.log4j:log4j-api@2.21.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 org.apache.logging.log4j:log4j-to-slf4j@2.21.1 org.apache.logging.log4j:log4j-api@2.21.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 org.apache.logging.log4j:log4j-to-slf4j@2.21.1 org.apache.logging.log4j:log4j-api@2.21.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 org.apache.logging.log4j:log4j-to-slf4j@2.21.1 org.apache.logging.log4j:log4j-api@2.21.1

Overview

Affected versions of this package are vulnerable to Improper Encoding or Escaping of Output in the MapMessage.asJson() method, which emits the bare NaN, Infinity, or -Infinity tokens instead of an RFC 8259-compliant representation. An attacker can emit malformed JSON that corrupts the enclosing log record or disrupts downstream log ingestion and parsing by supplying non-finite floating-point values that the application records in a logged MapMessage. Exploitation requires the application to use the message resolver of JsonTemplateLayout, or another layout relying on MapMessage.asJson(), and to log a MapMessage holding attacker-controlled floating-point values.

Note: This is a bypass of the fix for the vulnerability described in CVE-2026-34481.

Remediation

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

References

medium severity

Authentication Bypass Using an Alternate Path or Channel

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Authentication Bypass Using an Alternate Path or Channel due to how PreResources or PostResources handle pre-resources or post-resources mounted at non-root locations. An attacker can gain unauthorized access to protected resources by crafting requests to unexpected paths that bypass intended security constraints.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.106, 10.1.42, 11.0.8 or higher.

References

medium severity

Improper Encoding or Escaping of Output

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Encoding or Escaping of Output in JsonAccessLogValve(), which relies on an unescaped append() in generating JSON logs. If non-default values are used for the Connector attributes relaxedPathChars or relaxedQueryChars, an attacker can inject malicious JSON into logs.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.117, 10.1.54, 11.0.21 or higher.

References

medium severity

Improper Handling of Case Sensitivity

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.12.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.12.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity in the pathInfo component of a URI mapped to the CGI servlet. An attacker can bypass security constraints that apply to the pathInfo component by exploiting this vulnerability on a case insensitive file system.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.105, 10.1.41, 11.0.7 or higher.

References

medium severity

Improper Neutralization

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.11.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Neutralization in the RewriteValve class, which handles rewrite rules. If rewrite rules are configured to enforce security constraints, those security constraints can be bypassed in some cases by sending a malicious request involving ; or ? characters.

Note: The project maintainers note that version 9.0.103 also fixes the vulnerability but was never officially released.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.104, 10.1.40, 11.0.6 or higher.

References

medium severity

Timing Attack

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Timing Attack via AJP secret comparison. An attacker can perform a timing side-channel attack to determine whether a guessed secret is correct by sending many authentication attempts directly to the connector and measuring the time taken to compare secrets.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.118, 10.1.55, 11.0.22 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: org.springframework:spring-core
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-core@4.1.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

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 Regular Expression Denial of Service (ReDoS) via pattern processing in AntPathMatcher. An attacker can cause denial of service by supplying a crafted regular expression pattern to methods such as match(), matchStart(), or extractUriTemplateVariables(), triggering excessive backtracking and CPU consumption during pattern evaluation.

Note: This is only exploitable if attacker-controlled input is used directly or indirectly as the pattern argument to one of the affected AntPathMatcher methods.

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:

  • A The 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.
  • D Finally, 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:

  1. CCC
  2. CC+C
  3. C+CC
  4. 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 org.springframework:spring-core to version 6.0.0, 6.2.19, 7.0.8 or higher.

References

medium severity

Improper Resource Shutdown or Release

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.11.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Resource Shutdown or Release due to the delayed cleaning of multipart upload temporary files. An attacker can cause a denial-of-service by sending crafted requests that create temporary copies of uploaded parts faster than the garbage collector clears them, leading to resource exhaustion.

Note: Successful exploitation depends on the JVM settings, the application memory usage, and application load.

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.apache.tomcat.embed:tomcat-embed-core to version 9.0.110, 10.1.47, 11.0.12 or higher.

References

medium severity

Improper Neutralization of Special Elements

  • Vulnerable module: ch.qos.logback:logback-classic
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.3.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.8.

Overview

ch.qos.logback:logback-classic is a reliable, generic, fast and flexible logging library for Java.

Affected versions of this package are vulnerable to Improper Neutralization of Special Elements via the JaninoEventEvaluator extension. An attacker can execute arbitrary code by compromising an existing logback configuration file or injecting an environment variable before program execution.

Remediation

Upgrade ch.qos.logback:logback-classic to version 1.3.15, 1.5.13 or higher.

References

medium severity

External Initialization of Trusted Variables or Data Stores

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.4.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.11.

Overview

ch.qos.logback:logback-core is a logback-core module.

Affected versions of this package are vulnerable to External Initialization of Trusted Variables or Data Stores via the conditional processing of the logback.xml configuration file when both the Janino library and Spring Framework are present on the class path. An attacker can execute arbitrary code by compromising an existing configuration file or injecting a malicious environment variable before program execution. This is only exploitable if the attacker has write access to a configuration file or can set a malicious environment variable.

Remediation

Upgrade ch.qos.logback:logback-core to version 1.3.16, 1.5.19 or higher.

References

medium severity

Improper Neutralization of Special Elements

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.3.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.8.

Overview

ch.qos.logback:logback-core is a logback-core module.

Affected versions of this package are vulnerable to Improper Neutralization of Special Elements via the JaninoEventEvaluator extension. An attacker can execute arbitrary code by compromising an existing logback configuration file or injecting an environment variable before program execution.

Remediation

Upgrade ch.qos.logback:logback-core to version 1.3.15, 1.5.13 or higher.

References

medium severity

Symlink Attack

  • Vulnerable module: org.springframework.boot:spring-boot
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.

Overview

Affected versions of this package are vulnerable to Symlink Attack due to insecure handling of Process ID (PID) files. When an application uses the ApplicationPidFileWriter, it writes its PID to a predictable file system path. A local attacker with write access to the PID file's directory can create a symbolic link (symlink) at that path. When the Spring Boot application starts, it follows this symlink and overwrites the target file with its PID. This allows the attacker to corrupt or "clobber" sensitive system files, potentially leading to a denial of service or system instability.

Remediation

Upgrade org.springframework.boot:spring-boot to version 3.5.14, 4.0.6 or higher.

References

medium severity

Open Redirect

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.5.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.5.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.5.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Affected versions of this package are vulnerable to Open Redirect when UriComponentsBuilder is used to parse an externally provided URL and perform validation checks on the host of the parsed URL.

Note: This is the same as CVE-2024-22259 and CVE-2024-22243, but with different input.

Remediation

Upgrade org.springframework:spring-web to version 5.3.34, 6.0.19, 6.1.6 or higher.

References

medium severity

Always-Incorrect Control Flow Implementation

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.0.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Always-Incorrect Control Flow Implementation due to the incomplete logging of the effective web.xml when special roles and empty authorization constraints are present. An attacker can bypass intended access restrictions by exploiting the absence of these constraints in the logged configuration.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.119, 10.1.56, 11.0.23 or higher.

References

medium severity

Improper Authorization

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Authorization in the processing of security constraints when multiple method constraints define an HTTP method for the same extension. An attacker can gain unauthorized access to protected resources by crafting requests that exploit the improper application of these constraints.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.118, 10.1.55, 11.0.22 or higher.

References

medium severity

Improper Authorization

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.0.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Authorization due to the improper enforcement of security constraints in the default servlet when certain HTTP methods or method omissions are configured. An attacker can gain unauthorized access to protected resources by sending requests using HTTP methods that are not properly restricted.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.119, 10.1.56, 11.0.23 or higher.

References

medium severity

Improper Handling of Case Sensitivity

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity in the LockOutRealm function. An attacker can bypass account lockout protections by submitting usernames with different letter casing.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.118, 10.1.55, 11.0.22 or higher.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) via improper escaping in JavaScriptUtils.javaScriptEscape(). An attacker can inject arbitrary JavaScript code into a web page when user-controlled input is escaped using javaScriptEscape() and subsequently embedded into a JavaScript context. Incorrect escaping may allow malicious input to break out of the intended context and execute in the victim's browser.

Details

Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

Types of attacks

There are a few methods by which XSS can be manipulated:

Type Origin Description
Stored Server The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
Reflected Server The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-based Client The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
Mutated The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.

Affected environments

The following environments are susceptible to an XSS attack:

  • Web servers
  • Application servers
  • Web application environments

How to prevent

This section describes the top best practices designed to specifically protect your code:

  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • Give users the option to disable client-side scripts.
  • Redirect invalid requests.
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.

Remediation

Upgrade org.springframework:spring-web to version 6.0.0, 6.2.19, 7.0.8 or higher.

References

medium severity

Open Redirect

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.13.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.13.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Open Redirect via the LoadBalancerDrainingValve.invoke() function. When the LoadBalancerDrainingValve is in the disabled (draining) state, an attacker can redirect users to a malicious attacker-controlled URL.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.116, 10.1.53, 11.0.20 or higher.

References

medium severity

Cross-site Scripting (XSS)

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) via user-controlled values in the cssClass, cssErrorClass, or cssStyle attributes of JSP <form:*> tags. An attacker can inject arbitrary HTML or JavaScript into rendered pages by supplying crafted values for these attributes, potentially leading to cross-site scripting (XSS) and execution of malicious code in the browser of affected users.

Note: This is only exploitable if the application uses user-controlled input to populate the affected JSP form tag attributes.

Details

Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.

This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.

Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.

Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as &lt; and > can be coded as &gt; in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.

The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.

Types of attacks

There are a few methods by which XSS can be manipulated:

Type Origin Description
Stored Server The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link.
Reflected Server The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser.
DOM-based Client The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data.
Mutated The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters.

Affected environments

The following environments are susceptible to an XSS attack:

  • Web servers
  • Application servers
  • Web application environments

How to prevent

This section describes the top best practices designed to specifically protect your code:

  • Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
  • Convert special characters such as ?, &, /, <, > and spaces to their respective HTML or URL encoded equivalents.
  • Give users the option to disable client-side scripts.
  • Redirect invalid requests.
  • Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
  • Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
  • Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.

Remediation

Upgrade org.springframework:spring-webmvc to version 6.0.0, 6.2.19, 7.0.8 or higher.

References

medium severity

Open Redirect

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Open Redirect via view resolution for "/**" mappings without an explicitly specified view name. An attacker can trigger an open redirect by crafting a URL that causes the application to interpret user-controlled input as a view name with the redirect: prefix, resulting in a redirect to an arbitrary external host.

Note: In Spring MVC applications with the same configuration, an attacker can also trigger an internal forward using the forward: prefix.

Remediation

Upgrade org.springframework:spring-webmvc to version 6.0.0, 6.2.19, 7.0.8 or higher.

References

medium severity

Insecure Temporary File

  • Vulnerable module: org.springframework.boot:spring-boot-autoconfigure
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.15.

Overview

Affected versions of this package are vulnerable to Insecure Temporary File via the default data directory configuration in ArtemisEmbeddedConfigurationFactory. A local attacker can tamper with or redirect the embedded Artemis broker's data storage by pre-creating the predictable data directory or replacing it with a symlink before the application starts. This may allow unauthorized access to message data, injection of malicious messages, or further compromise through processing of attacker-controlled broker data.

Note: This is only exploitable by an attacker with local access to the host system before the application initializes the embedded broker.

Remediation

Upgrade org.springframework.boot:spring-boot-autoconfigure to version 3.5.15, 4.0.7, 4.1.0 or higher.

References

medium severity

HTTP Response Splitting

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.13.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Affected versions of this package are vulnerable to HTTP Response Splitting via the Content-Disposition header where the filename parameter value could contain non-printable characters, causing parsing issues for HTTP clients. An attacker can cause the download of files containing malicious commands by injecting content into the response.

Notes:

  1. This is only exploitable if the header is prepared with org.springframework.http.ContentDisposition, the filename is set via ContentDisposition.Builder#filename(String, Charset), the value is derived from unsanitized user input, and the attacker can inject malicious content into the downloaded response.

  2. The vulnerability was also fixed in the 6.0.29 commercial version.

Remediation

Upgrade org.springframework:spring-web to version 6.1.21, 6.2.8 or higher.

References

medium severity

Dual license: EPL-1.0, LGPL-2.1

  • Module: ch.qos.logback:logback-classic
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11

Dual license: EPL-1.0, LGPL-2.1

medium severity

Dual license: EPL-1.0, LGPL-2.1

  • Module: ch.qos.logback:logback-core
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11

Dual license: EPL-1.0, LGPL-2.1

low severity

Server-side Request Forgery (SSRF)

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.3.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.8.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.8.

Overview

ch.qos.logback:logback-core is a logback-core module.

Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) through the SaxEventRecorder process. An attacker can forge requests by compromising logback configuration files in XML.

Remediation

Upgrade ch.qos.logback:logback-core to version 1.3.15, 1.5.13 or higher.

References

low severity

Improper Authorization

  • Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.13.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-tomcat@3.2.0 org.apache.tomcat.embed:tomcat-embed-websocket@10.1.16 org.apache.tomcat.embed:tomcat-embed-core@10.1.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.4.13.

Overview

org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.

Affected versions of this package are vulnerable to Improper Authorization in prepareRequestProtocol(), which accepts HTTP/0.9 requests other than GET. A security constraint configured to allow HEAD requests to a URI but deny GET requests allows a user to bypass the constraint by sending an invalid HEAD request.

Remediation

Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.113, 10.1.50, 11.0.15 or higher.

References

low severity

Improper Handling of Case Sensitivity

  • Vulnerable module: org.springframework:spring-context
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0, io.awspring.cloud:spring-cloud-aws-starter@4.1.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.12.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.3.12.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.12.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.3.12.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.12.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.12.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.3.12.

Overview

Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity due to an incomplete fix for CVE-2024-38820, where it is still possible to bypass the disallowedFields checks.

Note:

This vulnerability was also fixed in commercial versions 6.0.28 and 5.3.43.

Remediation

Upgrade org.springframework:spring-context to version 6.1.20, 6.2.7 or higher.

References

low severity

Improper Handling of Case Sensitivity

  • Vulnerable module: org.springframework:spring-context
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0, io.awspring.cloud:spring-cloud-aws-starter@4.1.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.

Overview

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-context to version 6.1.14 or higher.

References

low severity

Improper Handling of Case Sensitivity

  • Vulnerable module: org.springframework:spring-core
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-core@4.1.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 io.awspring.cloud:spring-cloud-aws-autoconfigure@4.1.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-expression@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-autoconfigure@3.2.0 org.springframework.boot:spring-boot@3.2.0 org.springframework:spring-context@6.1.1 org.springframework:spring-aop@6.1.1 org.springframework:spring-beans@6.1.1 org.springframework:spring-core@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.

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

low severity

Improper Handling of Case Sensitivity

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

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-web to version 6.1.14 or higher.

References

low severity

HTTP Request Smuggling

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.14.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to HTTP Request Smuggling via the static resource resolution and caching mechanism. An attacker can poison the resource cache by sending crafted requests that cause resources to be cached with incorrect encodings when resource chain caching and encoded resource resolution are enabled. This can lead to denial of service by breaking front-end resource loading for subsequent clients.

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

  1. The application is configuring the resource chain support with caching enabled.

  2. The application adds support for encoded resource resolution.

  3. The resource cache must be empty when the attacker has access to the application.

Remediation

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

References

low severity

Improper Handling of Case Sensitivity

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.2.11.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

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-webmvc to version 6.1.14 or higher.

References

low severity

Improper Neutralization of Special Elements in Output Used by a Downstream Component ('Injection')

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.12.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.12.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1 org.springframework:spring-web@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.12.

Overview

org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.

Affected versions of this package are vulnerable to Improper Neutralization of Special Elements in Output Used by a Downstream Component ('Injection'). The vulnerability exists in the handling of Server-Sent Events (SSE) when streaming plain text data. An attacker can inject crafted data into the event stream, breaking message boundaries and corrupting the stream delivered to other clients. By controlling streamed content, an attacker can manipulate how subsequent events are parsed by the client, potentially altering application state or injecting misleading data.

Note:

This is only exploitable if the application streams attacker-controlled data via SSE using unstructured/plain-text messages instead of a structured format (e.g., JSON).

Remediation

Upgrade org.springframework:spring-web to version 6.2.17, 7.0.6 or higher.

References

low severity

Improper Neutralization of Special Elements in Output Used by a Downstream Component ('Injection')

  • Vulnerable module: org.springframework:spring-webmvc
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.2.0

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework:spring-webmvc@6.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.12.

Overview

org.springframework:spring-webmvc is a package that provides Model-View-Controller (MVC) architecture and ready components that can be used to develop flexible and loosely coupled web applications.

Affected versions of this package are vulnerable to Improper Neutralization of Special Elements in Output Used by a Downstream Component ('Injection'). The vulnerability exists in the handling of Server-Sent Events (SSE) when streaming plain text data. An attacker can inject crafted data into the event stream, breaking message boundaries and corrupting the stream delivered to other clients. By controlling streamed content, an attacker can manipulate how subsequent events are parsed by the client, potentially altering application state or injecting misleading data.

Note:

This is only exploitable if the application streams attacker-controlled data via SSE using unstructured/plain-text messages instead of a structured format (e.g., JSON).

Remediation

Upgrade org.springframework:spring-webmvc to version 6.2.17, 7.0.6 or higher.

References

low severity

External Initialization of Trusted Variables or Data Stores

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: io.awspring.cloud:spring-cloud-aws-starter@4.1.0, org.springframework.boot:spring-boot-starter-validation@3.2.0 and others

Detailed paths

  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter io.awspring.cloud:spring-cloud-aws-starter@4.1.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to io.awspring.cloud:spring-cloud-aws-starter@4.1.0.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-validation@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-validation@3.5.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.10.
  • Introduced through: clue2solve/aws-bedrock-springtboot-starter@clue2solve/aws-bedrock-springtboot-starter org.springframework.boot:spring-boot-starter-web@3.2.0 org.springframework.boot:spring-boot-starter-json@3.2.0 org.springframework.boot:spring-boot-starter@3.2.0 org.springframework.boot:spring-boot-starter-logging@3.2.0 ch.qos.logback:logback-classic@1.4.11 ch.qos.logback:logback-core@1.4.11
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.10.

Overview

ch.qos.logback:logback-core is a logback-core module.

Affected versions of this package are vulnerable to External Initialization of Trusted Variables or Data Stores during the configuration file processing. An attacker can instantiate arbitrary classes already present on the class path by compromising an existing configuration file.

Remediation

Upgrade ch.qos.logback:logback-core to version 1.5.25 or higher.

References