Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-48910

CVE-2024-48910: Cure53 DOMPurify XSS Vulnerability

CVE-2024-48910 is a prototype pollution XSS flaw in Cure53 DOMPurify that compromises the HTML sanitizer's security. This article covers technical details, affected versions, security impact, and mitigation strategies.

Published: March 11, 2026

CVE-2024-48910 Overview

CVE-2024-48910 is a prototype pollution vulnerability affecting DOMPurify, a widely-used DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG. This vulnerability allows attackers to pollute JavaScript object prototypes, potentially leading to arbitrary code execution, denial of service, or security control bypasses in applications relying on DOMPurify for input sanitization.

Critical Impact

This prototype pollution vulnerability in DOMPurify could allow attackers to bypass XSS sanitization controls, inject malicious properties into the JavaScript prototype chain, and potentially achieve remote code execution in affected web applications.

Affected Products

  • Cure53 DOMPurify versions prior to 2.4.2

Discovery Timeline

  • 2024-10-31 - CVE-2024-48910 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2024-48910

Vulnerability Analysis

This prototype pollution vulnerability (CWE-1321) exists in DOMPurify's object cloning mechanism. The vulnerability stems from improper validation when iterating over object properties during the sanitization process. An attacker can exploit this flaw to inject properties into JavaScript's base Object.prototype, which then propagates to all objects in the application, potentially bypassing security controls or enabling further attacks.

Prototype pollution is particularly dangerous in XSS sanitizers like DOMPurify because it can undermine the very security guarantees the library is designed to provide. By polluting the prototype chain, attackers may be able to influence sanitization behavior or inject malicious content that would otherwise be filtered.

Root Cause

The root cause of CVE-2024-48910 lies in the object property iteration logic within DOMPurify's codebase. The vulnerable code used a truthy check on the result of hasOwnProperty rather than a strict equality comparison. This allowed specially crafted input to bypass property ownership validation, enabling prototype pollution through inherited properties.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by supplying maliciously crafted input to any application using a vulnerable version of DOMPurify. The crafted payload would contain properties designed to pollute the prototype chain, affecting all JavaScript objects within the application context.

javascript
// Security patch showing the fix (Source: GitHub Commit)
   var property;
 
   for (property in object) {
-    if (apply(hasOwnProperty, object, [property])) {
+    if (apply(hasOwnProperty, object, [property]) === true) {
       newObject[property] = object[property];
     }
   }

Source: GitHub Commit Update

The fix changes the truthy check to a strict boolean comparison (=== true), ensuring that only properties where hasOwnProperty explicitly returns true are copied, preventing prototype pollution via manipulated return values.

Detection Methods for CVE-2024-48910

Indicators of Compromise

  • Unusual JavaScript errors related to unexpected object properties appearing in application logs
  • Anomalous behavior in sanitization routines where previously blocked content passes through
  • Detection of __proto__, constructor, or prototype strings in user-supplied input to sanitization functions
  • Application crashes or unexpected behavior following user input processing

Detection Strategies

  • Implement dependency scanning tools to identify vulnerable DOMPurify versions (prior to 2.4.2) in your codebase
  • Deploy Web Application Firewalls (WAF) with rules to detect prototype pollution payloads in HTTP requests
  • Use Static Application Security Testing (SAST) tools to identify usage of vulnerable DOMPurify versions
  • Monitor npm/yarn audit reports for CVE-2024-48910 advisories in your dependency tree

Monitoring Recommendations

  • Enable verbose logging for XSS sanitization operations to detect anomalous sanitization bypass attempts
  • Implement runtime monitoring for unexpected modifications to Object.prototype in JavaScript environments
  • Set up automated dependency vulnerability scanning in CI/CD pipelines to catch vulnerable versions before deployment
  • Monitor application behavior for signs of prototype pollution such as unexpected property access patterns

How to Mitigate CVE-2024-48910

Immediate Actions Required

  • Upgrade DOMPurify to version 2.4.2 or later immediately
  • Audit all applications and dependencies that include DOMPurify as a direct or transitive dependency
  • Review application logs for any evidence of exploitation attempts
  • Implement input validation to reject suspicious prototype pollution payloads as a defense-in-depth measure

Patch Information

The vulnerability is fixed in DOMPurify version 2.4.2. The security patch modifies the property iteration logic to use strict boolean comparison when checking property ownership. Organizations should update their DOMPurify dependency to version 2.4.2 or later. The fix is available in the GitHub Commit Update. Additional details are available in the GitHub Security Advisory. Debian users should refer to the Debian LTS Announcement for distribution-specific guidance.

Workarounds

  • Freeze Object.prototype using Object.freeze(Object.prototype) before loading untrusted content (may break some applications)
  • Implement server-side input validation to strip known prototype pollution payloads before processing
  • Use Content Security Policy (CSP) headers to limit the impact of potential XSS if sanitization is bypassed
  • Consider implementing additional sanitization layers as defense-in-depth while awaiting patch deployment
bash
# Update DOMPurify to the patched version
npm update dompurify@2.4.2
# Or using yarn
yarn upgrade dompurify@2.4.2
# Verify installed version
npm list dompurify

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechDompurify

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability2.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-1321
  • Technical References
  • Debian LTS Announcement
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-41240: DOMPurify XSS Vulnerability

  • CVE-2026-41238: DOMPurify Prototype Pollution XSS Vulnerability

  • CVE-2026-41239: DOMPurify XSS Vulnerability

  • CVE-2026-0540: Cure53 DOMPurify XSS 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