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

CVE-2026-29070: Open WebUI Auth Bypass Vulnerability

CVE-2026-29070 is an authorization bypass flaw in Open WebUI allowing unauthorized file deletion across knowledge bases. This article covers the technical details, affected versions, security impact, and mitigation.

Published: April 3, 2026

CVE-2026-29070 Overview

Open WebUI is a self-hosted artificial intelligence platform designed to operate entirely offline. A missing access control vulnerability was identified in Open WebUI prior to version 0.8.6 that allows authenticated users to delete arbitrary files from any knowledge base within the system. The vulnerability stems from an incomplete authorization check when processing file deletion requests from knowledge bases.

Critical Impact

Authenticated users with write access to any knowledge base can delete files from arbitrary knowledge bases across the system, potentially leading to significant data loss and integrity compromise of AI training data and organizational knowledge repositories.

Affected Products

  • Open WebUI versions prior to 0.8.6
  • openwebui open_webui (all versions before patch)

Discovery Timeline

  • 2026-03-27 - CVE CVE-2026-29070 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-29070

Vulnerability Analysis

This vulnerability is classified under CWE-862 (Missing Authorization). The core issue lies in the file deletion endpoint of Open WebUI's knowledge base management functionality. When a user attempts to delete a file from a knowledge base, the application correctly verifies that the user has write access to the knowledge base or holds administrative privileges. However, the authorization logic fails to validate whether the target file actually belongs to the knowledge base the user is accessing.

This gap in access control creates a situation where an attacker with legitimate write access to one knowledge base can reference file identifiers from completely different knowledge bases and successfully delete those files. The attack requires knowledge of valid file identifiers, which could potentially be obtained through enumeration or information disclosure vulnerabilities.

Root Cause

The root cause is a missing authorization check in the file deletion logic. The application implements a partial access control mechanism that validates user permissions at the knowledge base level but omits the critical step of verifying file-to-knowledge-base association. This incomplete authorization pattern is a common implementation oversight in multi-tenant or resource-hierarchical applications where access control must be enforced at multiple levels of the object hierarchy.

Attack Vector

The attack is network-accessible and requires low-privilege authentication. An attacker must:

  1. Authenticate to the Open WebUI platform with credentials that grant write access to at least one knowledge base
  2. Identify or enumerate file IDs belonging to target knowledge bases (files the attacker should not have access to)
  3. Submit a file deletion request through the knowledge base interface, specifying the target file ID
  4. The system processes the deletion based solely on the user's write access to their own knowledge base, without validating that the file belongs to that knowledge base

The vulnerability does not require user interaction and can be exploited programmatically against the API endpoints. The impact primarily affects data integrity and availability, as attackers can destroy files containing critical AI training data, organizational knowledge, or other sensitive information stored in knowledge bases they should not have access to.

Detection Methods for CVE-2026-29070

Indicators of Compromise

  • Unusual patterns of file deletion requests where the requesting user's knowledge base differs from the file's parent knowledge base
  • Audit log entries showing file deletions from knowledge bases where the acting user has no legitimate business need
  • Reports from users about missing files in knowledge bases they manage
  • Anomalous spikes in file deletion API calls from individual user accounts

Detection Strategies

  • Implement API request logging that captures both the user's authorized knowledge bases and the target file's parent knowledge base for all deletion operations
  • Create alerting rules for file deletion requests where the file ID does not match any files within the user's authorized knowledge bases
  • Monitor for sequential or bulk file deletion patterns that may indicate enumeration-based attacks
  • Deploy application-layer intrusion detection to flag authorization bypass attempts

Monitoring Recommendations

  • Enable comprehensive audit logging for all knowledge base file operations including create, read, update, and delete actions
  • Correlate user session activity with file deletion events to identify unauthorized cross-knowledge-base access patterns
  • Establish baseline metrics for normal file deletion behavior and alert on statistical anomalies
  • Review access logs periodically to identify potential exploitation attempts against unpatched instances

How to Mitigate CVE-2026-29070

Immediate Actions Required

  • Upgrade Open WebUI to version 0.8.6 or later immediately to address this vulnerability
  • Review audit logs for any suspicious file deletion activity that may indicate prior exploitation
  • Inventory all knowledge bases and verify file integrity against known-good backups
  • Temporarily restrict write access to knowledge bases to trusted administrators until patching is complete

Patch Information

The vulnerability is patched in Open WebUI version 0.8.6. Organizations should upgrade to this version or later as soon as possible. For detailed information about the security fix, refer to the GitHub Security Advisory GHSA-26gm-93rw-cchf.

Workarounds

  • If immediate patching is not possible, restrict network access to the Open WebUI instance to trusted networks only
  • Implement a reverse proxy or web application firewall (WAF) rule to validate that file deletion requests only target files within the user's authorized knowledge bases
  • Temporarily disable file deletion functionality at the application or proxy level until the patch can be applied
  • Reduce the number of users with write access to knowledge bases to limit potential attack surface

The recommended approach is to apply the official patch by upgrading to version 0.8.6. No specific configuration mitigations can fully address this vulnerability without the code-level fix, so upgrade should be prioritized.

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechOpen Webui

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-862
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34222: Open WebUI Auth Bypass Vulnerability

  • CVE-2026-34225: Open WebUI Blind SSRF Vulnerability

  • CVE-2026-26193: Open WebUI Stored XSS Vulnerability

  • CVE-2026-26192: Open WebUI Stored 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