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

CVE-2026-31833: Umbraco ASP.NET CMS XSS Vulnerability

CVE-2026-31833 is a cross-site scripting flaw in Umbraco ASP.NET CMS allowing authenticated users to inject malicious HTML. This article covers technical details, affected versions, security impact, and mitigation.

Published: March 13, 2026

CVE-2026-31833 Overview

CVE-2026-31833 is a Stored Cross-Site Scripting (XSS) vulnerability in Umbraco CMS, an ASP.NET content management system. The vulnerability exists in versions 16.2.0 through 16.5.0 and versions prior to 17.2.2. An authenticated backoffice user with access to Settings can inject malicious HTML into property type descriptions. Due to an overly permissive attributeNameCheck configuration (using the regex /.+/) in the UFM DOMPurify instance, event handler attributes such as onclick and onload, when used within Umbraco web components (umb-*, uui-*, ufm-*), were not properly filtered.

Critical Impact

Authenticated attackers with backoffice Settings access can inject persistent malicious scripts that execute in the context of other administrator sessions, potentially leading to session hijacking, privilege escalation, or unauthorized administrative actions.

Affected Products

  • Umbraco CMS versions 16.2.0 to before 16.5.1
  • Umbraco CMS versions 17.x to before 17.2.2
  • Umbraco backoffice Settings module

Discovery Timeline

  • 2026-03-10 - CVE CVE-2026-31833 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-31833

Vulnerability Analysis

This vulnerability is classified as CWE-79 (Improper Neutralization of Input During Web Page Generation), commonly known as Cross-Site Scripting (XSS). The root issue lies in the DOMPurify sanitization configuration used within the Umbraco Frontend Module (UFM).

DOMPurify is a widely-used XSS sanitizer library that filters potentially dangerous HTML content. However, Umbraco's implementation used an overly permissive regular expression (/.+/) for the attributeNameCheck configuration option. This regex effectively allows any attribute name to pass through the sanitization process, including dangerous event handler attributes like onclick, onmouseover, and onload.

The vulnerability specifically manifests when these event handler attributes are embedded within Umbraco's custom web components (prefixed with umb-*, uui-*, or ufm-*). Since these components are part of Umbraco's backoffice UI framework, the malicious payloads persist in the database and execute whenever other authenticated users view the affected property type descriptions.

Root Cause

The root cause is the misconfigured DOMPurify attributeNameCheck option using the overly permissive regex pattern /.+/. This configuration was intended to allow custom attributes used by Umbraco's web components but inadvertently permitted event handler attributes that should have been stripped during sanitization. The proper configuration should have used a more restrictive pattern that explicitly blocked known dangerous attributes or only allowed a specific allowlist of safe attribute patterns.

Attack Vector

The attack requires an authenticated user with access to the Umbraco backoffice Settings section. The attacker navigates to property type configuration and injects malicious HTML containing event handler attributes (such as onclick or onload) within the property type description field. When other administrators or content editors view these property type descriptions, the injected JavaScript executes in their browser session with their privileges.

This is a network-based attack that requires high privileges (backoffice Settings access) but no user interaction once the payload is injected, as the malicious content automatically renders when the affected pages are viewed.

The vulnerability mechanism exploits the permissive DOMPurify configuration to bypass XSS protections. An attacker could craft malicious HTML using Umbraco web components with embedded event handlers. For detailed technical information and proof of concept examples, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-31833

Indicators of Compromise

  • Unexpected JavaScript event handler attributes (onclick, onload, onmouseover, onerror) in property type description fields within the Umbraco database
  • Suspicious HTML content containing umb-*, uui-*, or ufm-* elements with inline event handlers
  • Anomalous backoffice user activity in Settings sections, particularly bulk modifications to property types
  • Browser console errors or unexpected script execution warnings when viewing property type configurations

Detection Strategies

  • Implement Content Security Policy (CSP) headers with strict script-src directives to detect and block inline script execution attempts
  • Monitor database tables storing property type descriptions for HTML content containing event handler patterns
  • Deploy Web Application Firewall (WAF) rules to detect XSS patterns in requests to backoffice endpoints
  • Review audit logs for unusual modifications to property type configurations by backoffice users

Monitoring Recommendations

  • Enable detailed logging for all backoffice Settings modifications, including user identity and content changes
  • Configure alerting for property type description updates containing suspicious HTML patterns
  • Implement real-time monitoring of client-side script execution anomalies in the backoffice interface
  • Establish baseline behavioral profiles for backoffice users and alert on deviations in Settings access patterns

How to Mitigate CVE-2026-31833

Immediate Actions Required

  • Upgrade Umbraco CMS to version 16.5.1 or later for 16.x installations
  • Upgrade Umbraco CMS to version 17.2.2 or later for 17.x installations
  • Audit existing property type descriptions for potentially malicious HTML content
  • Review backoffice user permissions and restrict Settings access to only essential personnel
  • Implement additional Content Security Policy headers as a defense-in-depth measure

Patch Information

Umbraco has released security patches in versions 16.5.1 and 17.2.2 that address this vulnerability. The fix corrects the DOMPurify attributeNameCheck configuration to properly filter dangerous event handler attributes while still allowing legitimate custom attributes used by Umbraco web components.

For detailed patch information and upgrade instructions, refer to the GitHub Security Advisory.

Workarounds

  • Restrict backoffice Settings access to only trusted administrators until patches can be applied
  • Implement a Web Application Firewall (WAF) rule to filter requests containing event handler attributes in property type description fields
  • Enable and enforce Content Security Policy headers to mitigate the impact of any successful XSS injection
  • Conduct a manual audit of all property type descriptions to identify and remove any suspicious HTML content
bash
# Example: Implementing CSP headers in IIS web.config for Umbraco
# Add to your web.config under <system.webServer><httpProtocol><customHeaders>
# <add name="Content-Security-Policy" value="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'" />

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechUmbraco

  • SeverityMEDIUM

  • CVSS Score6.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-31832: Umbraco CMS Auth Bypass Vulnerability

  • CVE-2026-31834: Umbraco CMS Privilege Escalation Flaw

  • CVE-2026-27449: Umbraco Engage Auth Bypass Vulnerability

  • CVE-2026-24687: Umbraco Forms Path Traversal 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