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-2024-36387

CVE-2024-36387: Apache HTTP Server DoS Vulnerability

CVE-2024-36387 is a denial of service flaw in Apache HTTP Server caused by WebSocket upgrades over HTTP/2 connections. This post covers the technical details, affected versions, impact, and mitigation steps.

Published: January 28, 2026

CVE-2024-36387 Overview

CVE-2024-36387 is a Null Pointer Dereference vulnerability in the Apache HTTP Server that occurs when serving WebSocket protocol upgrades over HTTP/2 connections. This flaw can result in a crash of the server process, leading to degraded performance and potential denial of service conditions.

Critical Impact

Attackers can trigger a server crash by sending specially crafted WebSocket upgrade requests over HTTP/2 connections, causing service disruption and degraded availability for legitimate users.

Affected Products

  • Apache HTTP Server (versions affected as per vendor advisory)
  • NetApp ONTAP 9

Discovery Timeline

  • 2024-07-01 - CVE-2024-36387 published to NVD
  • 2025-11-06 - Last updated in NVD database

Technical Details for CVE-2024-36387

Vulnerability Analysis

This vulnerability is classified as CWE-476 (NULL Pointer Dereference) and affects the Apache HTTP Server's handling of WebSocket protocol upgrades when operating over HTTP/2 connections. When a client initiates a WebSocket upgrade request through an HTTP/2 connection, the server fails to properly validate certain internal pointers before dereferencing them. This results in accessing a null memory address, which immediately crashes the server process.

The attack requires network access and low privileges to execute, though no user interaction is necessary. While the vulnerability does not directly expose confidential data, it enables attackers to impact both the integrity and availability of affected systems through service disruption.

Root Cause

The root cause lies in improper input validation within the Apache HTTP Server's WebSocket upgrade handling code when processing HTTP/2 connections. The server does not adequately verify that necessary data structures are properly initialized before attempting to access them during the protocol upgrade process. When certain edge cases occur during the HTTP/2 to WebSocket transition, a pointer that should reference a valid memory structure instead contains a null value, and subsequent operations on this null pointer trigger a crash.

Attack Vector

The attack is network-based and can be executed remotely against any Apache HTTP Server instance that has both HTTP/2 and WebSocket support enabled. An attacker with low-level access to the server can craft malicious WebSocket upgrade requests specifically designed to trigger the null pointer condition. The attack does not require user interaction, making it particularly dangerous for public-facing web servers.

The exploitation involves sending a carefully constructed HTTP/2 connection with a WebSocket upgrade request that causes the server to enter a code path where pointer validation is insufficient. Repeated exploitation can result in sustained denial of service as the server process crashes and restarts.

Detection Methods for CVE-2024-36387

Indicators of Compromise

  • Unexpected Apache HTTP Server process crashes or restarts in system logs
  • Error log entries indicating segmentation faults or null pointer dereference conditions
  • Increased frequency of HTTP/2 connections with WebSocket upgrade requests from unusual sources
  • Service monitoring alerts for repeated httpd process terminations

Detection Strategies

  • Monitor Apache error logs for crash-related entries, particularly those associated with mod_http2 or WebSocket handling modules
  • Implement network traffic analysis to identify anomalous patterns of HTTP/2 WebSocket upgrade requests
  • Deploy intrusion detection rules that flag rapid consecutive WebSocket upgrade attempts over HTTP/2
  • Use application performance monitoring to detect sudden drops in server availability

Monitoring Recommendations

  • Configure log aggregation to centralize Apache HTTP Server logs for crash pattern analysis
  • Set up alerting thresholds for httpd process restart frequency
  • Monitor HTTP/2 connection metrics for unusual upgrade request patterns
  • Implement SentinelOne Singularity Platform for real-time process monitoring and crash detection

How to Mitigate CVE-2024-36387

Immediate Actions Required

  • Update Apache HTTP Server to the latest patched version as specified in the vendor advisory
  • Review server configurations to assess exposure if WebSocket over HTTP/2 is enabled
  • Consider temporarily disabling WebSocket protocol upgrades over HTTP/2 if immediate patching is not possible
  • Enable enhanced logging to capture potential exploitation attempts

Patch Information

Apache has released security patches addressing this vulnerability. Administrators should consult the Apache HTTP Security Vulnerabilities page for version-specific patch information and upgrade instructions. NetApp users should refer to the NetApp Security Advisory NTAP-20240712-0001 for guidance on ONTAP systems.

Workarounds

  • Disable HTTP/2 protocol support temporarily by removing or commenting out the Protocols h2 h2c directives in the Apache configuration
  • Disable WebSocket support if not required for application functionality
  • Implement rate limiting on incoming connections to reduce the impact of potential exploitation attempts
  • Use a reverse proxy or web application firewall to filter malicious WebSocket upgrade requests
bash
# Temporary mitigation: Disable HTTP/2 in Apache configuration
# Edit /etc/httpd/conf/httpd.conf or equivalent

# Comment out or remove HTTP/2 protocol enablement:
# Protocols h2 h2c http/1.1

# Replace with HTTP/1.1 only:
Protocols http/1.1

# Restart Apache to apply changes
sudo systemctl restart httpd

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.4

  • EPSS Probability0.15%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-476
  • Technical References
  • NetApp Security Advisory NTAP-20240712-0001

  • OpenWall OSS-Security Mailing List Post
  • Vendor Resources
  • Apache HTTP Security Vulnerabilities
  • Related CVEs
  • CVE-2022-28615: Apache HTTP Server DOS Vulnerability

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

  • CVE-2025-49630: Apache HTTP Server DOS Vulnerability

  • CVE-2024-27316: 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