Vulnerabilities

58 via 296 paths

Dependencies

209

Source

GitHub

Find, fix and prevent vulnerabilities in your code.

Issue type
  • 58
  • 10
Severity
  • 4
  • 30
  • 28
  • 6
Status
  • 68
  • 0
  • 0

critical severity
new

Deserialization of Untrusted Data

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: co.elastic.clients:elasticsearch-java@9.1.2 and io.jsonwebtoken:jjwt-jackson@0.13.0

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-databind@2.12.7.1
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.4.3.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api io.jsonwebtoken:jjwt-jackson@0.13.0 com.fasterxml.jackson.core:jackson-databind@2.12.7.1

Overview

com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.

Affected versions of this package are vulnerable to Deserialization of Untrusted Data in the DatabindContext._resolveAndValidateGeneric() method, which validates only the raw container class of a type identifier against the configured PolymorphicTypeValidator and not its nested generic type arguments. An attacker who controls the type identifier can instantiate a denied class, and reach unauthenticated remote code execution through an available gadget, by embedding that class as a generic parameter of an allowlisted container such as java.util.ArrayList<com.evil.Gadget>, which passes validation while the nested type is loaded, instantiated, and populated with attacker-controlled values. Exploitation requires polymorphic type validation to be enabled with a configured validator, the application to deserialize untrusted JSON, and a suitable gadget class on the classpath.

Details

Serialization is a process of converting an object into a sequence of bytes which can be persisted to a disk or database or can be sent through streams. The reverse process of creating object from sequence of bytes is called deserialization. Serialization is commonly used for communication (sharing objects between multiple hosts) and persistence (store the object state in a file or a database). It is an integral part of popular protocols like Remote Method Invocation (RMI), Java Management Extension (JMX), Java Messaging System (JMS), Action Message Format (AMF), Java Server Faces (JSF) ViewState, etc.

Deserialization of untrusted data (CWE-502) is when the application deserializes untrusted data without sufficiently verifying that the resulting data will be valid, thus allowing the attacker to control the state or the flow of the execution.

Remediation

Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.18.8, 2.21.4 or higher.

References

critical severity
new

Incomplete List of Disallowed Inputs

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: co.elastic.clients:elasticsearch-java@9.1.2 and io.jsonwebtoken:jjwt-jackson@0.13.0

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-databind@2.12.7.1
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.4.3.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api io.jsonwebtoken:jjwt-jackson@0.13.0 com.fasterxml.jackson.core:jackson-databind@2.12.7.1

Overview

com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.

Affected versions of this package are vulnerable to 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
new

Deserialization of Untrusted Data

  • Vulnerable module: tools.jackson.core:jackson-databind
  • Introduced through: org.flywaydb:flyway-core@12.5.0, org.flywaydb:flyway-database-postgresql@12.5.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-core@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-database-postgresql@12.5.0 org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-database-postgresql@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-jackson@4.1.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.1.0.

Overview

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 tools.jackson.core:jackson-databind to version 3.1.4 or higher.

References

critical severity
new

Incomplete List of Disallowed Inputs

  • Vulnerable module: tools.jackson.core:jackson-databind
  • Introduced through: org.flywaydb:flyway-core@12.5.0, org.flywaydb:flyway-database-postgresql@12.5.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-core@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-database-postgresql@12.5.0 org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-database-postgresql@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-jackson@4.1.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.1.0.

Overview

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 tools.jackson.core:jackson-databind to version 3.1.4 or higher.

References

high severity

Uncontrolled Recursion

  • Vulnerable module: org.apache.commons:commons-lang3
  • Introduced through: com.microsoft.azure:azure-storage@8.6.6, org.apache.poi:poi-ooxml@5.4.1 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:azure-storage@8.6.6 org.apache.commons:commons-lang3@3.4
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:azure-storage@8.6.6 com.microsoft.azure:azure-keyvault-core@1.2.4 org.apache.commons:commons-lang3@3.4
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.apache.poi:poi-ooxml@5.4.1 org.apache.commons:commons-compress@1.27.1 org.apache.commons:commons-lang3@3.4
    Remediation: Upgrade to org.apache.poi:poi-ooxml@5.5.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-openfeign-core@5.0.2 io.github.openfeign:feign-form-spring@13.6.1 org.apache.commons:commons-text@1.13.0 org.apache.commons:commons-lang3@3.4

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
new

Improper Authentication

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

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-tomcat@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.apache.tomcat.embed:tomcat-embed-websocket@11.0.22 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.springframework.boot:spring-boot-tomcat@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22

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

Out-of-bounds Read

  • Vulnerable module: org.lz4:lz4-java
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch:elasticsearch-lz4@9.1.2 org.lz4:lz4-java@1.8.0
    Remediation: Upgrade to org.elasticsearch:elasticsearch@9.1.9.

Overview

org.lz4:lz4-java is a Java port of the LZ4 compression algorithm and the xxHash hashing algorithm.

Affected versions of this package are vulnerable to Out-of-bounds Read due to the use of the insecure LZ4_decompress_fast in the underlying lz4 library, which lacks bounds checks. An attacker can cause denial of service or access sensitive memory contents by providing specially crafted compressed input.

Workaround

  • Applications using LZ4Factory.nativeInstance() in conjunction with .fastDecompressor() can switch to .safeInstance() or .safeDecompressor().
  • Applications using LZ4Factory.unsafeInstance(), .fastestInstance() or .fastestJavaInstance() can switch to .safeInstance().

