A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-11986

CVE-2024-11986: Host Header Stored XSS Vulnerability

CVE-2024-11986 is a stored cross-site scripting flaw in Host Header processing that lets attackers inject malicious payloads into application logs. This post explains its impact, affected versions, and mitigation steps.

Updated: May 15, 2026

CVE-2024-11986 Overview

CVE-2024-11986 is a stored Cross-Site Scripting (XSS) vulnerability tied to improper input handling of the HTTP Host header in a web application. An unauthenticated remote attacker can inject a malicious payload that the application writes to its logs without sanitization. When an administrator later views those logs through the application's standard log-viewing functionality, the browser executes the attacker-controlled script. The referenced advisory points to CrushFTP, where the issue is addressed through vendor updates. The flaw is classified under CWE-79.

Critical Impact

Unauthenticated attackers can plant persistent XSS payloads that execute in an administrator's session, enabling session theft, privileged action abuse, and follow-on compromise of the management interface.

Affected Products

  • CrushFTP (per CrushFTP Update Documentation)
  • Web management and log-viewing components that render Host header values
  • Administrator browser sessions viewing application logs

Discovery Timeline

  • 2024-12-13 - CVE-2024-11986 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2024-11986

Vulnerability Analysis

The application accepts the HTTP Host header from inbound requests and writes its value into application logs without encoding or validation. Because logs are rendered in a browser through the built-in administrative log viewer, any HTML or JavaScript stored in the Host field is interpreted as active content at view time. This converts a passive logging surface into an active execution sink.

The attack is persistent. The payload remains in the log store until rotation or deletion, giving every administrator who opens the affected log entry an opportunity to trigger execution. The attack requires no authentication because HTTP servers accept and log requests from any source. User interaction is limited to an administrator viewing logs, an activity routine in operations.

The EPSS probability of 0.812% (74th percentile) reflects moderate near-term exploitation likelihood, while the issue itself is straightforward to weaponize.

Root Cause

The root cause is missing output encoding when log entries containing the Host header are rendered in an HTML context. Input sanitization on the request path is also absent, so attacker-controlled bytes survive intact from network ingress through to browser parsing.

Attack Vector

An attacker sends a single HTTP request to the exposed web service with a crafted Host header containing a script payload. The server logs the request. When an administrator opens the log view, the browser parses the stored payload as part of the page DOM and executes the script in the context of the administrative origin.

No verified public exploit code is available for CVE-2024-11986. The vulnerability mechanism is described in prose only; refer to the CrushFTP Update Documentation for vendor-supplied technical details.

Detection Methods for CVE-2024-11986

Indicators of Compromise

  • HTTP request logs containing Host header values with <script>, onerror=, onload=, javascript:, or HTML entity-encoded equivalents.
  • Inbound requests where the Host header does not match expected fully qualified domain names for the deployment.
  • Outbound browser connections from administrator workstations to unfamiliar domains immediately after log viewing.
  • Unexpected session token reuse or administrative actions originating from administrator accounts shortly after log access.

Detection Strategies

  • Parse web server and application access logs for non-RFC-compliant or script-bearing Host header values.
  • Alert on administrator log-viewer page loads correlated with anomalous JavaScript execution telemetry on the same endpoint.
  • Use content security policy (CSP) violation reports as a signal that injected content attempted to load remote scripts.

Monitoring Recommendations

  • Forward web server, application, and admin UI logs to a centralized analytics platform and apply regex rules for HTML tags inside header fields.
  • Monitor administrator endpoints for browser process anomalies, suspicious child processes, and outbound connections to attacker-staged infrastructure.
  • Track changes to administrator account permissions and session creation events that follow log-viewer activity.

How to Mitigate CVE-2024-11986

Immediate Actions Required

  • Apply the vendor update referenced in the CrushFTP Update Documentation to the latest fixed release.
  • Restrict access to the administrative web interface to trusted networks or VPN ranges until the patch is verified.
  • Rotate administrator credentials and active session tokens if any unexplained log entries with HTML content are present.
  • Purge or archive log files that contain suspicious Host header payloads after forensic review.

Patch Information

Follow the vendor upgrade procedure documented at CrushFTP Update Documentation. Confirm the running build version after upgrade and re-test the log viewer with a benign Host header payload such as <test-marker> to validate that output encoding is enforced.

Workarounds

  • Place the web service behind a reverse proxy that validates Host header values against an allowlist and rejects requests with malformed or script-laden headers.
  • Enforce a strict Content-Security-Policy on the administrative UI to block inline script execution and remote script loading.
  • Limit administrator log-viewing to a hardened jump host with no access to sensitive resources, reducing impact if a payload executes.
  • Use a text-based log viewer outside the application UI for routine log review until the patched version is deployed.
bash
# Example reverse proxy Host header allowlist (nginx)
map $http_host $host_ok {
    default                 0;
    "ftp.example.com"       1;
    "ftp.example.com:443"   1;
}

server {
    listen 443 ssl;
    if ($host_ok = 0) { return 400; }
    location / { proxy_pass http://crushftp_backend; }
}

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechN/A

  • SeverityCRITICAL

  • CVSS Score9.6

  • EPSS Probability0.81%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-79
  • Technical References
  • CrushFTP Update Documentation
  • Latest CVEs
  • CVE-2024-8261: Prolizyazilim OBS Auth Bypass Vulnerability

  • CVE-2024-13068: LimonDesk Auth Bypass Vulnerability

  • CVE-2025-53679: Fortinet FortiSandbox RCE Vulnerability

  • CVE-2026-9446: Simple POS Inventory System SQLi Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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