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-2026-41239

CVE-2026-41239: DOMPurify XSS Vulnerability

CVE-2026-41239 is a cross-site scripting flaw in DOMPurify that bypasses SAFE_FOR_TEMPLATES sanitization in DOM modes, enabling XSS attacks via template frameworks like Vue 2. This article covers technical details, affected versions, impact, and mitigation.

Published: April 23, 2026

CVE-2026-41239 Overview

CVE-2026-41239 is a Cross-Site Scripting (XSS) vulnerability in DOMPurify, a widely-used DOM-only sanitizer for HTML, MathML, and SVG content. The vulnerability exists in the SAFE_FOR_TEMPLATES configuration option, which is designed to strip template expressions like {{...}} from untrusted HTML to prevent XSS attacks in template-evaluating frameworks. However, this protection only functions correctly in string mode and fails to sanitize template expressions when using RETURN_DOM or RETURN_DOM_FRAGMENT modes, allowing attackers to inject malicious template expressions that can be evaluated by frameworks like Vue 2.

Critical Impact

Applications using DOMPurify with SAFE_FOR_TEMPLATES enabled alongside RETURN_DOM or RETURN_DOM_FRAGMENT modes in combination with template-evaluating frameworks (such as Vue 2) are vulnerable to XSS attacks that bypass the sanitization controls.

Affected Products

  • DOMPurify versions 1.0.10 through 3.3.x
  • Applications using SAFE_FOR_TEMPLATES with RETURN_DOM or RETURN_DOM_FRAGMENT
  • Web applications integrating DOMPurify with Vue 2 or similar template-evaluating frameworks

Discovery Timeline

  • 2026-04-23 - CVE CVE-2026-41239 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-41239

Vulnerability Analysis

This vulnerability represents a critical flaw in DOMPurify's template expression sanitization logic. The SAFE_FOR_TEMPLATES option was introduced to protect against XSS attacks in applications that use client-side template engines by stripping dangerous template expressions such as {{...}}, <%...%>, and similar patterns that could be interpreted and executed by frameworks like Vue.js, AngularJS, or other template-based systems.

The root of the vulnerability lies in an inconsistent implementation of the sanitization routine across different return modes. When DOMPurify returns sanitized content as a string (default behavior), the template expression stripping works as expected. However, when applications configure DOMPurify to return a DOM node (RETURN_DOM: true) or a DocumentFragment (RETURN_DOM_FRAGMENT: true), the template expression sanitization is bypassed entirely.

This inconsistency creates a dangerous security gap for applications that rely on DOM return modes for performance reasons or architectural requirements, while simultaneously depending on SAFE_FOR_TEMPLATES for XSS protection.

Root Cause

The vulnerability stems from the SAFE_FOR_TEMPLATES sanitization logic being implemented only in the string serialization path of DOMPurify's output generation. When DOM nodes or fragments are returned directly, the code path responsible for stripping template expressions is not executed, leaving the dangerous template syntax intact within the returned DOM structure. This is classified as CWE-79 (Improper Neutralization of Input During Web Page Generation).

Attack Vector

An attacker can exploit this vulnerability by crafting malicious HTML input containing template expressions such as {{constructor.constructor('alert(document.cookie)')()}} for Vue 2. When this input is processed by a vulnerable DOMPurify configuration that uses RETURN_DOM or RETURN_DOM_FRAGMENT with SAFE_FOR_TEMPLATES enabled, the template expressions pass through unsanitized. If the resulting DOM is subsequently processed by a template-evaluating framework like Vue 2, the malicious expressions are evaluated, resulting in JavaScript execution in the context of the victim's browser session.

The attack requires network access and user interaction (such as viewing a page containing the malicious content), but no authentication or special privileges are needed to craft and deliver the malicious payload.

Detection Methods for CVE-2026-41239

Indicators of Compromise

  • Unusual template expression patterns in user-generated content containing JavaScript code or prototype chain access
  • Client-side JavaScript errors related to unexpected template evaluation in Vue.js or similar frameworks
  • Detection of payloads containing nested constructor calls like {{constructor.constructor(...)()}}
  • Web application firewall logs showing attempts to inject {{...}} patterns with JavaScript code

Detection Strategies

  • Audit application code for DOMPurify configurations that combine SAFE_FOR_TEMPLATES with RETURN_DOM or RETURN_DOM_FRAGMENT options
  • Implement Content Security Policy (CSP) headers to detect and prevent inline script execution from template injection
  • Monitor JavaScript console errors for unexpected template compilation or evaluation attempts
  • Review web server access logs for patterns consistent with template injection payloads

Monitoring Recommendations

  • Enable verbose logging for user input handling in applications using DOMPurify
  • Implement real-time alerting for CSP violation reports that may indicate XSS exploitation attempts
  • Deploy browser-based XSS detection through SentinelOne's endpoint protection capabilities
  • Monitor for anomalous DOM manipulation patterns that could indicate successful exploitation

How to Mitigate CVE-2026-41239

Immediate Actions Required

  • Upgrade DOMPurify to version 3.4.0 or later immediately
  • Review all DOMPurify configurations in your codebase for the vulnerable combination of options
  • If immediate upgrade is not possible, switch from RETURN_DOM or RETURN_DOM_FRAGMENT to string return mode when SAFE_FOR_TEMPLATES is required
  • Implement defense-in-depth with strict Content Security Policy headers to mitigate potential bypass scenarios

Patch Information

The vulnerability has been addressed in DOMPurify version 3.4.0. The fix ensures that template expression sanitization is consistently applied regardless of the return mode configured. Organizations should update to this version or later to remediate the vulnerability. For detailed information, refer to the GitHub DOMPurify Release 3.4.0 and the GitHub Security Advisory GHSA-crv5-9vww-q3g8.

Workarounds

  • Avoid using RETURN_DOM or RETURN_DOM_FRAGMENT options when SAFE_FOR_TEMPLATES protection is required
  • Implement additional server-side sanitization for template expressions before passing content to DOMPurify
  • Consider using a secondary sanitization pass on the serialized output when DOM return modes are architecturally necessary
  • Disable template evaluation in client-side frameworks for untrusted content sections where possible
bash
# Update DOMPurify to patched version
npm update dompurify@^3.4.0

# Or install specific version
npm install dompurify@3.4.0

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechDompurify

  • SeverityMEDIUM

  • CVSS Score6.8

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub DOMPurify Release 3.4.0

  • GitHub Security Advisory GHSA-crv5-9vww-q3g8
  • Related CVEs
  • CVE-2026-41240: DOMPurify XSS Vulnerability

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

  • CVE-2026-0540: Cure53 DOMPurify XSS Vulnerability

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