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

CVE-2024-43204: Apache HTTP Server SSRF Vulnerability

CVE-2024-43204 is an SSRF vulnerability in Apache HTTP Server with mod_proxy that enables attackers to send outbound proxy requests to malicious URLs. This article covers technical details, affected versions, and mitigation.

Published: March 11, 2026

CVE-2024-43204 Overview

A Server-Side Request Forgery (SSRF) vulnerability exists in Apache HTTP Server when mod_proxy is loaded. This flaw allows an attacker to send outbound proxy requests to a URL controlled by the attacker. The vulnerability requires an unlikely but specific configuration where mod_headers is configured to modify the Content-Type request or response header with a value provided in the HTTP request. Users are recommended to upgrade to version 2.4.64 which fixes this issue.

Critical Impact

Attackers can exploit this SSRF vulnerability to force the Apache HTTP Server to make outbound requests to arbitrary URLs, potentially accessing internal services, exfiltrating data, or pivoting to attack internal network resources.

Affected Products

  • Apache HTTP Server (versions prior to 2.4.64)

Discovery Timeline

  • 2025-07-10 - CVE CVE-2024-43204 published to NVD
  • 2025-11-04 - Last updated in NVD database

Technical Details for CVE-2024-43204

Vulnerability Analysis

This vulnerability is classified as CWE-918 (Server-Side Request Forgery). The SSRF condition arises when Apache HTTP Server has both mod_proxy loaded and a specific mod_headers configuration that allows header manipulation based on user-supplied input. When mod_headers is configured to modify the Content-Type header using values from the HTTP request, an attacker can inject malicious URLs into the proxy request flow.

The vulnerability enables attackers to manipulate the server into initiating HTTP requests to arbitrary destinations. This can be leveraged to probe internal network services that would otherwise be inaccessible from external networks, potentially bypassing firewalls and network segmentation controls.

Root Cause

The root cause lies in the interaction between mod_proxy and mod_headers when configured in a specific manner. When mod_headers is set to modify Content-Type headers using request-supplied values, the mod_proxy module may inadvertently use this attacker-controlled data to determine outbound proxy request destinations. This configuration gap allows request parameters to influence the proxy target URL without proper validation or sanitization.

Attack Vector

The attack is network-based and can be executed remotely without authentication. An attacker crafts malicious HTTP requests containing attacker-controlled URLs in header values that are subsequently processed by mod_headers. When the server processes these requests, it triggers mod_proxy to make outbound connections to the specified URLs.

The attack scenario requires the target server to have:

  1. mod_proxy module loaded
  2. mod_headers configured to modify Content-Type headers using request-supplied values

While this specific configuration is described as "unlikely," organizations using complex proxy configurations should verify their Apache configurations against this vulnerability pattern.

Detection Methods for CVE-2024-43204

Indicators of Compromise

  • Unusual outbound HTTP/HTTPS connections from the Apache web server to internal IP ranges or unexpected external hosts
  • Spike in proxy-related error messages in Apache error logs indicating connection attempts to non-standard destinations
  • Requests containing suspicious Content-Type header manipulations or URL patterns in access logs
  • Network traffic showing the web server initiating connections to internal services or metadata endpoints

Detection Strategies

  • Configure network monitoring to alert on outbound connections from web servers to internal networks or cloud metadata services (e.g., 169.254.169.254)
  • Implement log analysis rules to detect requests with anomalous header patterns, particularly Content-Type headers containing URL-like values
  • Deploy web application firewalls (WAF) with SSRF detection rules to identify and block malicious request patterns
  • Use SentinelOne Singularity platform to monitor for suspicious process behavior and network connections originating from Apache processes

Monitoring Recommendations

  • Enable detailed access logging including all request headers to capture potential exploitation attempts
  • Monitor Apache error logs for proxy-related errors indicating failed connection attempts to unexpected destinations
  • Implement egress filtering and alerting for connections from web servers to restricted network segments
  • Regularly audit mod_headers and mod_proxy configurations for potentially dangerous header manipulation rules

How to Mitigate CVE-2024-43204

Immediate Actions Required

  • Upgrade Apache HTTP Server to version 2.4.64 or later immediately
  • Audit current mod_headers configurations and remove or restrict any rules that modify headers using user-supplied request values
  • Review mod_proxy configurations and ensure proper access controls are in place
  • Implement network egress filtering to restrict outbound connections from web servers to only necessary destinations

Patch Information

Apache Software Foundation has released version 2.4.64 which addresses this SSRF vulnerability. Organizations should apply this update as their primary remediation strategy. For detailed information about the fix and other security updates, refer to the Apache HTTP Server Vulnerabilities page. Additional security discussion is available via Openwall OSS Security Update #2 and the Debian LTS Security Announcement.

Workarounds

  • If immediate patching is not possible, review and modify mod_headers directives to avoid using request-supplied values for header modifications
  • Disable mod_proxy if it is not required for the application's functionality
  • Implement strict egress firewall rules to limit outbound connections from the web server to only whitelisted destinations
  • Configure mod_proxy with explicit allow lists for permitted proxy destinations
bash
# Configuration example - Review and restrict mod_headers directives
# Before (potentially vulnerable):
# Header set Content-Type "%{Content-Type}i"

# After (safer configuration):
# Remove or restrict header manipulation based on user input
# Verify mod_proxy access controls

# Check loaded modules
apachectl -M | grep -E "(proxy|headers)"

# Review mod_headers configuration files
grep -r "Header.*%{" /etc/apache2/
grep -r "RequestHeader.*%{" /etc/apache2/

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechApache

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.23%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • Openwall OSS Security Update #2

  • Openwall OSS Security Update #4

  • Debian LTS Security Announcement
  • Vendor Resources
  • Apache HTTP Server Vulnerabilities
  • Related CVEs
  • CVE-2025-59775: Apache HTTP Server SSRF Vulnerability

  • CVE-2024-43394: Apache HTTP Server SSRF Vulnerability

  • CVE-2024-39573: Apache HTTP Server SSRF Vulnerability

  • CVE-2021-40438: Resf Rocky Linux SSRF 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