Notes

  • The official org.lz4:lz4-java library has not been patched and the project is discontinued.

  • org.lz4:lz4-java:1.8.1 relocates the pacakge to at.yawk.lz4:lz4-java, which is a community-maintained fork of the library that fixes this vulnerability.

Remediation

Upgrade org.lz4:lz4-java to version 1.8.1 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: com.fasterxml.jackson.core:jackson-core
  • Introduced through: co.elastic.clients:elasticsearch-java@9.1.2, com.microsoft.azure:azure-storage@8.6.6 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-core@2.9.4
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.2.7.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:azure-storage@8.6.6 com.fasterxml.jackson.core:jackson-core@2.9.4
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-databind@2.12.7.1 com.fasterxml.jackson.core:jackson-core@2.9.4
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.2.7.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api io.jsonwebtoken:jjwt-jackson@0.13.0 com.fasterxml.jackson.core:jackson-databind@2.12.7.1 com.fasterxml.jackson.core:jackson-core@2.9.4

Overview

com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation

Affected versions of this package are vulnerable to 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: co.elastic.clients:elasticsearch-java@9.1.2, com.microsoft.azure:azure-storage@8.6.6 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-core@2.9.4
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.2.8.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:azure-storage@8.6.6 com.fasterxml.jackson.core:jackson-core@2.9.4
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-databind@2.12.7.1 com.fasterxml.jackson.core:jackson-core@2.9.4
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.2.8.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api io.jsonwebtoken:jjwt-jackson@0.13.0 com.fasterxml.jackson.core:jackson-databind@2.12.7.1 com.fasterxml.jackson.core:jackson-core@2.9.4

Overview

com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling in the enforcement of document length constraints in blocking, async, and DataInput parser processes. An attacker can cause excessive resource consumption by submitting oversized JSON documents that bypass configured size limits.

Remediation

Upgrade com.fasterxml.jackson.core:jackson-core to version 2.18.7, 2.21.2 or higher.

References

high severity

Denial of Service (DoS)

  • Vulnerable module: com.fasterxml.jackson.core:jackson-core
  • Introduced through: co.elastic.clients:elasticsearch-java@9.1.2, com.microsoft.azure:azure-storage@8.6.6 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-core@2.9.4
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.1.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:azure-storage@8.6.6 com.fasterxml.jackson.core:jackson-core@2.9.4
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-databind@2.12.7.1 com.fasterxml.jackson.core:jackson-core@2.9.4
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.1.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api io.jsonwebtoken:jjwt-jackson@0.13.0 com.fasterxml.jackson.core:jackson-databind@2.12.7.1 com.fasterxml.jackson.core:jackson-core@2.9.4

Overview

com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation

Affected versions of this package are vulnerable to Denial of Service (DoS) due to missing input size validation when performing numeric type conversions. A remote attacker can exploit this vulnerability by causing the application to deserialize data containing certain numeric types with large values, causing the application to exhaust all available resources.

Details

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

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

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

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

Two common types of DoS vulnerabilities:

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

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

Remediation

Upgrade com.fasterxml.jackson.core:jackson-core to version 2.15.0-rc1 or higher.

References

high severity

Stack-based Buffer Overflow

  • Vulnerable module: com.fasterxml.jackson.core:jackson-core
  • Introduced through: co.elastic.clients:elasticsearch-java@9.1.2, com.microsoft.azure:azure-storage@8.6.6 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-core@2.9.4
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.1.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:azure-storage@8.6.6 com.fasterxml.jackson.core:jackson-core@2.9.4
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-databind@2.12.7.1 com.fasterxml.jackson.core:jackson-core@2.9.4
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.1.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api io.jsonwebtoken:jjwt-jackson@0.13.0 com.fasterxml.jackson.core:jackson-databind@2.12.7.1 com.fasterxml.jackson.core:jackson-core@2.9.4

Overview

com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation

Affected versions of this package are vulnerable to Stack-based Buffer Overflow due to the parse process, which accepts an unlimited input file with deeply nested data. An attacker can cause a stack overflow and crash the application by providing input files with excessively deep nesting.

Remediation

Upgrade com.fasterxml.jackson.core:jackson-core to version 2.15.0-rc1 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: io.opentelemetry:opentelemetry-api
  • Introduced through: co.elastic.clients:elasticsearch-java@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 io.opentelemetry:opentelemetry-api@1.32.0
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.3.6.

Overview

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via the W3CBaggagePropagator() function. An attacker can cause excessive memory allocation and CPU consumption by sending oversized baggage data, which is automatically re-injected into every outgoing request and can impact downstream services.

Remediation

Upgrade io.opentelemetry:opentelemetry-api to version 1.62.0 or higher.

References

high severity
new

Detection of Error Condition Without Action

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

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-tomcat@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.apache.tomcat.embed:tomcat-embed-websocket@11.0.22 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.springframework.boot:spring-boot-tomcat@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22

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

Use of a Broken or Risky Cryptographic Algorithm

  • Vulnerable module: org.bouncycastle:bcprov-jdk18on
  • Introduced through: org.springframework.cloud:spring-cloud-starter@5.0.2 and org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.bouncycastle:bcprov-jdk18on@1.81.1
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.bouncycastle:bcprov-jdk18on@1.81.1

Overview

