I am trying to build a spring security with basic authentication.
I use
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-springsecurity5</artifactId>
</dependency>
dependencies in maven.
When I load the dependencies, Intellij highlights the spring-boot-starter-security dependency in the pom file. Intellij explains the warning as follows:
Provides transitive vulnerable dependency org.springframework.security:spring-security-core:5.6.2
Why does this occur? Is this a big deal? Should I ignore it?