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-38477

CVE-2024-38477: Apache HTTP Server DoS Vulnerability

CVE-2024-38477 is a denial of service flaw in Apache HTTP Server mod_proxy that allows attackers to crash the server through malicious requests. This article covers technical details, affected versions, and mitigation.

Published: January 28, 2026

CVE-2024-38477 Overview

CVE-2024-38477 is a null pointer dereference vulnerability affecting the mod_proxy module in Apache HTTP Server versions 2.4.59 and earlier. This vulnerability allows a remote attacker to crash the server by sending a specially crafted malicious request, resulting in a denial of service condition.

The flaw resides in how mod_proxy handles certain proxy requests. When processing these requests, the module fails to properly validate pointer references before dereferencing them, leading to a null pointer access that terminates the server process.

Critical Impact

Remote attackers can cause a complete denial of service by crashing Apache HTTP Server instances through malicious requests targeting the mod_proxy module, potentially disrupting web services for all users.

Affected Products

  • Apache HTTP Server versions up to and including 2.4.59
  • NetApp Clustered Data ONTAP 9.0
  • Systems utilizing mod_proxy for reverse proxy, load balancing, or gateway configurations

Discovery Timeline

  • 2024-07-01 - CVE-2024-38477 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2024-38477

Vulnerability Analysis

The vulnerability exists within the mod_proxy module, a critical component of Apache HTTP Server used for proxying HTTP requests. The null pointer dereference occurs when the proxy module processes certain malformed or specially crafted requests that trigger an unexpected code path where a pointer is accessed without proper null validation.

When exploited, this vulnerability causes an immediate crash of the Apache HTTP Server worker process handling the request. Depending on the server configuration and the Multi-Processing Module (MPM) in use, this could result in temporary service disruption or require manual intervention to restore service availability.

The vulnerability is accessible over the network without requiring authentication or user interaction, making it particularly concerning for publicly exposed Apache servers with mod_proxy enabled.

Root Cause

The root cause is a missing null pointer check in the mod_proxy module's request handling logic. When certain conditions are met during proxy request processing, the code attempts to dereference a pointer that may be null, resulting in a segmentation fault and process termination. This represents a classic CWE-476 (NULL Pointer Dereference) vulnerability pattern.

Attack Vector

The attack vector is network-based and requires no privileges or user interaction. An attacker can send a crafted HTTP request to a vulnerable Apache server with mod_proxy enabled. The request exploits the null pointer dereference condition in the proxy module, causing the server process to crash.

The attack characteristics include:

  • Network accessible: Can be exploited remotely over HTTP/HTTPS
  • No authentication required: The attack works against unauthenticated endpoints
  • No user interaction: Exploitation is fully automated
  • Availability impact: Complete denial of service for the affected server process

Detection Methods for CVE-2024-38477

Indicators of Compromise

  • Unexpected Apache HTTP Server process crashes or restarts in system logs
  • Segmentation fault entries in Apache error logs related to mod_proxy
  • Increased frequency of child process spawning by the Apache parent process
  • Core dump files generated by crashed Apache worker processes

Detection Strategies

  • Monitor Apache error logs for segmentation fault signals (SIGSEGV) associated with proxy operations
  • Implement web application firewall (WAF) rules to detect anomalous proxy request patterns
  • Deploy intrusion detection system (IDS) signatures targeting malformed proxy requests
  • Set up automated alerts for unexpected Apache service restarts or crashes

Monitoring Recommendations

  • Configure centralized logging for all Apache HTTP Server instances to correlate crash events
  • Enable core dump generation in controlled environments to facilitate forensic analysis of crashes
  • Monitor server uptime metrics and establish baselines to detect denial of service attempts
  • Implement health checks for proxy endpoints to rapidly detect service disruption

How to Mitigate CVE-2024-38477

Immediate Actions Required

  • Upgrade Apache HTTP Server to version 2.4.60 or later, which contains the fix for this vulnerability
  • If immediate patching is not possible, consider temporarily disabling mod_proxy if it is not essential for operations
  • Implement rate limiting and request filtering at the network perimeter to reduce exposure
  • Review and restrict access to proxy endpoints using IP allowlists where applicable

Patch Information

Apache Software Foundation has released version 2.4.60 which addresses this vulnerability. Users are strongly recommended to upgrade to this version or later. The official security advisory is available at the Apache HTTP Server Vulnerabilities page.

Additional vendor advisories:

  • NetApp Security Advisory NTAP-20240712-0001
  • OpenWall OSS-Security Mailing List

Workarounds

  • Disable mod_proxy and related modules (mod_proxy_http, mod_proxy_ajp, etc.) if proxy functionality is not required
  • Implement a reverse proxy or load balancer in front of Apache to filter potentially malicious requests
  • Use a Web Application Firewall (WAF) to inspect and block suspicious proxy requests
  • Restrict access to proxy functionality to trusted networks or authenticated users only
bash
# Disable mod_proxy in Apache configuration (Debian/Ubuntu)
sudo a2dismod proxy proxy_http proxy_ajp proxy_balancer
sudo systemctl restart apache2

# For RedHat/CentOS, comment out LoadModule directives in httpd.conf
# LoadModule proxy_module modules/mod_proxy.so
# LoadModule proxy_http_module modules/mod_proxy_http.so

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechApache

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability1.18%

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

  • Full Disclosure October 2024

  • OpenWall OSS-Security Mailing List
  • Vendor Resources
  • Apache HTTP Server 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