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

CVE-2024-43394: Apache HTTP Server SSRF Vulnerability

CVE-2024-43394 is a Server-Side Request Forgery flaw in Apache HTTP Server on Windows that can leak NTLM hashes to attackers. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 1, 2026

CVE-2024-43394 Overview

CVE-2024-43394 is a Server-Side Request Forgery (SSRF) vulnerability affecting Apache HTTP Server on Windows platforms. This security flaw allows attackers to potentially leak NTLM hashes to malicious servers through the mod_rewrite module or Apache expressions that pass unvalidated request input.

The vulnerability enables remote attackers to craft malicious requests that force the Apache HTTP Server to initiate outbound connections to attacker-controlled SMB servers via UNC paths. When successful, this attack can capture NTLM authentication hashes, which can then be used for offline cracking or relay attacks.

Critical Impact

Remote attackers can potentially capture NTLM authentication hashes from Windows-based Apache HTTP Server deployments, leading to credential theft and further network compromise.

Affected Products

  • Apache HTTP Server versions 2.4.0 through 2.4.63
  • Microsoft Windows (all versions running affected Apache HTTP Server)
  • Systems utilizing mod_rewrite or Apache expressions with unvalidated user input

Discovery Timeline

  • July 10, 2025 - CVE-2024-43394 published to NVD
  • November 4, 2025 - Last updated in NVD database

Technical Details for CVE-2024-43394

Vulnerability Analysis

This SSRF vulnerability (CWE-918) resides in how Apache HTTP Server on Windows processes certain request inputs through mod_rewrite rules or Apache expressions. The core issue stems from insufficient validation when handling user-controlled input that gets incorporated into file system or network paths.

When an attacker supplies a malicious UNC path (e.g., \\\\attacker-server\\share) as part of a request that flows through vulnerable rewrite rules or expressions, the Apache server may attempt to access the specified network resource. On Windows systems, this triggers an automatic NTLM authentication attempt to the remote server, inadvertently transmitting the server's NTLM hash to the attacker.

The Apache HTTP Server Project has noted that the server offers limited built-in protection against administrators directing the server to open UNC paths, placing significant responsibility on system administrators to implement proper network-level controls.

Root Cause

The vulnerability originates from insufficient input validation and sanitization when processing user-supplied data that gets passed to file system operations or network resource access functions. Specifically, the mod_rewrite module and Apache expressions can be configured in ways that allow unvalidated request parameters to influence path construction, enabling UNC path injection on Windows platforms.

Attack Vector

The attack is network-based and requires no authentication or user interaction, making it accessible to remote attackers. The exploitation scenario involves:

  1. An attacker identifies an Apache HTTP Server running on Windows with mod_rewrite rules or expressions that incorporate user input
  2. The attacker crafts a malicious request containing a UNC path pointing to their controlled SMB server
  3. The Apache server processes the request and attempts to access the UNC path
  4. Windows automatically sends the server's NTLM hash to the attacker's SMB server
  5. The attacker captures the hash for offline cracking or relay attacks

Since no verified exploit code is available, the vulnerability mechanism can be understood through the interaction between Apache's request processing and Windows' automatic NTLM authentication behavior. When Apache processes a request that results in attempting to access a UNC path like \\\\malicious-server\\share, Windows will automatically attempt NTLM authentication, transmitting credential hashes. See the Apache HTTP Server Vulnerabilities page for additional technical details.

Detection Methods for CVE-2024-43394

Indicators of Compromise

  • Outbound SMB traffic (port 445) from Apache HTTP Server processes to external or unusual IP addresses
  • Apache access logs containing UNC path patterns (e.g., \\\\ or encoded variants like %5c%5c)
  • Unusual network connections initiated by the httpd.exe or Apache.exe process
  • Failed SMB authentication events correlating with web request timestamps

Detection Strategies

  • Monitor outbound SMB/CIFS traffic originating from web server hosts, particularly to external destinations
  • Implement web application firewall (WAF) rules to detect and block UNC path patterns in request URLs and parameters
  • Review Apache configuration files for mod_rewrite rules that pass unvalidated user input to file system operations
  • Deploy network intrusion detection signatures for NTLM authentication attempts over non-standard paths

Monitoring Recommendations

  • Enable and centralize Apache access and error logging with real-time analysis
  • Configure Windows Security Event logging to capture outbound NTLM authentication attempts (Event ID 4648)
  • Implement network flow monitoring to detect unexpected SMB connections from web server segments
  • Set up alerts for any web server process initiating connections to external SMB servers

How to Mitigate CVE-2024-43394

Immediate Actions Required

  • Update Apache HTTP Server to a patched version as soon as one becomes available from the vendor
  • Review and audit all mod_rewrite rules and Apache expressions for unvalidated user input handling
  • Implement Windows Firewall rules to block outbound SMB traffic (port 445) from web server processes
  • Configure SMB client restrictions to limit which hosts the server can connect to via SMB

Patch Information

Apache has acknowledged this vulnerability and published details on their security vulnerabilities page. Administrators should monitor for updated versions beyond 2.4.63 that address this SSRF issue. Additional security discussions are available on the Openwall OSS Security mailing list. Debian users should review the Debian LTS Security Announcement for distribution-specific guidance.

Workarounds

  • Restrict outbound SMB connections from the web server using Windows Firewall or network-level firewall rules
  • Implement strict input validation in mod_rewrite rules to reject requests containing backslash characters or UNC path patterns
  • Consider enabling Extended Protection for Authentication (EPA) to mitigate NTLM relay attacks
  • Deploy network segmentation to isolate web servers from internal network resources
bash
# Windows Firewall: Block outbound SMB from Apache process
netsh advfirewall firewall add rule name="Block Apache Outbound SMB" dir=out action=block protocol=tcp remoteport=445 program="C:\Apache24\bin\httpd.exe"

# Apache mod_rewrite: Reject requests with UNC path patterns
# Add to httpd.conf or .htaccess
RewriteCond %{REQUEST_URI} \\\\\\\\|%5c%5c [NC,OR]
RewriteCond %{QUERY_STRING} \\\\\\\\|%5c%5c [NC]
RewriteRule .* - [F,L]

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.05%

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

  • Openwall OSS Security Discussion

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

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