Affected versions of this package are vulnerable to Use of a Broken or Risky Cryptographic Algorithm due to the generateCTR process in G3413CTRBlockCipher. An attacker can recover relationships between encrypted plaintext blocks by driving the cipher past its counter range and causing the counter to wrap, which makes the stream repeat and produces identical ciphertext for different blocks. This breaks the confidentiality of data protected with G3413CTRBlockCipher and can expose plaintext patterns or allow plaintext recovery when the same key and IV are reused across enough blocks.

Remediation

Upgrade org.bouncycastle:bcprov-jdk18on to version 1.84 or higher.

References

high severity
new

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.eclipse.parsson:parsson
  • Introduced through: co.elastic.clients:elasticsearch-java@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 org.eclipse.parsson:parsson@1.1.7

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 parser when processing JSON input. An attacker can cause excessive CPU and memory consumption by submitting very large or deeply nested JSON documents, potentially leading to resource exhaustion and service unavailability.

Remediation

Upgrade org.eclipse.parsson:parsson to version 1.1.8 or higher.

References

high severity

Timing Attack

  • Vulnerable module: org.bouncycastle:bcprov-jdk18on
  • Introduced through: org.springframework.cloud:spring-cloud-starter@5.0.2 and org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.bouncycastle:bcprov-jdk18on@1.81.1
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.bouncycastle:bcprov-jdk18on@1.81.1

Overview

Affected versions of this package are vulnerable to Timing Attack through the sample and sample_matrix functions in FrodoEngine.java. An attacker can recover information about the sampled noise values by observing how long Frodo key generation or encapsulation takes when it processes attacker-influenced inputs. The variable-time comparison and sign handling in the error sampler leak the distribution of the generated samples, weakening the secrecy of the private Frodo noise and enabling key-recovery attacks against affected deployments.

Remediation

Upgrade org.bouncycastle:bcprov-jdk18on to version 1.84 or higher.

References

high severity

Insertion of Sensitive Information Into Sent Data

  • Vulnerable module: org.lz4:lz4-java
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch:elasticsearch-lz4@9.1.2 org.lz4:lz4-java@1.8.0

Overview

org.lz4:lz4-java is a Java port of the LZ4 compression algorithm and the xxHash hashing algorithm.

Affected versions of this package are vulnerable to Insertion of Sensitive Information Into Sent Data in the decompression process when the output buffer is reused without being cleared. An attacker can access sensitive information from previous buffer contents by providing crafted compressed input.

Note:

  • JNI implementations are not vulnerable.
  • LZ4Factory.safeInstance(), LZ4Factory.unsafeInstance(), and LZ4Factory.fastestJavaInstance() are all vulnerable.
  • nativeInstance().fastDecompressor() is vulnerable but nativeInstance().safeDecompressor() is not.
  • This vulnerability is distinct from the one described in CVE-2025-12183, and was discovered during follow-up research.

Workaround

This vulnerability can be mitigated by zeroing the output buffer before passing it to the decompression function.

Remediation

There is no fixed version for org.lz4:lz4-java.

References

high severity
new

Incorrect Implementation of Authentication Algorithm

  • Vulnerable module: org.postgresql:postgresql
  • Introduced through: org.postgresql:postgresql@42.7.11

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.postgresql:postgresql@42.7.11
    Remediation: Upgrade to org.postgresql:postgresql@42.7.12.

Overview

org.postgresql:postgresql is a Java JDBC 4.2 (JRE 8+) driver for PostgreSQL database.

Affected versions of this package are vulnerable to Incorrect Implementation of Authentication Algorithm in the ScramAuthenticator class, which fails open by confirming only that the server advertised a -PLUS mechanism while neither rejecting an empty channel binding nor verifying that the negotiated mechanism actually uses channel binding. An attacker intercepting the TLS connection can strip the MitM protection that channelBinding=require is meant to guarantee, downgrading authentication from SCRAM-SHA-256-PLUS to plain SCRAM-SHA-256, by presenting a certificate with a signature algorithm such as Ed25519, Ed448, or a post-quantum scheme that makes the bundled scram-client return an empty binding instead of failing. This affects only connections that explicitly set channelBinding=require, since the default prefer policy documents fallback as expected behavior.

Workaround

This vulnerability can be avoided by configuring the connection with sslmode=verify-full and a restrictive truststore, which provides equivalent MitM protection independent of channel binding.

Remediation

Upgrade org.postgresql:postgresql to version 42.7.12 or higher.

References

high severity

Improper Encoding or Escaping of Output

  • Vulnerable module: org.apache.logging.log4j:log4j-core
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.apache.logging.log4j:log4j-core@2.19.0
    Remediation: Upgrade to org.elasticsearch:elasticsearch@9.3.5.

Overview

org.apache.logging.log4j:log4j-core is a logging library for Java.

Affected versions of this package are vulnerable to Improper Encoding or Escaping of Output in the XmlLayout plugin. An attacker can cause log events to be silently lost or malformed by injecting XML 1.0 forbidden characters into log messages or MDC values. This may result in malformed XML output, which can cause downstream log-processing systems to drop affected records or prevent log events from being delivered to their intended destinations.

Remediation

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

References

high severity

Improper Encoding or Escaping of Output

  • Vulnerable module: org.apache.logging.log4j:log4j-core
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.apache.logging.log4j:log4j-core@2.19.0
    Remediation: Upgrade to org.elasticsearch:elasticsearch@9.3.5.

Overview

org.apache.logging.log4j:log4j-core is a logging library for Java.

