Skip to content
Open
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
13 changes: 12 additions & 1 deletion 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.

CVE-2026-10051 in Eclipse Jetty - medium severity
In Eclipse Jetty, a first HTTP/1.1 request with trailers causes the server to retain the trailers in subsequent requests performed over the same connection.
Subsequent request that do not have trailers report the trailers of the first request.
Subsequent request that do have trailers report the union of trailers of the first request and the current request.

Details

Remediation Aikido suggests bumping this package to version 12.0.36 to resolve this issue

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

Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,18 @@ dependencies {
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 'org.springframework:spring-web:6.2.19'
constraints {
implementation('org.springframework:spring-core:6.2.19')
implementation('org.springframework:spring-webmvc:6.2.19')
implementation('org.springframework:spring-beans:6.2.19')
implementation('org.springframework:spring-expression:6.2.19')
implementation('org.springframework:spring-context:6.2.19')
implementation('org.eclipse.jetty:jetty-server:12.0.35')
implementation('org.eclipse.jetty:jetty-http:12.0.35')
implementation('io.netty:netty-codec-http2:4.1.136.Final')
implementation('org.jetbrains.kotlin:kotlin-stdlib:2.1.0')
}
}

shadowJar {
Expand Down
Loading