The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2023-45802

CVE-2023-45802: Apache HTTP Server DoS Vulnerability

CVE-2023-45802 is a denial of service vulnerability in Apache HTTP Server affecting HTTP/2 stream memory handling. Attackers can exhaust server memory through repeated stream resets. This article covers technical details, affected versions, impact assessment, and mitigation strategies.

Published: February 11, 2026

CVE-2023-45802 Overview

CVE-2023-45802 is a Memory Leak vulnerability affecting Apache HTTP Server's HTTP/2 implementation. When a HTTP/2 stream is reset (RST frame) by a client, there exists a time window where the request's memory resources are not reclaimed immediately. Instead, de-allocation is deferred to connection close. A malicious client could exploit this behavior by continuously sending new requests and resets, keeping the connection busy and open while causing the memory footprint to grow unbounded. The process may run out of memory before the connection closes or times out.

This vulnerability was discovered during testing of CVE-2023-44487 (HTTP/2 Rapid Reset Exploit). While the probability of triggering this bug during normal HTTP/2 use is low, a determined attacker can deliberately exploit this behavior to cause denial of service through resource exhaustion.

Critical Impact

Attackers can cause memory exhaustion on Apache HTTP Server by exploiting the delayed memory deallocation in HTTP/2 stream reset handling, leading to denial of service conditions.

Affected Products

  • Apache HTTP Server (versions prior to 2.4.58)
  • Fedora 37, 38, and 39
  • Debian Linux 10.0

Discovery Timeline

  • 2023-10-23 - CVE-2023-45802 published to NVD
  • 2025-08-25 - Last updated in NVD database

Technical Details for CVE-2023-45802

Vulnerability Analysis

The vulnerability resides in Apache HTTP Server's HTTP/2 protocol implementation within the mod_http2 module. When processing HTTP/2 RST_STREAM frames, the server fails to immediately reclaim memory resources associated with the reset stream. This improper resource shutdown behavior (CWE-404) creates a race condition where memory deallocation is deferred until the entire connection is closed.

Under normal HTTP/2 operation, this behavior has minimal impact since connections eventually close and resources are properly reclaimed. However, an attacker can exploit this weakness by establishing a persistent HTTP/2 connection and rapidly cycling through request/reset sequences. Each reset cycle accumulates unreleased memory, and with sufficient iterations, the server's memory can be exhausted before connection timeout occurs.

This vulnerability is particularly dangerous when combined with knowledge of CVE-2023-44487 (HTTP/2 Rapid Reset), as attackers already familiar with HTTP/2 stream manipulation techniques can readily adapt their tooling to exploit this memory leak.

Root Cause

The root cause is improper resource shutdown or release (CWE-404) in the HTTP/2 stream handling code. When a client sends an RST_STREAM frame to reset an active request, the server correctly acknowledges the reset but delays memory deallocation. The memory buffers allocated for the request remain in use until the underlying connection is terminated, creating a window for memory accumulation. This design flaw allows unbounded memory growth when an attacker maintains a persistent connection while continuously resetting streams.

Attack Vector

The attack vector is network-based and does not require authentication or user interaction. An attacker can exploit this vulnerability remotely by:

  1. Establishing an HTTP/2 connection to the target Apache HTTP Server
  2. Initiating multiple HTTP/2 streams with requests
  3. Immediately sending RST_STREAM frames to reset each stream
  4. Repeating steps 2-3 in rapid succession while keeping the connection open
  5. The server's memory footprint grows with each reset cycle
  6. Eventually, the server exhausts available memory, causing denial of service

The attack requires network access to the vulnerable server and the ability to maintain a persistent HTTP/2 connection. While the attack complexity is higher than some DoS vectors, the technique can be automated and scaled effectively.

Detection Methods for CVE-2023-45802

Indicators of Compromise

  • Unusual memory consumption growth on Apache HTTP Server processes without corresponding increase in legitimate traffic
  • High volume of HTTP/2 RST_STREAM frames from single client connections
  • Long-lived HTTP/2 connections with abnormally high stream reset counts
  • Apache error logs showing memory allocation failures or out-of-memory conditions

Detection Strategies

  • Monitor Apache HTTP Server process memory usage for sustained growth patterns over time
  • Implement HTTP/2 connection monitoring to identify clients sending excessive RST_STREAM frames
  • Configure alerting for Apache processes exceeding memory thresholds
  • Analyze HTTP/2 traffic patterns for anomalous request/reset ratios per connection

Monitoring Recommendations

  • Deploy network-level monitoring for HTTP/2 frame analysis, specifically tracking RST_STREAM frame frequency
  • Enable Apache status module (mod_status) to monitor connection and memory metrics
  • Implement automated memory consumption alerts with appropriate baselines for normal operation
  • Consider logging HTTP/2 stream lifecycle events for forensic analysis

How to Mitigate CVE-2023-45802

Immediate Actions Required

  • Upgrade Apache HTTP Server to version 2.4.58 or later immediately
  • Review and apply security patches from your Linux distribution vendor
  • Implement connection rate limiting and stream limits for HTTP/2 connections as a defense-in-depth measure
  • Monitor server memory utilization during the upgrade planning period

Patch Information

Apache has released version 2.4.58 which fixes this memory leak vulnerability. Users should upgrade to this version or later to remediate CVE-2023-45802. The official security advisory is available at the Apache HTTPD Vulnerabilities page.

Distribution-specific patches are available:

  • Fedora users should apply updates from the Fedora Package Announcements
  • Debian users should reference the Debian LTS Announcement
  • NetApp customers should review the NetApp Security Advisory

Workarounds

  • If immediate patching is not possible, consider temporarily disabling HTTP/2 support by removing Protocols h2 h2c http/1.1 directive or setting Protocols http/1.1
  • Implement connection limits using MaxRequestWorkers and MaxConnectionsPerChild directives to limit memory impact
  • Configure aggressive timeout values using Timeout and KeepAliveTimeout directives to force connection closures
  • Deploy a reverse proxy or load balancer in front of Apache to provide additional HTTP/2 traffic filtering
bash
# Disable HTTP/2 temporarily in Apache configuration
# Edit /etc/httpd/conf/httpd.conf or /etc/apache2/apache2.conf

# Comment out or remove H2 protocols
# Protocols h2 h2c http/1.1

# Replace with HTTP/1.1 only
Protocols http/1.1

# Reduce connection persistence to minimize attack window
KeepAliveTimeout 5
MaxKeepAliveRequests 100

# Restart Apache to apply changes
# systemctl restart httpd
# or
# systemctl restart apache2

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechApache

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability2.17%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-404
  • Technical References
  • Debian LTS Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • NetApp Security Advisory
  • Vendor Resources
  • Apache HTTPD Vulnerabilities
  • Related CVEs
  • CVE-2022-28615: Apache HTTP Server DOS Vulnerability

  • CVE-2025-55753: Apache HTTP Server DoS Vulnerability

  • CVE-2024-36387: Apache HTTP Server DoS Vulnerability

  • CVE-2025-49630: Apache HTTP Server DOS Vulnerability
Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English