Affected versions of this package are vulnerable to Improper Encoding or Escaping of Output in the Log4j1XmlLayout plugin. An attacker can cause log events to be silently lost or downstream log processing systems to drop or fail to index affected records by introducing XML 1.0 forbidden characters into log messages, resulting in malformed XML output that conforming XML parsers reject with a fatal error.

Remediation

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

References

high severity

Denial of Service (DoS)

  • Vulnerable module: ch.qos.logback:logback-classic
  • Introduced through: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter@5.0.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2.

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: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter@5.0.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2.

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: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter@5.0.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2.

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: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter@5.0.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2.

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
new

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.apache.httpcomponents.core5:httpcore5-h2
  • Introduced through: org.apache.httpcomponents.core5:httpcore5-h2@5.4.2, org.apache.httpcomponents.client5:httpclient5@5.6.1 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.apache.httpcomponents.core5:httpcore5-h2@5.4.2
    Remediation: Upgrade to org.apache.httpcomponents.core5:httpcore5-h2@5.4.3.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.apache.httpcomponents.client5:httpclient5@5.6.1 org.apache.httpcomponents.core5:httpcore5-h2@5.4.2
    Remediation: Upgrade to org.apache.httpcomponents.client5:httpclient5@5.6.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 org.apache.httpcomponents.client5:httpclient5@5.6.1 org.apache.httpcomponents.core5:httpcore5-h2@5.4.2
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.2.5.

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
new

Uncontrolled Recursion

  • Vulnerable module: org.elasticsearch:elasticsearch
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2
    Remediation: Upgrade to org.elasticsearch:elasticsearch@9.3.6.

Overview

org.elasticsearch:elasticsearch is a Distributed, RESTful Search Engine.

Affected versions of this package are vulnerable to Uncontrolled Recursion in the query processing. An authenticated attacker can submit a specially crafted query that causes excessive resource consumption during processing, which may render the affected node unavailable.

Remediation

Upgrade org.elasticsearch:elasticsearch to version 8.19.17, 9.3.6, 9.4.3 or higher.

References

high severity
new

Expression Injection

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3

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

high severity

AGPL-3.0 license

  • Module: org.elasticsearch:elasticsearch-entitlement
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch:elasticsearch-entitlement@9.1.2

AGPL-3.0 license

high severity

AGPL-3.0 license

  • Module: org.elasticsearch:elasticsearch-grok
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch:elasticsearch-grok@9.1.2

AGPL-3.0 license

high severity

AGPL-3.0 license

  • Module: org.elasticsearch:elasticsearch-logging
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch:elasticsearch-logging@9.1.2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch:elasticsearch-cli@9.1.2 org.elasticsearch:elasticsearch-logging@9.1.2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch:elasticsearch-native@9.1.2 org.elasticsearch:elasticsearch-logging@9.1.2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch:elasticsearch-simdvec@9.1.2 org.elasticsearch:elasticsearch-logging@9.1.2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch:elasticsearch-simdvec@9.1.2 org.elasticsearch:elasticsearch-native@9.1.2 org.elasticsearch:elasticsearch-logging@9.1.2

AGPL-3.0 license

high severity

AGPL-3.0 license

  • Module: org.elasticsearch:elasticsearch-native
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch:elasticsearch-native@9.1.2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch:elasticsearch-simdvec@9.1.2 org.elasticsearch:elasticsearch-native@9.1.2

AGPL-3.0 license

high severity

AGPL-3.0 license

  • Module: org.elasticsearch:elasticsearch-simdvec
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch:elasticsearch-simdvec@9.1.2

AGPL-3.0 license

high severity

AGPL-3.0 license

  • Module: org.elasticsearch.plugin:elasticsearch-plugin-analysis-api
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch.plugin:elasticsearch-plugin-analysis-api@9.1.2

AGPL-3.0 license

high severity

AGPL-3.0 license

  • Module: org.elasticsearch.plugin:elasticsearch-plugin-api
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch.plugin:elasticsearch-plugin-api@9.1.2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.elasticsearch.plugin:elasticsearch-plugin-analysis-api@9.1.2 org.elasticsearch.plugin:elasticsearch-plugin-api@9.1.2

AGPL-3.0 license

medium severity
new

Improperly Controlled Modification of Dynamically-Determined Object Attributes

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: co.elastic.clients:elasticsearch-java@9.1.2 and io.jsonwebtoken:jjwt-jackson@0.13.0

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-databind@2.12.7.1
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api io.jsonwebtoken:jjwt-jackson@0.13.0 com.fasterxml.jackson.core:jackson-databind@2.12.7.1

Overview

com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.

Affected versions of this package are vulnerable to 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
new

Server-side Request Forgery (SSRF)

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: co.elastic.clients:elasticsearch-java@9.1.2 and io.jsonwebtoken:jjwt-jackson@0.13.0

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-databind@2.12.7.1
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.4.3.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api io.jsonwebtoken:jjwt-jackson@0.13.0 com.fasterxml.jackson.core:jackson-databind@2.12.7.1

Overview

com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.

Affected versions of this package are vulnerable to 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
new

Always-Incorrect Control Flow Implementation

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

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-tomcat@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.apache.tomcat.embed:tomcat-embed-websocket@11.0.22 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.springframework.boot:spring-boot-tomcat@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22

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

LDAP Injection

  • Vulnerable module: org.bouncycastle:bcprov-jdk18on
  • Introduced through: org.springframework.cloud:spring-cloud-starter@5.0.2 and org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.bouncycastle:bcprov-jdk18on@1.81.1
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.bouncycastle:bcprov-jdk18on@1.81.1

