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

CVE-2026-45400: Open WebUI SSRF Bypass Vulnerability

CVE-2026-45400 is an SSRF bypass vulnerability in Open WebUI caused by parsing differences between urlparse and requests libraries. This article covers the technical details, affected versions prior to 0.9.5, and mitigation.

Published: May 21, 2026

CVE-2026-45400 Overview

CVE-2026-45400 is a Server-Side Request Forgery (SSRF) bypass vulnerability in Open WebUI, a self-hosted artificial intelligence platform designed to operate entirely offline. The flaw stems from a parsing difference between the Python urlparse function and the requests library. Attackers with low privileges can exploit this URL parser differential to bypass SSRF protections and force the server to issue requests to unintended destinations. The vulnerability affects all versions prior to 0.9.5 and is tracked under CWE-918: Server-Side Request Forgery.

Critical Impact

Authenticated attackers can bypass URL validation to reach internal network resources, cloud metadata endpoints, and other restricted services accessible from the Open WebUI host.

Affected Products

  • Open WebUI versions prior to 0.9.5
  • Self-hosted Open WebUI deployments using URL-based fetching features
  • Open WebUI instances exposed to authenticated user input

Discovery Timeline

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

Technical Details for CVE-2026-45400

Vulnerability Analysis

The vulnerability arises from inconsistent URL parsing behavior between two Python components used inside Open WebUI. The validation logic uses urlparse from the standard library to inspect a user-supplied URL and determine whether the target host is safe. The outbound HTTP call is then performed by the requests library, which parses the same URL using different rules.

This differential allows an attacker to craft a URL that urlparse interprets as pointing to an allowed host, while requests resolves it to an internal or restricted destination. The validation and fetching stages disagree on what the URL means, enabling SSRF requests that the protection layer believes it has blocked. The flaw is fixed in Open WebUI version 0.9.5.

Root Cause

The root cause is a parser confusion condition between urlparse and the URL handling inside requests. Differences in how each library treats edge cases such as embedded credentials, unusual authority components, IPv6 brackets, or malformed host segments produce divergent host extraction. Security decisions made on one parser's output do not bind the network behavior of the other.

Attack Vector

An authenticated user submits a crafted URL to an Open WebUI feature that fetches remote content. The application validates the URL with urlparse, accepts it as external, and passes it to requests. The requests library then connects to an internal target such as 127.0.0.1, link-local addresses like 169.254.169.254, or other internal services. The server returns or processes the response, exposing internal data or enabling further lateral movement.

No verified exploit code is publicly available. Technical specifics are documented in the Open WebUI GitHub Security Advisory GHSA-8w7q-q5jp-jvgx.

Detection Methods for CVE-2026-45400

Indicators of Compromise

  • Outbound HTTP requests from the Open WebUI process to RFC1918 addresses, loopback, or cloud metadata endpoints such as 169.254.169.254
  • URLs in application logs containing unusual authority segments, embedded @ characters, or mixed host representations
  • Unexpected access patterns in internal services originating from the Open WebUI host

Detection Strategies

  • Inspect Open WebUI request logs for fetch operations targeting non-public IP ranges or cloud metadata services
  • Compare the host parsed at validation time with the host actually contacted at the network layer to identify parser disagreement
  • Alert on HTTP requests from AI platform hosts to internal infrastructure that should not be reachable from user-driven workflows

Monitoring Recommendations

  • Capture egress network telemetry from the Open WebUI host and forward it to a centralized analytics platform for review
  • Monitor authentication and request logs for low-privilege accounts performing repeated URL fetch operations
  • Track version inventory for Open WebUI deployments to confirm all instances are at 0.9.5 or later

How to Mitigate CVE-2026-45400

Immediate Actions Required

  • Upgrade Open WebUI to version 0.9.5 or later on all self-hosted instances
  • Restrict outbound network access from Open WebUI hosts to only required destinations using firewall or egress proxy rules
  • Block access from Open WebUI hosts to cloud instance metadata endpoints and internal management networks

Patch Information

The maintainers fixed CVE-2026-45400 in Open WebUI 0.9.5. The patch aligns URL handling so that the host validated by urlparse matches the host used by requests when issuing the outbound call. Review the GHSA-8w7q-q5jp-jvgx advisory for release notes and upgrade guidance.

Workarounds

  • Place Open WebUI behind an egress proxy that enforces an allow-list of permitted external hostnames
  • Deploy the application in a network segment that has no route to internal services or cloud metadata endpoints
  • Disable or restrict user-facing features that perform server-side URL fetching until the upgrade is applied
bash
# Example egress restriction using iptables to block metadata and RFC1918 access
iptables -A OUTPUT -m owner --uid-owner openwebui -d 169.254.169.254 -j REJECT
iptables -A OUTPUT -m owner --uid-owner openwebui -d 10.0.0.0/8 -j REJECT
iptables -A OUTPUT -m owner --uid-owner openwebui -d 172.16.0.0/12 -j REJECT
iptables -A OUTPUT -m owner --uid-owner openwebui -d 192.168.0.0/16 -j REJECT
iptables -A OUTPUT -m owner --uid-owner openwebui -d 127.0.0.0/8 -j REJECT

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechOpenwebui

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.03%

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

  • CVE-2026-44566: Open WebUI Path Traversal Vulnerability

  • CVE-2026-45315: Open WebUI XSS Vulnerability

  • CVE-2026-45672: Open WebUI RCE 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