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

CVE-2026-45397: Open WebUI Auth Bypass Vulnerability

CVE-2026-45397 is an authentication bypass flaw in Open WebUI that exposes RAG pipeline configuration to unauthenticated clients. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 21, 2026

CVE-2026-45397 Overview

CVE-2026-45397 is an information disclosure vulnerability in Open WebUI, a self-hosted artificial intelligence platform designed to operate entirely offline. The GET /api/v1/retrieval/ endpoint returns the live Retrieval-Augmented Generation (RAG) pipeline configuration to any unauthenticated HTTP client. The endpoint requires no Authorization header, cookie, or API key to access. Adjacent endpoints on the same router, including /embedding and /config, are correctly protected by the get_admin_user dependency, making this a targeted authentication omission. The issue is fixed in Open WebUI version 0.9.5 and is classified under [CWE-306: Missing Authentication for Critical Function].

Critical Impact

Unauthenticated remote attackers can retrieve live RAG pipeline configuration data from exposed Open WebUI instances prior to version 0.9.5.

Affected Products

  • Open WebUI versions prior to 0.9.5
  • Self-hosted Open WebUI deployments exposing the /api/v1/retrieval/ endpoint
  • Open WebUI instances reachable over the network without upstream authentication controls

Discovery Timeline

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

Technical Details for CVE-2026-45397

Vulnerability Analysis

The vulnerability resides in the retrieval router of Open WebUI. The GET /api/v1/retrieval/ route handler omits the FastAPI dependency that enforces administrator authentication. Sibling endpoints on the same router, such as /api/v1/retrieval/embedding and /api/v1/retrieval/config, correctly declare Depends(get_admin_user). The missing dependency on the index route allows any network client to read the active RAG pipeline configuration.

The disclosed configuration includes parameters that describe how the platform processes documents and queries internal knowledge sources. Attackers can use this information to map the deployment, identify embedding models in use, and plan follow-on attacks against the AI workload. The CWE-306 classification reflects the absence of authentication on a function that handles sensitive configuration data.

Root Cause

The root cause is a missing authentication dependency on a single FastAPI route. The pattern of consistent protection across neighboring endpoints indicates a developer oversight rather than a design decision. Because Open WebUI relies on per-route dependencies for access control, an omitted decorator produces an immediate authentication bypass for that path.

Attack Vector

Exploitation requires only network reachability to the Open WebUI HTTP service. An attacker sends an unauthenticated GET request to /api/v1/retrieval/ and receives the configuration payload in the response body. No user interaction, credentials, or prior access are required. Internet-exposed instances and instances reachable from untrusted internal networks are at risk.

No verified public exploit code is available for this issue. See the GitHub Security Advisory GHSA-65pg-qhhw-mxwg for vendor technical details.

Detection Methods for CVE-2026-45397

Indicators of Compromise

  • Unauthenticated GET requests to /api/v1/retrieval/ in Open WebUI access logs
  • Successful HTTP 200 responses to /api/v1/retrieval/ from clients without session cookies or bearer tokens
  • Scanning patterns enumerating /api/v1/retrieval/* paths from a single source IP

Detection Strategies

  • Inspect reverse proxy and application logs for requests to /api/v1/retrieval/ lacking an Authorization header or authenticated session cookie
  • Compare request volume to the retrieval endpoint against baseline administrator activity to identify anomalies
  • Alert on requests to /api/v1/retrieval/ originating from IP ranges outside expected administrator networks

Monitoring Recommendations

  • Forward Open WebUI HTTP access logs to a central log platform and retain at least 90 days of history
  • Track the running Open WebUI version across deployments and alert on instances below 0.9.5
  • Monitor egress from Open WebUI hosts for unexpected connections that may indicate post-disclosure follow-on activity

How to Mitigate CVE-2026-45397

Immediate Actions Required

  • Upgrade Open WebUI to version 0.9.5 or later on all self-hosted deployments
  • Restrict network access to Open WebUI so the HTTP service is not reachable from untrusted networks
  • Rotate any secrets, API keys, or embedding service credentials that may have been referenced in the exposed RAG configuration
  • Review access logs for prior unauthenticated requests to /api/v1/retrieval/

Patch Information

The vendor fixed the issue in Open WebUI 0.9.5 by adding the get_admin_user authentication dependency to the affected retrieval route. Administrators should apply the upgrade by following the official release instructions referenced in the GitHub Security Advisory GHSA-65pg-qhhw-mxwg.

Workarounds

  • Place Open WebUI behind a reverse proxy that enforces authentication on /api/v1/retrieval/ until the upgrade is applied
  • Block external access to /api/v1/retrieval/ at the network or web application firewall layer
  • Limit Open WebUI exposure to a VPN or zero-trust access gateway
bash
# Example NGINX block for /api/v1/retrieval/ pending upgrade to 0.9.5
location = /api/v1/retrieval/ {
    deny all;
    return 403;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechOpenwebui

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.04%

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

  • CVE-2026-45386: Open WebUI Auth Bypass Vulnerability

  • CVE-2026-45365: Open WebUI Auth Bypass Vulnerability

  • CVE-2026-45349: Open WebUI Auth Bypass 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