Skip to content

Commit 1656e72

Browse files
authored
CVE-2024-8184 Eclipse Jetty's ThreadLimitHandler.getRemote() vulnerable to remote DoS attacks (#51)
1 parent 8d819fb commit 1656e72

File tree

3 files changed

+22
-5
lines changed

3 files changed

+22
-5
lines changed

OpenICF-groovy-connector/pom.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
with the fields enclosed by brackets [] replaced by
2222
your own identifying information:
2323
"Portions Copyrighted [year] [name of copyright owner]"
24+
25+
Portions Copyrighted 2018-2024 3A Systems, LLC
2426
-->
2527
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2628
<modelVersion>4.0.0</modelVersion>
@@ -187,7 +189,6 @@
187189
<dependency>
188190
<groupId>org.eclipse.jetty</groupId>
189191
<artifactId>jetty-server</artifactId>
190-
<version>9.4.51.v20230217</version>
191192
<scope>test</scope>
192193
</dependency>
193194

OpenICF-java-framework/connector-server-jetty/pom.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@
2121
with the fields enclosed by brackets [] replaced by
2222
your own identifying information:
2323
"Portions Copyrighted [year] [name of copyright owner]"
24+
25+
Portions Copyrighted 2018-2024 3A Systems, LLC
2426
-->
2527
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2628
<parent>
@@ -38,7 +40,6 @@
3840
</description>
3941

4042
<properties>
41-
<jetty.version>9.4.55.v20240627</jetty.version>
4243
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
4344
</properties>
4445

@@ -51,7 +52,6 @@
5152
<dependency>
5253
<groupId>org.eclipse.jetty.websocket</groupId>
5354
<artifactId>websocket-server</artifactId>
54-
<version>${jetty.version}</version>
5555
<scope>provided</scope>
5656
</dependency>
5757
<dependency>
@@ -100,13 +100,11 @@
100100
<dependency>
101101
<groupId>org.eclipse.jetty</groupId>
102102
<artifactId>jetty-servlet</artifactId>
103-
<version>${jetty.version}</version>
104103
<scope>test</scope>
105104
</dependency>
106105
<dependency>
107106
<groupId>org.eclipse.jetty</groupId>
108107
<artifactId>jetty-server</artifactId>
109-
<version>${jetty.version}</version>
110108
<scope>test</scope>
111109
</dependency>
112110
</dependencies>

pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,24 @@
305305
<version>1.2.0</version>
306306
<scope>test</scope>
307307
</dependency>
308+
<dependency>
309+
<groupId>org.eclipse.jetty</groupId>
310+
<artifactId>jetty-servlet</artifactId>
311+
<version>9.4.56.v20240826</version>
312+
<scope>test</scope>
313+
</dependency>
314+
<dependency>
315+
<groupId>org.eclipse.jetty</groupId>
316+
<artifactId>jetty-server</artifactId>
317+
<version>9.4.56.v20240826</version>
318+
<scope>test</scope>
319+
</dependency>
320+
<dependency>
321+
<groupId>org.eclipse.jetty.websocket</groupId>
322+
<artifactId>websocket-server</artifactId>
323+
<version>9.4.56.v20240826</version>
324+
<scope>provided</scope>
325+
</dependency>
308326
</dependencies>
309327
</dependencyManagement>
310328
<build>

0 commit comments

Comments
 (0)