Skip to content

Commit

Permalink
Logback 1.4.12 in performance test project to fix CVE-2023-6378 (#3746)
Browse files Browse the repository at this point in the history
Use Logback 1.4.12 in the performance test project to fix CVE-2023-6378. Resolves #3729
Use Logback 1.4.12 in the sample analytics project to fix CVE-2023-6378. Resolves #3729

Signed-off-by: David Venable <[email protected]>
  • Loading branch information
dlvenable authored Dec 6, 2023
1 parent 824b72b commit ea8e330
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ configurations.all {
} else if (details.requested.group == 'org.apache.tomcat.embed') {
details.useVersion '10.1.14'
details.because('Fixes CVE-2023-44487')
} else if (details.requested.group == 'ch.qos.logback') {
details.useVersion '1.4.12'
details.because('Fixes CVE-2023-6378')
}
}
}
Expand Down
12 changes: 12 additions & 0 deletions performance-test/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,18 @@ dependencies {
testRuntimeOnly testLibs.junit.engine

constraints {
gatling('ch.qos.logback:logback-classic') {
version {
require '1.4.12'
}
because 'Fixes CVE-2023-6378'
}
gatling('ch.qos.logback:logback-core') {
version {
require '1.4.12'
}
because 'Keeps the version synced with logback-classic.'
}
zinc('org.scala-sbt:io_2.13') {
version {
require '1.9.7'
Expand Down

0 comments on commit ea8e330

Please sign in to comment.