Overview

Affected versions of this package are vulnerable to LDAP Injection via the parseDN handling and the LDAP store helpers in X509LDAPCertStoreSpi and LDAPStoreHelper. An attacker can influence LDAP search filters by supplying a crafted X.500 subject or issuer string that is parsed into an unescaped filter value. This lets the attacker alter the directory query used to locate certificates and CRLs, causing the application to retrieve incorrect LDAP entries or fail to find the intended ones, which can break certificate validation and revocation checks.

Remediation

Upgrade org.bouncycastle:bcprov-jdk18on to version 1.84 or higher.

References

medium severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.elasticsearch:elasticsearch
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2
    Remediation: Upgrade to org.elasticsearch:elasticsearch@9.1.8.

Overview

org.elasticsearch:elasticsearch is a Distributed, RESTful Search Engine.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling in the snapshot restore request due to improper length validation for rename_replacement. An attacker can exhaust system memory and disrupt service availability by sending specially crafted HTTP requests.

Note:

This is only exploitable if the attacker has authenticated access with snapshot restore privileges.

Remediation

Upgrade org.elasticsearch:elasticsearch to version 8.19.8, 9.1.8, 9.2.2 or higher.

References

medium severity
new

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: org.elasticsearch:elasticsearch
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2
    Remediation: Upgrade to org.elasticsearch:elasticsearch@9.3.6.

Overview

org.elasticsearch:elasticsearch is a Distributed, RESTful Search Engine.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via the machine learning request process. An attacker can exhaust system memory and render the affected node unavailable by submitting specially crafted requests with elevated privileges.

Remediation

Upgrade org.elasticsearch:elasticsearch to version 8.19.17, 9.3.6, 9.4.3 or higher.

References

medium severity

Insertion of Sensitive Information into Log File

  • Vulnerable module: org.elasticsearch:elasticsearch
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2
    Remediation: Upgrade to org.elasticsearch:elasticsearch@9.1.5.

Overview

org.elasticsearch:elasticsearch is a Distributed, RESTful Search Engine.

Affected versions of this package are vulnerable to Insertion of Sensitive Information into Log File via the reindex request due to redacting certain fields from the body of rest requests in audit logs. An attacker can obtain sensitive information by triggering audit logs that capture confidential data during request processing.

Remediation

Upgrade org.elasticsearch:elasticsearch to version 8.18.8, 8.19.5, 9.0.8, 9.1.5 or higher.

References

medium severity
new

Improperly Controlled Modification of Dynamically-Determined Object Attributes

  • Vulnerable module: tools.jackson.core:jackson-databind
  • Introduced through: org.flywaydb:flyway-core@12.5.0, org.flywaydb:flyway-database-postgresql@12.5.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-core@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-database-postgresql@12.5.0 org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-database-postgresql@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-jackson@4.1.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.1.0.

Overview

Affected versions of this package are vulnerable to Improperly Controlled Modification of Dynamically-Determined Object Attributes in the POJOPropertiesCollector._renameProperties() and BeanDeserializerFactory.addBeanProps() methods, which rename rather than drop a property whose getter carries @JsonProperty and whose setter carries @JsonIgnore, leaving the private backing field writable. An attacker can write a field that was meant to be unsettable, enabling property tampering and mass assignment, by supplying the renamed JSON key during deserialization, because the factory observes hasField()==true and builds a writable FieldProperty for the backing field. Exploitation requires MapperFeature.INFER_PROPERTY_MUTATORS to be enabled, which is the default, and a target type that pairs a renamed getter with an ignored setter, and the impact is limited to writing existing fields with no path to remote code execution.

Remediation

Upgrade tools.jackson.core:jackson-databind to version 3.1.4 or higher.

References

medium severity
new

Improperly Controlled Modification of Dynamically-Determined Object Attributes

  • Vulnerable module: tools.jackson.core:jackson-databind
  • Introduced through: org.flywaydb:flyway-core@12.5.0, org.flywaydb:flyway-database-postgresql@12.5.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-core@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-database-postgresql@12.5.0 org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-database-postgresql@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-jackson@4.1.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.1.0.

Overview

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 tools.jackson.core:jackson-databind to version 3.1.4 or higher.

References

medium severity
new

Server-side Request Forgery (SSRF)

  • Vulnerable module: tools.jackson.core:jackson-databind
  • Introduced through: org.flywaydb:flyway-core@12.5.0, org.flywaydb:flyway-database-postgresql@12.5.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-core@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-database-postgresql@12.5.0 org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-database-postgresql@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-jackson@4.1.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.1.0.

Overview

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 tools.jackson.core:jackson-databind to version 3.1.4 or higher.

References

medium severity
new

Deserialization of Untrusted Data

  • Vulnerable module: ch.qos.logback:logback-classic
  • Introduced through: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter@5.0.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2.

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
new

Deserialization of Untrusted Data

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter@5.0.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2.

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
new

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: com.fasterxml.jackson.core:jackson-databind
  • Introduced through: co.elastic.clients:elasticsearch-java@9.1.2 and io.jsonwebtoken:jjwt-jackson@0.13.0

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-databind@2.12.7.1
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.1.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api io.jsonwebtoken:jjwt-jackson@0.13.0 com.fasterxml.jackson.core:jackson-databind@2.12.7.1

Overview

