In Eclipse Jetty, versions <=9.4.57, <=10.0.25, <=11.0.25, <=12.0.21, <=12.1.0.alpha2, an HTTP/2 client may trigger the server to send RST_STREAM frames, for example by sending frames that are malformed or that should not be sent in a particular stream state, therefore forcing the server to consume resources such as CPU and memory.
For example, a client can open a stream and then send WINDOW_UPDATE frames with window size increment of 0, which is illegal. Per specification https://www.rfc-editor.org/rfc/rfc9113.html#name-window_update , the server should send a RST_STREAM frame. The client can now open another stream and send another bad WINDOW_UPDATE, therefore causing the server to consume more resources than necessary, as this case does not exceed the max number of concurrent streams, yet the client is able to create an enormous amount of streams in a short period of time.
The attack can be performed with other conditions (for example, a DATA frame for a closed stream) that cause the server to send a RST_STREAM frame.
Links:
The product does not properly control the allocation and maintenance of a limited resource.
Name | Vendor | Start Version | End Version |
---|---|---|---|
Red Hat build of Apache Camel 4.10.6 for Spring Boot 3.4.9 | RedHat | jetty-http2-client | * |
Red Hat build of Apache Camel 4.10.6 for Spring Boot 3.4.9 | RedHat | jetty-http2-client-transport | * |
Red Hat build of Apache Camel 4.10.6 for Spring Boot 3.4.9 | RedHat | jetty-http2-common | * |
Red Hat build of Apache Camel 4.10.6 for Spring Boot 3.4.9 | RedHat | jetty-http2-hpack | * |
Red Hat build of Apache Camel 4.10.6 for Spring Boot 3.4.9 | RedHat | jetty-http2-server | * |
Mitigation of resource exhaustion attacks requires that the target system either:
The first of these solutions is an issue in itself though, since it may allow attackers to prevent the use of the system by a particular valid user. If the attacker impersonates the valid user, they may be able to prevent the user from accessing the server in question.
The second solution is simply difficult to effectively institute – and even when properly done, it does not provide a full solution. It simply makes the attack require more resources on the part of the attacker.