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

CVE-2026-44566: Open WebUI Path Traversal Vulnerability

CVE-2026-44566 is a path traversal vulnerability in Open WebUI that allows attackers to upload files anywhere on the filesystem. This article covers the technical details, affected versions before 0.1.124, and mitigation steps.

Published: May 21, 2026

CVE-2026-44566 Overview

CVE-2026-44566 is a path traversal vulnerability in Open WebUI, a self-hosted artificial intelligence platform designed to operate offline. The flaw affects all versions prior to 0.1.124. When a user attaches a file to a prompt, Open WebUI derives the filename from the original HTTP upload request without validating or sanitizing it. Attackers can submit filenames containing dot-segments (../) to escape the intended uploads directory. This allows file writes anywhere on the filesystem accessible to the web server process. The issue is tracked under [CWE-22] and fixed in version 0.1.124.

Critical Impact

Unauthenticated attackers can write arbitrary files to any filesystem location writable by the Open WebUI process, leading to potential remote code execution.

Affected Products

  • Open WebUI versions prior to 0.1.124
  • Self-hosted Open WebUI deployments accepting file attachments in prompts
  • All operating systems running the affected Open WebUI server

Discovery Timeline

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

Technical Details for CVE-2026-44566

Vulnerability Analysis

The vulnerability resides in the file attachment handler within Open WebUI's prompt processing pipeline. When a user uploads a file to attach to a prompt, the server takes the filename directly from the HTTP request's Content-Disposition header or multipart form field. The application then constructs the destination path by joining the configured uploads directory with the attacker-controlled filename. Because no sanitization removes ../ sequences or normalizes the resulting path, attackers can traverse outside the intended uploads directory.

The impact scope depends on the privileges of the user running the Open WebUI process. Common outcomes include overwriting configuration files, planting executable scripts in autostart locations, replacing trusted binaries, or corrupting model files. On systems where Open WebUI runs with elevated privileges, attackers can achieve full host compromise.

Root Cause

The root cause is missing input validation on filenames received from HTTP upload requests. The application trusts client-supplied filenames and uses them directly in filesystem operations. A correct implementation must reject or sanitize filenames containing dot-segments, absolute path prefixes, or null bytes before constructing the destination path.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction in vulnerable configurations. An attacker sends a crafted multipart HTTP request to the Open WebUI file attachment endpoint with a filename such as ../../../../etc/cron.d/payload. The server writes the file contents to the resolved path. Repeated requests allow attackers to plant multiple files across the filesystem.

For technical details, refer to the Open WebUI GHSA-9pgh-j74g-qj6m Advisory.

Detection Methods for CVE-2026-44566

Indicators of Compromise

  • HTTP requests to Open WebUI upload endpoints containing ../, ..\, or URL-encoded variants (%2e%2e%2f) in the filename field
  • New or modified files in sensitive directories such as /etc/cron.d/, ~/.ssh/, or web server document roots correlated with Open WebUI process activity
  • Unexpected child processes spawned by the Open WebUI service user
  • Files appearing outside the configured Open WebUI uploads directory with creation timestamps matching upload request logs

Detection Strategies

  • Inspect web server and reverse proxy access logs for upload requests containing dot-segment patterns in multipart form data
  • Monitor filesystem write events from the Open WebUI process and alert on writes outside the designated uploads directory
  • Deploy file integrity monitoring on system directories such as /etc, /var/spool/cron, and user home directories

Monitoring Recommendations

  • Enable verbose logging on the Open WebUI application and forward logs to a centralized analytics platform for correlation
  • Track process execution and file creation events from the Open WebUI service account using endpoint telemetry
  • Establish a baseline of expected file paths under the uploads directory and alert on deviations

How to Mitigate CVE-2026-44566

Immediate Actions Required

  • Upgrade Open WebUI to version 0.1.124 or later without delay
  • Audit the filesystem for unexpected files written by the Open WebUI process since deployment
  • Restrict the Open WebUI service account to a minimal, non-privileged user with write access limited to the uploads directory
  • Place Open WebUI behind an authenticated reverse proxy if exposed to untrusted networks

Patch Information

The maintainers fixed the vulnerability in Open WebUI 0.1.124. The patch adds filename validation and sanitization to strip dot-segments before constructing the destination path. Review the GitHub Security Advisory GHSA-9pgh-j74g-qj6m for full remediation details.

Workarounds

  • Run Open WebUI inside a container or chroot with a read-only root filesystem and a dedicated writable volume for uploads
  • Apply AppArmor or SELinux policies to restrict filesystem write paths for the Open WebUI process
  • Disable file attachment functionality until the patch is applied if upgrade is not immediately possible
bash
# Example: run Open WebUI with restricted filesystem access via Docker
docker run -d \
  --name open-webui \
  --read-only \
  --tmpfs /tmp \
  -v /srv/openwebui/uploads:/app/backend/data/uploads \
  --user 1000:1000 \
  --cap-drop=ALL \
  -p 127.0.0.1:8080:8080 \
  ghcr.io/open-webui/open-webui:0.1.124

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechOpenwebui

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.08%

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

  • CVE-2026-45315: Open WebUI XSS Vulnerability

  • CVE-2026-45672: Open WebUI RCE Vulnerability

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