com.fasterxml.jackson.core:jackson-databind is a library which contains the general-purpose data-binding functionality and tree-model for Jackson Data Processor.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling in the JsonNode.toString() method, which serializes nested node structure recursively without a depth limit. An attacker can crash the application with a StackOverflowError by submitting deeply nested JSON, around 1000 levels in a payload of roughly 2 kB, to a service that parses it with ObjectMapper.readTree() and then serializes the result through JsonNode.toString().

Remediation

Upgrade com.fasterxml.jackson.core:jackson-databind to version 2.14.0-rc1 or higher.

References

medium severity
new

Improper Encoding or Escaping of Output

  • Vulnerable module: org.apache.logging.log4j:log4j-api
  • Introduced through: org.apache.poi:poi@5.4.1, org.apache.poi:poi-scratchpad@5.4.1 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.apache.poi:poi@5.4.1 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.apache.poi:poi-scratchpad@5.4.1 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.apache.poi:poi-scratchpad@5.4.1 org.apache.poi:poi@5.4.1 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.apache.logging.log4j:log4j-core@2.19.0 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 org.apache.logging.log4j:log4j-to-slf4j@2.25.4 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 org.apache.logging.log4j:log4j-to-slf4j@2.25.4 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 org.apache.logging.log4j:log4j-to-slf4j@2.25.4 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 org.apache.logging.log4j:log4j-to-slf4j@2.25.4 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 org.apache.logging.log4j:log4j-to-slf4j@2.25.4 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 org.apache.logging.log4j:log4j-to-slf4j@2.25.4 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 org.apache.logging.log4j:log4j-to-slf4j@2.25.4 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 org.apache.logging.log4j:log4j-to-slf4j@2.25.4 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 org.apache.logging.log4j:log4j-to-slf4j@2.25.4 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 org.apache.logging.log4j:log4j-to-slf4j@2.25.4 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 org.apache.logging.log4j:log4j-to-slf4j@2.25.4 org.apache.logging.log4j:log4j-api@3.0.0-beta2
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 org.apache.logging.log4j:log4j-to-slf4j@2.25.4 org.apache.logging.log4j:log4j-api@3.0.0-beta2

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

Improper Validation of Certificate with Host Mismatch

  • Vulnerable module: org.apache.logging.log4j:log4j-core
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.apache.logging.log4j:log4j-core@2.19.0
    Remediation: Upgrade to org.elasticsearch:elasticsearch@9.3.5.

Overview

org.apache.logging.log4j:log4j-core is a logging library for Java.

Affected versions of this package are vulnerable to Improper Validation of Certificate with Host Mismatch due to the lack of TLS hostname verification in the SocketAppender component. An attacker can intercept or redirect log traffic by performing a man-in-the-middle attack if they are able to intercept or redirect network traffic between the client and the log receiver and can present a server certificate issued by a certification authority trusted by the configured trust store or the default Java trust store.

Workaround

This vulnerability can be mitigated by configuring the SocketAppender to use a private or restricted trust root to limit the set of trusted certificates.

Remediation

Upgrade org.apache.logging.log4j:log4j-core to version 2.25.3 or higher.

References

medium severity

Improper Validation of Certificate with Host Mismatch

  • Vulnerable module: org.apache.logging.log4j:log4j-core
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.apache.logging.log4j:log4j-core@2.19.0
    Remediation: Upgrade to org.elasticsearch:elasticsearch@9.3.5.

Overview

org.apache.logging.log4j:log4j-core is a logging library for Java.

Affected versions of this package are vulnerable to Improper Validation of Certificate with Host Mismatch due to the lack of TLS hostname verification in the SocketAppender component when configured through the verifyHostName attribute of the <Ssl> element. An attacker can intercept and manipulate network traffic by presenting a certificate issued by a trusted certificate authority to the appender's configured trust store, or the default Java trust store if none is configured. This is only exploitable if an SMTP, Socket, or Syslog appender is in use and TLS is configured via a nested element.

Note:

This issue is due to incomplete fix for CVE-2025-68161.

Remediation

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

References

medium severity

Improper Neutralization of Special Elements

  • Vulnerable module: ch.qos.logback:logback-classic
  • Introduced through: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter@5.0.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2.

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: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter@5.0.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2.

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: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter@5.0.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2.

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
new

Always-Incorrect Control Flow Implementation

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

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-tomcat@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.apache.tomcat.embed:tomcat-embed-websocket@11.0.22 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.springframework.boot:spring-boot-tomcat@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22

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
new

Improper Authorization

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

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-tomcat@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.apache.tomcat.embed:tomcat-embed-websocket@11.0.22 org.apache.tomcat.embed:tomcat-embed-core@11.0.22
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0 org.springframework.boot:spring-boot-tomcat@4.1.0 org.apache.tomcat.embed:tomcat-embed-core@11.0.22

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
new

Incorrect Authorization

  • Vulnerable module: tools.jackson.core:jackson-databind
  • Introduced through: org.flywaydb:flyway-core@12.5.0, org.flywaydb:flyway-database-postgresql@12.5.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-core@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-database-postgresql@12.5.0 org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-database-postgresql@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-jackson@4.1.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.1.0.

Overview

Affected versions of this package are vulnerable to Incorrect Authorization in the BeanDeserializer._deserializeUsingPropertyBased method, whose property-buffering branch omits the prop.visibleInView(activeView) check that the creator-property branch performs. An attacker can populate view-restricted setterless collection or map properties, such as admin-only fields, from untrusted JSON by supplying values for them during deserialization, bypassing @JsonView protection. This affects only setterless collection or map properties annotated with a restricted @JsonView and reached through the property-based creator path.

