CVE-2023-44487

high KEV
Published 2023-11-07 ยท Modified 2023-10-10
CVSS v3
7.5
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L/E:H
CVSS v4 NEW
โ€”
not yet in upstream
VIR risk
10.0

Description

The HTTP/2 protocol allows a denial of service (server resource consumption) because request cancellation can reset many streams quickly, as exploited in the wild in August through October 2023.

CISA KEV

Vendor
IETF
Product
HTTP/2
Due date
2023-10-31

Predictions

Exploit likelihood
99%
Patch ETA
โ€”

Heuristic predictions, AS-IS, for prioritization only.

Mitigations

vendor Authored 2026-05-27
{Vendor advisory: cisa-kev โ€” This vulnerability affects a common open-source component, third-party library, or protocol used by different products. For more information, please see: HTTP/2 Rapid Reset Vulnerability, CVE-2023-44487 | CISA: https://www.cisa.gov/news-events/alerts/2023/10/10/http2-rapid-reset-vulnerability-cve-2023-44487; https://blog.cloudflare.com/technical-breakdown-http2-rapid-reset-ddos-attack/; https://nvd.nist.gov/vuln/detail/CVE-2023-44487}

Mitigation details

Source: GitHub Security Advisory ยท View original โ†— ยท CC-BY-4.0

<h3>HTTP/2 Stream Cancellation Attack</h3> HTTP/2 Rapid reset attack The HTTP/2 protocol allows clients to indicate to the server that a previous stream should be canceled by sending a RST_STREAM frame. The protocol does not require the client and server to coordinate the cancellation in any way, the client may do it unilaterally. The client may also assume that the cancellation will take effectโ€ฆ

<h3>HTTP/2 Stream Cancellation Attack</h3>

HTTP/2 Rapid reset attack

The HTTP/2 protocol allows clients to indicate to the server that a previous stream should be canceled by sending a RST_STREAM frame. The protocol does not require the client and server to coordinate the cancellation in any way, the client may do it unilaterally. The client may also assume that the cancellation will take effect immediately when the server receives the RST_STREAM frame, before any other data from that TCP connection is processed.

Abuse of this feature is called a Rapid Reset attack because it relies on the ability for an endpoint to send a RST_STREAM frame immediately after sending a request frame, which makes the other endpoint start working and then rapidly resets the request. The request is canceled, but leaves the HTTP/2 connection open.

The HTTP/2 Rapid Reset attack built on this capability is simple: The client opens a large number of streams at once as in the standard HTTP/2 attack, but rather than waiting for a response to each request stream from the server or proxy, the client cancels each request immediately.

The ability to reset streams immediately allows each connection to have an indefinite number of requests in flight. By explicitly canceling the requests, the attacker never exceeds the limit on the number of concurrent open streams. The number of in-flight requests is no longer dependent on the round-trip time (RTT), but only on the available network bandwidth.

In a typical HTTP/2 server implementation, the server will still have to do significant amounts of work for canceled requests, such as allocating new stream data structures, parsing the query and doing header decompression, and mapping the URL to a resource. For reverse proxy implementations, the request may be proxied to the backend server before the RST_STREAM frame is processed. The client on the other hand paid almost no costs for sending the requests. This creates an exploitable cost asymmetry between the server and the client.

Multiple software artifacts implementing HTTP/2 are affected. This advisory was originally ingested from the `swift-nio-http2` repo advisory and their original conent follows.

swift-nio-http2 specific advisory

swift-nio-http2 is vulnerable to a denial-of-service vulnerability in which a malicious client can create and then reset a large number of HTTP/2 streams in a short period of time. This causes swift-nio-http2 to commit to a large amount of expensive work which it then throws away, including creating entirely new `Channel`s to serve the traffic. This can easily overwhelm an `EventLoop` and prevent it from making forward progress.

swift-nio-http2 1.28 contains a remediation for this issue that applies reset counter using a sliding window. This constrains the number of stream resets that may occur in a given window of time. Clients violating this limit will have their connections torn down. This allows clients to continue to cancel streams for legitimate reasons, while constraining malicious actors.

Apply commands

bash fix
Upgrade org.apache.tomcat:tomcat-coyote to 8.5.94
# Update org.apache.tomcat:tomcat-coyote to 8.5.94 in pom.xml

Affected

VendorProductVersion
mavenorg.apache.tomcat:tomcat-coyote>= 8.5.0, < 8.5.94
mavenorg.apache.tomcat:tomcat-coyote>= 9.0.0, < 9.0.81
mavenorg.apache.tomcat:tomcat-coyote>= 10.0.0, < 10.1.14
mavenorg.apache.tomcat:tomcat-coyote>= 11.0.0-M1, < 11.0.0-M12
mavencom.typesafe.akka:akka-http-core_2.11<= 10.1.15
mavencom.typesafe.akka:akka-http-core_2.12< 10.5.3
mavencom.typesafe.akka:akka-http-core_2.13< 10.5.3
mavencom.typesafe.akka:akka-http-core< 10.5.3
mavenorg.eclipse.jetty.http2:jetty-http2-server>= 12.0.0, < 12.0.2
mavenorg.eclipse.jetty.http2:jetty-http2-common>= 12.0.0, < 12.0.2
mavenorg.eclipse.jetty.http2:http2-server>= 11.0.0, < 11.0.17
mavenorg.eclipse.jetty.http2:http2-server>= 10.0.0, < 10.0.17
mavenorg.eclipse.jetty.http2:http2-server>= 9.3.0, < 9.4.53
mavenorg.eclipse.jetty.http2:http2-common>= 11.0.0, < 11.0.17
mavenorg.eclipse.jetty.http2:http2-common>= 10.0.0, < 10.0.17
mavenorg.eclipse.jetty.http2:http2-common>= 9.3.0, < 9.4.53
swiftgithub.com/apple/swift-nio-http2< 1.28.0
mavenorg.apache.tomcat.embed:tomcat-embed-core>= 8.5.0, < 8.5.94
mavenorg.apache.tomcat.embed:tomcat-embed-core>= 9.0.0, < 9.0.81
mavenorg.apache.tomcat.embed:tomcat-embed-core>= 10.0.0, < 10.1.14
mavenorg.apache.tomcat.embed:tomcat-embed-core>= 11.0.0-M1, < 11.0.0-M12
gogolang.org/x/net< 0.17.0

Exploits

Public proof-of-concept code below. AS-IS, for defenders and authorised testing only.

Exploit-DB

EDB-52426 remote multiple
Madhusudhan Rajappa ยท 2025-09-16

HTTP/2 2.0 - Denial Of Service (DOS)

Source code queued for fetch โ€” refresh in a moment.

OS impact

fedora Fedora Affected 2 releases
VersionStatusFixed in
38 Affected โ€”
37 Affected โ€”
suse SUSE Affected 1 release
VersionStatusFixed in
โ€” Affected โ€”
windows Windows Affected 1 release
VersionStatusFixed in
- Affected โ€”
debian Debian Mixed 8 releases
VersionStatusFixed in
trixie Fixed 1.8.2-2
sid Fixed 1.8.2-2
forky Fixed 1.8.2-2
bullseye Fixed 1.8.13-1
bookworm Fixed 1.8.13-1
12.0 Affected โ€”
11.0 Affected โ€”
10.0 Affected โ€”
redhat Red Hat Mixed 5 releases
VersionStatusFixed in
9.0 Affected โ€”
9 Fixed โ€”
8.0 Affected โ€”
8 Fixed โ€”
6.0 Affected โ€”
almalinux AlmaLinux Fixed 1 release
VersionStatusFixed in
9 Fixed nginx-core-1.20.1-14.el9_2.1.alma.1.aarch64.rpm
rockylinux Rocky Linux Fixed 2 releases
VersionStatusFixed in
9 Fixed โ€”
8 Fixed โ€”

Package impact

EcosystemPackageVulnerableFixed
SwiftURLgithub.com/apple/swift-nio-http2<1.28.01.28.0
golang Gogolang.org/x/net<0.17.00.17.0
java Mavenorg.apache.tomcat:tomcat-coyote>=11.0.0-M1,<11.0.0-M1211.0.0-M12
java Mavenorg.apache.tomcat:tomcat-coyote>=10.0.0,<10.1.1410.1.14
java Mavenorg.apache.tomcat:tomcat-coyote>=9.0.0,<9.0.819.0.81
java Mavenorg.apache.tomcat:tomcat-coyote>=8.5.0,<8.5.948.5.94
java Mavenorg.apache.tomcat.embed:tomcat-embed-core>=11.0.0-M1,<11.0.0-M1211.0.0-M12
java Mavenorg.apache.tomcat.embed:tomcat-embed-core>=10.0.0,<10.1.1410.1.14
java Mavenorg.apache.tomcat.embed:tomcat-embed-core>=9.0.0,<9.0.819.0.81
java Mavenorg.apache.tomcat.embed:tomcat-embed-core>=8.5.0,<8.5.948.5.94
java Mavenorg.eclipse.jetty.http2:http2-common>=9.3.0,<9.4.539.4.53
java Mavenorg.eclipse.jetty.http2:http2-common>=10.0.0,<10.0.1710.0.17
java Mavenorg.eclipse.jetty.http2:http2-common>=11.0.0,<11.0.1711.0.17
java Mavenorg.eclipse.jetty.http2:http2-server>=9.3.0,<9.4.539.4.53
java Mavenorg.eclipse.jetty.http2:http2-server>=10.0.0,<10.0.1710.0.17
java Mavenorg.eclipse.jetty.http2:http2-server>=11.0.0,<11.0.1711.0.17
java Mavenorg.eclipse.jetty.http2:jetty-http2-common>=12.0.0,<12.0.212.0.2
java Mavenorg.eclipse.jetty.http2:jetty-http2-server>=12.0.0,<12.0.212.0.2
java Mavencom.typesafe.akka:akka-http-core<10.5.310.5.3
java Mavencom.typesafe.akka:akka-http-core_2.13<10.5.310.5.3
java Mavencom.typesafe.akka:akka-http-core_2.12<10.5.310.5.3
java Mavencom.typesafe.akka:akka-http-core_2.11<=10.1.15
java MAVENorg.apache.tomcat:tomcat-coyote>= 8.5.0, < 8.5.948.5.94
java MAVENorg.apache.tomcat:tomcat-coyote>= 9.0.0, < 9.0.819.0.81
java MAVENorg.apache.tomcat:tomcat-coyote>= 10.0.0, < 10.1.1410.1.14
java MAVENorg.apache.tomcat:tomcat-coyote>= 11.0.0-M1, < 11.0.0-M1211.0.0-M12
java MAVENcom.typesafe.akka:akka-http-core_2.11<= 10.1.15
java MAVENcom.typesafe.akka:akka-http-core_2.12< 10.5.310.5.3
java MAVENcom.typesafe.akka:akka-http-core_2.13< 10.5.310.5.3
java MAVENcom.typesafe.akka:akka-http-core< 10.5.310.5.3
java MAVENorg.eclipse.jetty.http2:jetty-http2-server>= 12.0.0, < 12.0.212.0.2
java MAVENorg.eclipse.jetty.http2:jetty-http2-common>= 12.0.0, < 12.0.212.0.2
java MAVENorg.eclipse.jetty.http2:http2-server>= 11.0.0, < 11.0.1711.0.17
java MAVENorg.eclipse.jetty.http2:http2-server>= 10.0.0, < 10.0.1710.0.17
java MAVENorg.eclipse.jetty.http2:http2-server>= 9.3.0, < 9.4.539.4.53
java MAVENorg.eclipse.jetty.http2:http2-common>= 11.0.0, < 11.0.1711.0.17
java MAVENorg.eclipse.jetty.http2:http2-common>= 10.0.0, < 10.0.1710.0.17
java MAVENorg.eclipse.jetty.http2:http2-common>= 9.3.0, < 9.4.539.4.53
SWIFTgithub.com/apple/swift-nio-http2< 1.28.01.28.0
java MAVENorg.apache.tomcat.embed:tomcat-embed-core>= 8.5.0, < 8.5.948.5.94
java MAVENorg.apache.tomcat.embed:tomcat-embed-core>= 9.0.0, < 9.0.819.0.81
java MAVENorg.apache.tomcat.embed:tomcat-embed-core>= 10.0.0, < 10.1.1410.1.14
java MAVENorg.apache.tomcat.embed:tomcat-embed-core>= 11.0.0-M1, < 11.0.0-M1211.0.0-M12
golang GOgolang.org/x/net< 0.17.00.17.0

Application impact

VendorProductVersionsFixed
siemens siemenssinec_ins{"endExcluding":"1.0"}1.0
siemens siemenssinec_ins1.0
siemens siemenssinec_nms{"endExcluding":"3.0"}3.0
siemens siemensst7_scadaconnect{"endExcluding":"1.1"}1.1
ietfhttp2.0
nghttp2nghttp2{"endExcluding":"1.57.0"}1.57.0
nettynetty{"endExcluding":"4.1.100"}4.1.100
envoyproxyenvoy1.24.10
envoyproxyenvoy1.25.9
envoyproxyenvoy1.26.4
envoyproxyenvoy1.27.0
eclipsejetty{"endExcluding":"9.4.53"}9.4.53
caddyservercaddy{"endExcluding":"2.7.5"}2.7.5
golang golanggo{"endExcluding":"1.20.10"}1.20.10
golang golanghttp2{"endExcluding":"0.17.0"}0.17.0
golang golangnetworking{"endExcluding":"0.17.0"}0.17.0
f5big-ip_access_policy_manager{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_access_policy_manager17.1.0
f5big-ip_advanced_firewall_manager{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_advanced_firewall_manager17.1.0
f5big-ip_advanced_web_application_firewall{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_advanced_web_application_firewall17.1.0
f5big-ip_analytics{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_analytics17.1.0
f5big-ip_application_acceleration_manager{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_application_acceleration_manager17.1.0
f5big-ip_application_security_manager{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_application_security_manager17.1.0
f5big-ip_application_visibility_and_reporting{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_application_visibility_and_reporting17.1.0
f5big-ip_carrier-grade_nat{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_carrier-grade_nat17.1.0
f5big-ip_ddos_hybrid_defender{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_ddos_hybrid_defender17.1.0
f5big-ip_domain_name_system{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_domain_name_system17.1.0
f5big-ip_fraud_protection_service{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_fraud_protection_service17.1.0
f5big-ip_global_traffic_manager{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_global_traffic_manager17.1.0
f5big-ip_link_controller{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_link_controller17.1.0
f5big-ip_local_traffic_manager{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_local_traffic_manager17.1.0
f5big-ip_next20.0.1
f5big-ip_next_service_proxy_for_kubernetes{"startIncluding":"1.5.0","endIncluding":"1.8.2"}
f5big-ip_policy_enforcement_manager{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_policy_enforcement_manager17.1.0
f5big-ip_ssl_orchestrator{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_ssl_orchestrator17.1.0
f5big-ip_webaccelerator{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_webaccelerator17.1.0
f5big-ip_websafe{"startIncluding":"13.1.0","endIncluding":"13.1.5"}
f5big-ip_websafe17.1.0
f5nginx{"startIncluding":"1.9.5","endIncluding":"1.25.2"}
f5nginx_ingress_controller{"startIncluding":"2.0.0","endIncluding":"2.4.2"}
f5nginx_plus{"startIncluding":"r25","endExcluding":"r29"}r29
f5nginx_plusr29
f5nginx_plusr30
apache apachetomcat{"startIncluding":"8.5.0","endIncluding":"8.5.93"}
apache apachetomcat11.0.0
macos appleswiftnio_http\/2{"endExcluding":"1.28.0"}1.28.0
grpcgrpc{"endExcluding":"1.56.3"}1.56.3
grpcgrpc1.57.0
windows microsoft.net{"startIncluding":"6.0.0","endExcluding":"6.0.23"}6.0.23
windows microsoftasp.net_core{"startIncluding":"6.0.0","endExcluding":"6.0.23"}6.0.23
windows microsoftazure_kubernetes_service{"endExcluding":"2023-10-08"}2023-10-08
windows microsoftvisual_studio_2022{"startIncluding":"17.0","endExcluding":"17.2.20"}17.2.20
nodejs nodejsnode.js{"startIncluding":"18.0.0","endExcluding":"18.18.2"}18.18.2
windows microsoftcbl-mariner{"endExcluding":"2023-10-11"}2023-10-11
denah2o{"endExcluding":"2023-10-10"}2023-10-10
facebookproxygen{"endExcluding":"2023.10.16.00"}2023.10.16.00
apache apacheapisix{"endExcluding":"3.6.1"}3.6.1
apache apachetraffic_server{"startIncluding":"8.0.0","endExcluding":"8.1.9"}8.1.9
aws amazonopensearch_data_prepper{"endExcluding":"2.5.0"}2.5.0
kazu-yamamotohttp2{"endExcluding":"4.2.2"}4.2.2
istioistio{"endExcluding":"1.17.6"}1.17.6
varnish_cache_projectvarnish_cache{"endExcluding":"2023-10-10"}2023-10-10
traefiktraefik{"endExcluding":"2.10.5"}2.10.5
traefiktraefik3.0.0
projectcontourcontour{"endExcluding":"2023-10-11"}2023-10-11
linkerdlinkerd{"startIncluding":"2.12.0","endIncluding":"2.12.5"}
linkerdlinkerd2.13.0
linkerdlinkerd2.13.1
linkerdlinkerd2.14.0
linkerdlinkerd2.14.1
linecorparmeria{"endExcluding":"1.26.0"}1.26.0
redhat redhat3scale_api_management_platform2.0
redhat redhatadvanced_cluster_management_for_kubernetes2.0
redhat redhatadvanced_cluster_security3.0
redhat redhatadvanced_cluster_security4.0
redhat redhatansible_automation_platform2.0
redhat redhatbuild_of_optaplanner8.0
redhat redhatbuild_of_quarkus-
redhat redhatceph_storage5.0
redhat redhatcert-manager_operator_for_red_hat_openshift-
redhat redhatcertification_for_red_hat_enterprise_linux8.0
redhat redhatcertification_for_red_hat_enterprise_linux9.0
redhat redhatcost_management-
redhat redhatcryostat2.0
redhat redhatdecision_manager7.0
redhat redhatfence_agents_remediation_operator-
redhat redhatintegration_camel_for_spring_boot-
redhat redhatintegration_camel_k-
redhat redhatintegration_service_registry-
redhat redhatjboss_a-mq7
redhat redhatjboss_a-mq_streams-
redhat redhatjboss_core_services-
redhat redhatjboss_data_grid7.0.0
redhat redhatjboss_enterprise_application_platform6.0.0
redhat redhatjboss_enterprise_application_platform7.0.0
redhat redhatjboss_fuse6.0.0
redhat redhatjboss_fuse7.0.0
redhat redhatlogging_subsystem_for_red_hat_openshift-
redhat redhatmachine_deletion_remediation_operator-
redhat redhatmigration_toolkit_for_applications6.0
redhat redhatmigration_toolkit_for_containers-
redhat redhatmigration_toolkit_for_virtualization-
redhat redhatnetwork_observability_operator-
redhat redhatnode_healthcheck_operator-
redhat redhatnode_maintenance_operator-
redhat redhatopenshift-
redhat redhatopenshift_api_for_data_protection-
redhat redhatopenshift_container_platform4.0
redhat redhatopenshift_container_platform_assisted_installer-
redhat redhatopenshift_data_science-
redhat redhatopenshift_dev_spaces-
redhat redhatopenshift_developer_tools_and_services-
redhat redhatopenshift_distributed_tracing-
redhat redhatopenshift_gitops-
redhat redhatopenshift_pipelines-
redhat redhatopenshift_sandboxed_containers-
redhat redhatopenshift_secondary_scheduler_operator-
redhat redhatopenshift_serverless-
redhat redhatopenshift_service_mesh2.0
redhat redhatopenshift_virtualization4
redhat redhatopenstack_platform16.1
redhat redhatopenstack_platform16.2
redhat redhatopenstack_platform17.1
redhat redhatprocess_automation7.0
redhat redhatquay3.0.0
redhat redhatrun_once_duration_override_operator-
redhat redhatsatellite6.0
redhat redhatself_node_remediation_operator-
redhat redhatservice_interconnect1.0
redhat redhatsingle_sign-on7.0
redhat redhatsupport_for_spring_boot-
redhat redhatweb_terminal-
redhat redhatservice_telemetry_framework1.5
netappastra_control_center-
netapponcommand_insight-
akkahttp_server{"endExcluding":"10.5.3"}10.5.3
konghqkong_gateway{"endExcluding":"3.4.2"}3.4.2
jenkinsjenkins{"endIncluding":"2.414.2"}
apache apachesolr{"endExcluding":"9.4.0"}9.4.0
openrestyopenresty{"endExcluding":"1.21.4.3"}1.21.4.3
cisco ciscobusiness_process_automation{"endExcluding":"3.2.003.009"}3.2.003.009
cisco ciscoconnected_mobile_experiences{"endExcluding":"11.1"}11.1
cisco ciscocrosswork_data_gateway{"endExcluding":"4.1.3"}4.1.3
cisco ciscocrosswork_situation_manager-
cisco ciscocrosswork_zero_touch_provisioning{"endExcluding":"6.0.0"}6.0.0
cisco ciscodata_center_network_manager-
cisco ciscoenterprise_chat_and_email-
cisco ciscoexpressway{"endExcluding":"x14.3.3"}x14.3.3
cisco ciscofirepower_threat_defense{"endExcluding":"7.4.2"}7.4.2
cisco ciscoiot_field_network_director{"endExcluding":"4.11.0"}4.11.0
cisco ciscoprime_access_registrar{"endExcluding":"9.3.3"}9.3.3
cisco ciscoprime_cable_provisioning{"endExcluding":"7.2.1"}7.2.1
cisco ciscoprime_infrastructure{"endExcluding":"3.10.4"}3.10.4
cisco ciscoprime_network_registrar{"endExcluding":"11.2"}11.2
cisco ciscosecure_dynamic_attributes_connector{"endExcluding":"2.2.0"}2.2.0
cisco ciscosecure_malware_analytics{"endExcluding":"2.19.2"}2.19.2
cisco ciscotelepresence_video_communication_server{"endExcluding":"x14.3.3"}x14.3.3
cisco ciscoultra_cloud_core_-_policy_control_function{"endExcluding":"2024.01.0"}2024.01.0
cisco ciscoultra_cloud_core_-_policy_control_function2024.01.0
cisco ciscoultra_cloud_core_-_serving_gateway_function{"endExcluding":"2024.02.0"}2024.02.0
cisco ciscoultra_cloud_core_-_session_management_function{"endExcluding":"2024.02.0"}2024.02.0
cisco ciscounified_attendant_console_advanced-
cisco ciscounified_contact_center_domain_manager-
cisco ciscounified_contact_center_enterprise-
cisco ciscounified_contact_center_enterprise_-_live_data_server{"endExcluding":"12.6.2"}12.6.2
cisco ciscounified_contact_center_management_portal-
nginx nginxnginx{"startIncluding":"1.9.5","endIncluding":"1.25.2"}

References

CWEs

CWE-400

Community-verified mitigations for this CVE will appear above when contributors publish them.

Verify integrity in audit chain (admin only). AS-IS.