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

CVE-2024-38473: Apache HTTP Server Auth Bypass Flaw

CVE-2024-38473 is an authentication bypass vulnerability in Apache HTTP Server's mod_proxy that allows attackers to send crafted requests with incorrect encoding to backend services, bypassing authentication controls.

Published: January 28, 2026

CVE-2024-38473 Overview

An encoding problem vulnerability exists in the mod_proxy module of Apache HTTP Server versions 2.4.59 and earlier. This flaw allows request URLs with incorrect encoding to be forwarded to backend services, potentially enabling attackers to bypass authentication mechanisms through specially crafted requests. The vulnerability stems from improper output encoding or escaping (CWE-116), which can lead to unauthorized access to protected resources on backend servers.

Critical Impact

Attackers can exploit this encoding vulnerability to bypass authentication on backend services, potentially gaining unauthorized access to sensitive data or functionality. The vulnerability affects a widely deployed web server component, increasing the scope of potential impact.

Affected Products

  • Apache HTTP Server versions up to and including 2.4.59
  • NetApp ONTAP 9
  • Systems using mod_proxy for reverse proxy configurations

Discovery Timeline

  • 2024-07-01 - CVE-2024-38473 published to NVD
  • 2025-07-01 - Last updated in NVD database

Technical Details for CVE-2024-38473

Vulnerability Analysis

This vulnerability affects the mod_proxy module, which is a core component used for proxying HTTP requests in Apache HTTP Server deployments. When mod_proxy processes incoming requests, it fails to properly validate and normalize URL encoding before forwarding requests to backend services. This improper output encoding allows malicious actors to craft requests that appear legitimate to the proxy but are interpreted differently by backend servers, potentially bypassing authentication controls that rely on URL-based access restrictions.

The attack is network-accessible and requires low privileges to execute, making it relatively easy to exploit in environments where Apache is configured as a reverse proxy in front of authenticated backend services.

Root Cause

The root cause is classified under CWE-116 (Improper Encoding or Escaping of Output). The mod_proxy module does not adequately sanitize or normalize URL-encoded characters in request URLs before forwarding them to backend services. This encoding inconsistency creates a disparity between how the proxy interprets the URL path and how the backend service processes it, enabling authentication bypass scenarios.

Attack Vector

The attack is conducted over the network by sending specially crafted HTTP requests through the Apache proxy. An attacker can manipulate URL encoding in requests to bypass path-based authentication rules. For example, if a backend service expects authentication for certain URL paths, the attacker may use alternative encoding representations that the proxy passes through unchanged but are decoded differently by the backend, granting unauthorized access.

The attack flow typically involves:

  1. Attacker identifies an Apache server configured with mod_proxy
  2. Attacker crafts requests with manipulated URL encoding targeting protected backend paths
  3. The mod_proxy module forwards the request without proper encoding normalization
  4. The backend service interprets the malformed encoding differently, potentially bypassing authentication checks

Detection Methods for CVE-2024-38473

Indicators of Compromise

  • Unusual URL-encoded sequences in Apache access logs, particularly double-encoding or mixed encoding patterns
  • Unexpected access to protected backend resources without corresponding authentication events
  • HTTP requests containing malformed or non-standard percent-encoded characters targeting proxy endpoints
  • Authentication bypass attempts visible in backend application logs

Detection Strategies

  • Monitor Apache access logs for requests containing suspicious URL encoding patterns such as %2e, %2f, or unusual character sequences
  • Implement Web Application Firewall (WAF) rules to detect and block requests with abnormal URL encoding
  • Correlate proxy access logs with backend authentication logs to identify requests that bypassed expected authentication
  • Deploy intrusion detection signatures targeting mod_proxy encoding bypass attempts

Monitoring Recommendations

  • Enable detailed logging for mod_proxy including request URLs and headers
  • Configure alerting for high volumes of 4xx/5xx responses from backend services that may indicate exploitation attempts
  • Implement log analysis to detect patterns of encoded path traversal or authentication bypass attempts
  • Monitor for unauthorized access patterns on backend services that are fronted by Apache reverse proxies

How to Mitigate CVE-2024-38473

Immediate Actions Required

  • Upgrade Apache HTTP Server to version 2.4.60 or later immediately
  • Review mod_proxy configurations and restrict proxy access to only necessary backend services
  • Implement additional authentication at the backend service level rather than relying solely on proxy-based access controls
  • Deploy WAF rules to block requests with suspicious URL encoding patterns

Patch Information

Apache has released version 2.4.60 which addresses this encoding vulnerability in mod_proxy. Organizations should prioritize upgrading to this version. For detailed information about the fix and other security updates, refer to the Apache HTTP Server Vulnerabilities page. NetApp customers should also review the NetApp Security Advisory NTAP-20240712-0001 for ONTAP-specific guidance.

Workarounds

  • Implement strict input validation at the backend service level to reject improperly encoded requests
  • Configure mod_security or similar WAF solutions to normalize URL encoding before requests reach backend services
  • Use ProxyPass directives with explicit path restrictions to limit proxy scope
  • Consider implementing additional authentication layers that do not rely solely on URL path matching
bash
# Configuration example - Additional mod_security rules for URL encoding validation
# Add to Apache configuration or mod_security rules file

# Enable URL normalization
SecRule REQUEST_URI "@validateUrlEncoding" "id:1001,phase:1,deny,status:400,msg:'Invalid URL Encoding Detected'"

# Block double-encoded requests
SecRule REQUEST_URI "@contains %25" "id:1002,phase:1,deny,status:400,msg:'Double Encoding Attempt Blocked'"

# Restrict proxy to specific backend paths only
<Location /api>
    ProxyPass http://backend-server:8080/api
    ProxyPassReverse http://backend-server:8080/api
    # Require explicit authentication at proxy level
    AuthType Basic
    AuthName "API Access"
    Require valid-user
</Location>

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechApache

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability88.26%

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

  • Openwall OSS-Security Mailing List Post
  • Vendor Resources
  • Apache HTTP Server Vulnerabilities
  • Related CVEs
  • CVE-2026-3234: mod_proxy_cluster Auth Bypass Vulnerability

  • CVE-2025-40931: Apache::Session::Generate::MD5 Auth Bypass

  • CVE-2025-40932: Apache::SessionX Auth Bypass Vulnerability

  • CVE-2025-49812: Apache HTTP Server Auth Bypass Vulnerability
Default Legacy - Prefooter | 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