Remediation

Upgrade tools.jackson.core:jackson-databind to version 3.1.4 or higher.

References

medium severity
new

Incorrect Authorization

  • Vulnerable module: tools.jackson.core:jackson-databind
  • Introduced through: org.flywaydb:flyway-core@12.5.0, org.flywaydb:flyway-database-postgresql@12.5.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-core@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.flywaydb:flyway-database-postgresql@12.5.0 org.flywaydb:flyway-core@12.5.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.flywaydb:flyway-database-postgresql@12.10.0.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-jackson@4.1.0 tools.jackson.core:jackson-databind@3.1.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.1.0.

Overview

Affected versions of this package are vulnerable to Incorrect Authorization in the UnwrappedPropertyHandler.processUnwrappedCreatorProperties() method, which replays buffered JSON into creator parameters without consulting prop.visibleInView(activeView). An attacker can set view-restricted constructor parameters annotated with both @JsonView and @JsonUnwrapped, such as admin-only fields, from untrusted JSON by supplying them during deserialization while a more restrictive view is active, defeating the @JsonView write-side authorization boundary.

Remediation

Upgrade tools.jackson.core:jackson-databind to version 3.1.4 or higher.

References

medium severity

Information Exposure

  • Vulnerable module: com.fasterxml.jackson.core:jackson-core
  • Introduced through: co.elastic.clients:elasticsearch-java@9.1.2, com.microsoft.azure:azure-storage@8.6.6 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-core@2.9.4
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.1.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:azure-storage@8.6.6 com.fasterxml.jackson.core:jackson-core@2.9.4
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api co.elastic.clients:elasticsearch-java@9.1.2 com.fasterxml.jackson.core:jackson-databind@2.12.7.1 com.fasterxml.jackson.core:jackson-core@2.9.4
    Remediation: Upgrade to co.elastic.clients:elasticsearch-java@9.1.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api io.jsonwebtoken:jjwt-jackson@0.13.0 com.fasterxml.jackson.core:jackson-databind@2.12.7.1 com.fasterxml.jackson.core:jackson-core@2.9.4

Overview

com.fasterxml.jackson.core:jackson-core is a Core Jackson abstractions, basic JSON streaming API implementation

Affected versions of this package are vulnerable to Information Exposure due to the JsonLocation._appendSourceDesc method. An attacker can access up to 500 bytes of unintended memory content by exploiting exception messages that incorrectly read from the beginning of a byte array instead of the logical payload start.

Workaround

This vulnerability can be mitigated by disabling exception message exposure to clients to avoid returning parsing exception messages in HTTP responses and/or disabling source inclusion in exceptions to prevent Jackson from embedding any source content in exception messages, avoiding leakage.

PoC


byte[] buffer = new byte[1000];
System.arraycopy("SECRET".getBytes(), 0, buffer, 0, 6);
System.arraycopy("{ \"bad\": }".getBytes(), 0, buffer, 700, 10);

JsonFactory factory = new JsonFactory();
JsonParser parser = factory.createParser(buffer, 700, 20);
parser.nextToken(); // throws exception

// Exception message will include "SECRET"

Remediation

Upgrade com.fasterxml.jackson.core:jackson-core to version 2.13.0-rc1 or higher.

References

medium severity

Insufficient Hostname Verification

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter@5.0.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2.

Overview

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

Affected versions of this package are vulnerable to Insufficient Hostname Verification. X.509 are not properly validated. By spoofing the TLS/SSL server via a certificate that appears valid, an attacker with the ability to intercept network traffic (e.g. MitM, DNS cache poisoning) can disclose and optionally manipulate transmitted data.

Remediation

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

References

medium severity

Dual license: EPL-1.0, LGPL-2.1

  • Module: ch.qos.logback:logback-classic
  • Introduced through: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3

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: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3

Dual license: EPL-1.0, LGPL-2.1

medium severity

LGPL-2.1 license

  • Module: org.hibernate.orm:hibernate-core
  • Introduced through: org.hibernate.orm:hibernate-core@6.6.50.Final and org.springframework.boot:spring-boot-starter-data-jpa@4.1.0

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.hibernate.orm:hibernate-core@6.6.50.Final
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-data-jpa@4.1.0 org.springframework.boot:spring-boot-hibernate@4.1.0 org.hibernate.orm:hibernate-core@6.6.50.Final

LGPL-2.1 license

low severity

Creation of Temporary File in Directory with Insecure Permissions

  • Vulnerable module: com.google.guava:guava
  • Introduced through: com.microsoft.azure:azure-storage@8.6.6

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:azure-storage@8.6.6 com.microsoft.azure:azure-keyvault-core@1.2.4 com.google.guava:guava@24.1.1-jre

Overview

