Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions agent/build.gradle

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2 Open source vulnerabilities detected - medium severity
Aikido detected 2 vulnerabilities across 2 packages, it includes 2 medium vulnerabilities.

Details

Remediation:

  • Eclipse Jetty — 1 CVE (medium) — fixed in 12.1.10
  • org.eclipse.jetty:jetty-util — 1 CVE (medium) — fixed in 12.1.9

Reply @AikidoSec ignore: [REASON] to ignore this issue.
More info

Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ dependencies {
// Compile only for interface types :
compileOnly 'jakarta.servlet:jakarta.servlet-api:6.1.0' // spring 3 -> jakarta
compileOnly 'javax.servlet:javax.servlet-api:4.0.1' // spring 2 -> javax
compileOnly 'io.projectreactor.netty:reactor-netty-http:1.2.1' // For Spring Webflux
compileOnly 'io.javalin:javalin:6.4.0'
compileOnly 'org.springframework:spring-web:5.3.20'
compileOnly 'io.projectreactor.netty:reactor-netty-http:1.3.7' // For Spring Webflux
compileOnly 'io.javalin:javalin:7.0.0'
compileOnly 'org.springframework:spring-web:6.2.19'

testImplementation 'org.junit.jupiter:junit-jupiter:5.9.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.9.2'
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ subprojects {
options.encoding = 'UTF-8'
}
java {
sourceCompatibility = JavaVersion.VERSION_16
targetCompatibility = JavaVersion.VERSION_16
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
}
Loading