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

CVE-2026-44568: Open WebUI XSS Vulnerability

CVE-2026-44568 is a cross-site scripting flaw in Open WebUI's AccountPending component that allows admins to inject malicious JavaScript. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 21, 2026

CVE-2026-44568 Overview

CVE-2026-44568 is a stored cross-site scripting (XSS) vulnerability in Open WebUI, a self-hosted artificial intelligence platform that operates entirely offline. The flaw exists in the AccountPending.svelte component, which renders admin-configured "Pending User Overlay Content" using marked.parse() inside an {@html} block with an incorrect DOMPurify application order. An administrator can inject arbitrary JavaScript into the overlay content, which then executes in the browser of any pending user who views the page. The issue is classified under CWE-79 and is fixed in Open WebUI version 0.9.0.

Critical Impact

A privileged administrator can inject persistent JavaScript that executes in the browser context of pending users, enabling session hijacking, credential theft, or further client-side attacks.

Affected Products

  • Open WebUI versions prior to 0.9.0
  • Self-hosted Open WebUI deployments using the AccountPending.svelte overlay component
  • Open WebUI instances where multiple administrators or untrusted admins exist

Discovery Timeline

  • 2026-05-15 - CVE-2026-44568 published to NVD
  • 2026-05-19 - Last updated in NVD database

Technical Details for CVE-2026-44568

Vulnerability Analysis

The vulnerability resides in the AccountPending.svelte component of Open WebUI. The component is responsible for rendering an overlay shown to users whose accounts await administrator approval. To support formatted text, the overlay passes admin-supplied content through marked.parse(), which converts Markdown into HTML, and then injects the result into the DOM via Svelte's {@html} directive.

The sanitization pipeline applies DOMPurify in the wrong order relative to Markdown parsing. Because sanitization does not effectively cover the final HTML rendered into the DOM, dangerous constructs survive and execute when the browser parses the markup. The result is a persistent (stored) XSS primitive triggered automatically on page load for any pending user.

Root Cause

The root cause is improper neutralization of input during web page generation [CWE-79]. Sanitization must operate on the final HTML output that will be inserted into the DOM. In this component, DOMPurify is invoked at a stage that allows marked.parse() to reintroduce or preserve unsafe HTML, including inline event handlers and script-bearing attributes, before rendering through {@html}.

Attack Vector

Exploitation requires high privileges because only an administrator can configure the Pending User Overlay Content. The attack is network-reachable and requires user interaction in the form of a pending user visiting the overlay page. Once an attacker with admin access stores the payload, every pending user who loads the overlay executes the injected JavaScript in their authenticated browser context. This enables cookie theft, CSRF against the Open WebUI API, redirection to phishing pages, and pivoting through the victim's session. The scope is changed because the script executes in the user's browser sandbox under the Open WebUI origin, affecting resources beyond the attacker's own account.

No public proof-of-concept code is available. Refer to the GitHub Security Advisory GHSA-fq3v-xjjx-95rc for vendor technical details.

Detection Methods for CVE-2026-44568

Indicators of Compromise

  • Unexpected <script> tags, javascript: URIs, or inline event handlers (such as onerror, onload) stored in the Open WebUI Pending User Overlay Content configuration
  • Outbound HTTP requests from pending user browsers to unfamiliar domains shortly after loading the account-pending page
  • Anomalous session token usage or API calls originating from pending user accounts that have not yet been approved

Detection Strategies

  • Audit the Open WebUI database and admin configuration for the Pending User Overlay Content field, searching for HTML tags, script content, or encoded payloads
  • Review administrator activity logs for changes to overlay or onboarding configuration made by unexpected accounts
  • Inspect browser Content Security Policy (CSP) violation reports for blocked inline script executions on the account-pending route

Monitoring Recommendations

  • Enable verbose audit logging for all administrative configuration changes in Open WebUI
  • Monitor reverse proxy or web server logs for /auth and account-pending route traffic correlated with suspicious outbound activity
  • Track the deployed Open WebUI version across all instances and alert on any version below 0.9.0

How to Mitigate CVE-2026-44568

Immediate Actions Required

  • Upgrade all Open WebUI deployments to version 0.9.0 or later, which contains the fix
  • Review and sanitize the existing Pending User Overlay Content configuration, removing any HTML or scripting constructs
  • Audit the list of administrator accounts and rotate credentials for any admin whose access is no longer required

Patch Information

The vulnerability is fixed in Open WebUI 0.9.0. The patch corrects the order of DOMPurify sanitization relative to marked.parse() output in the AccountPending.svelte component so that the final HTML injected through {@html} is sanitized before rendering. See the Open WebUI Security Advisory GHSA-fq3v-xjjx-95rc for vendor guidance.

Workarounds

  • Clear the Pending User Overlay Content field until the upgrade can be completed
  • Restrict administrative access to trusted personnel only and enforce multi-factor authentication for admin logins
  • Deploy a strict Content Security Policy that disallows inline scripts and untrusted external script sources for the Open WebUI origin
bash
# Upgrade Open WebUI to the patched version using Docker
docker pull ghcr.io/open-webui/open-webui:0.9.0
docker stop open-webui
docker rm open-webui
docker run -d --name open-webui \
  -p 3000:8080 \
  -v open-webui:/app/backend/data \
  ghcr.io/open-webui/open-webui:0.9.0

# Verify the running version
docker exec open-webui cat /app/backend/open_webui/env.py | grep VERSION

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechOpenwebui

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-45315: Open WebUI XSS Vulnerability

  • CVE-2026-44549: Open WebUI XSS Vulnerability

  • CVE-2026-45303: Open WebUI XSS Vulnerability

  • CVE-2026-44721: Open WebUI Stored XSS Vulnerability
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