com.google.guava:guava is a set of core libraries that includes new collection types (such as multimap and multiset,immutable collections, a graph library, functional types, an in-memory cache and more.

Affected versions of this package are vulnerable to Creation of Temporary File in Directory with Insecure Permissions due to the use of Java's default temporary directory for file creation in FileBackedOutputStream. Other users and apps on the machine with access to the default Java temporary directory can access the files created by this class. This more fully addresses the underlying issue described in CVE-2020-8908, by deprecating the permissive temp file creation behavior.

NOTE: Even though the security vulnerability is fixed in version 32.0.0, the maintainers recommend using version 32.0.1, as version 32.0.0 breaks some functionality under Windows.

Remediation

Upgrade com.google.guava:guava to version 32.0.0-android, 32.0.0-jre or higher.

References

low severity

Information Disclosure

  • Vulnerable module: com.google.guava:guava
  • Introduced through: com.microsoft.azure:azure-storage@8.6.6

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:azure-storage@8.6.6 com.microsoft.azure:azure-keyvault-core@1.2.4 com.google.guava:guava@24.1.1-jre

Overview

com.google.guava:guava is a set of core libraries that includes new collection types (such as multimap and multiset,immutable collections, a graph library, functional types, an in-memory cache and more.

Affected versions of this package are vulnerable to Information Disclosure. The file permissions on the file created by com.google.common.io.Files.createTempDir allow an attacker running a malicious program co-resident on the same machine to steal secrets stored in this directory. This is because, by default, on unix-like operating systems the /tmp directory is shared between all users, so if the correct file permissions aren't set by the directory/file creator, the file becomes readable by all other users on that system.

PoC

File guavaTempDir = com.google.common.io.Files.createTempDir();
System.out.println("Guava Temp Dir: " + guavaTempDir.getName());
runLS(guavaTempDir.getParentFile(), guavaTempDir); // Prints the file permissions -> drwxr-xr-x
File child = new File(guavaTempDir, "guava-child.txt");
child.createNewFile();
runLS(guavaTempDir, child); // Prints the file permissions -> -rw-r--r--

For Android developers, choosing a temporary directory API provided by Android is recommended, such as context.getCacheDir(). For other Java developers, we recommend migrating to the Java 7 API java.nio.file.Files.createTempDirectory() which explicitly configures permissions of 700, or configuring the Java runtime's java.io.tmpdir system property to point to a location whose permissions are appropriately configured.

Remediation

There is no fix for com.google.guava:guava. However, in version 30.0 and above, the vulnerable functionality has been deprecated. In oder to mitigate this vulnerability, upgrade to version 30.0 or higher and ensure your dependencies don't use the createTempDir or createTempFile methods.

References

low severity

Server-side Request Forgery (SSRF)

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter@5.0.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2.

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
new

Memory Allocation with Excessive Size Value

  • Vulnerable module: org.hdrhistogram:HdrHistogram
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.hdrhistogram:HdrHistogram@2.1.9

Overview

Affected versions of this package are vulnerable to Memory Allocation with Excessive Size Value in the decodeFromByteBuffer function due to improper handling of the numberOfSignificantValueDigits argument. An attacker can cause excessive memory consumption by supplying crafted input.

Notes:

  • The issue describes parameters “from Untrusted Buffer,” but the PoC never decodes a buffer. It invokes the public constructor directly, which does not prove the decode API is exploitable end-to-end as claimed.
  • The library does pass decoded header parameters into a constructor without an explicit memory budget check, which could allow moderate allocation pressure if an application decodes untrusted histogram bytes.
  • That is a narrower, lower-severity concern than the submitted OOM-DoS narrative, and it remains undemonstrated by this PoC.

Remediation

There is no fixed version for org.hdrhistogram:HdrHistogram.

References

low severity
new

Memory Allocation with Excessive Size Value

  • Vulnerable module: org.hdrhistogram:HdrHistogram
  • Introduced through: org.elasticsearch:elasticsearch@9.1.2

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.elasticsearch:elasticsearch@9.1.2 org.hdrhistogram:HdrHistogram@2.1.9

Overview

Affected versions of this package are vulnerable to Memory Allocation with Excessive Size Value in the decodeFromCompressedByteBuffer function due to improper handling of the lengthOfCompressedContents argument. An attacker can cause excessive memory allocation by supplying a crafted compressed byte buffer, potentially leading to application instability or denial of service.

Notes:

  • lengthOfCompressedContents is read from the buffer and used directly for allocation/decompression input without bounds validation (AbstractHistogram.java 2275–2283). The same unchecked length is passed on the array-backed path (line 2279).
  • The issue uses allocateDirect to reach the new byte[lengthOfCompressedContents] branch. Typical log parsing uses ByteBuffer.wrap, so the heap-allocating path is not the default for .hlog ingestion, though the public API allows direct buffers.

Remediation

There is no fixed version for org.hdrhistogram:HdrHistogram.

References

low severity

External Initialization of Trusted Variables or Data Stores

  • Vulnerable module: ch.qos.logback:logback-core
  • Introduced through: com.microsoft.azure:applicationinsights-logging-logback@2.6.4, org.springframework.boot:spring-boot-starter-cache@4.1.0 and others

Detailed paths

  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api com.microsoft.azure:applicationinsights-logging-logback@2.6.4 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-cache@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-validation@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter@5.0.2.
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-data-jpa@4.1.0 org.springframework.boot:spring-boot-starter-jdbc@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-client@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-oauth2-resource-server@4.1.0 org.springframework.boot:spring-boot-starter-security@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-jackson@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.boot:spring-boot-starter-web@4.1.0 org.springframework.boot:spring-boot-starter-tomcat@4.1.0 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
  • Introduced through: hmcts/ccd-definition-store-api@hmcts/ccd-definition-store-api org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2 org.springframework.cloud:spring-cloud-starter@5.0.2 org.springframework.boot:spring-boot-starter@4.0.7 org.springframework.boot:spring-boot-starter-logging@4.0.7 ch.qos.logback:logback-classic@1.2.3 ch.qos.logback:logback-core@1.2.3
    Remediation: Upgrade to org.springframework.cloud:spring-cloud-starter-openfeign@5.0.2.

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