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

CVE-2026-44565: Open WebUI Path Traversal Vulnerability

CVE-2026-44565 is a path traversal flaw in Open WebUI that allows attackers to upload files anywhere on the filesystem. This post covers the technical details, affected versions, impact, and mitigation steps.

Published: May 21, 2026

CVE-2026-44565 Overview

CVE-2026-44565 is a path traversal vulnerability in Open WebUI, a self-hosted artificial intelligence platform designed to operate entirely offline. Versions prior to 0.6.10 derive the stored filename of audio uploads directly from the HTTP request without validation or sanitization. Authenticated users can supply filenames containing dot-segments such as ../ and write files outside the intended uploads directory. The flaw maps to CWE-22 and is fixed in version 0.6.10.

Critical Impact

Authenticated attackers can write arbitrary files anywhere the web server process has filesystem permissions, enabling integrity compromise and potential code execution paths.

Affected Products

  • Open WebUI versions prior to 0.6.10
  • Self-hosted Open WebUI deployments exposing the audio upload endpoint
  • Open WebUI instances running with elevated filesystem permissions

Discovery Timeline

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

Technical Details for CVE-2026-44565

Vulnerability Analysis

The vulnerability resides in Open WebUI's audio file upload handler. When a client submits an audio file, the server uses the filename provided in the HTTP upload request as the final storage name. The handler performs no canonicalization, no allowlist filtering, and no rejection of path separators or dot-segments.

An authenticated user can craft a request whose filename contains traversal sequences such as ../../etc/cron.d/payload. The server resolves this relative to the uploads directory and writes the attacker-controlled content at the traversed location. The write occurs with the privileges of the user running the Open WebUI process.

Because Open WebUI is frequently deployed in containers or under service accounts that own application code and configuration, an attacker can target files inside the application directory itself. Overwriting Python modules, templates, or configuration loaded by the platform creates a path to code execution within the AI service.

Root Cause

The root cause is missing input validation on a user-controlled filename, a classic CWE-22 Improper Limitation of a Pathname to a Restricted Directory. The upload handler trusts the client-supplied name and concatenates it with the uploads base path without invoking a safe-join routine or stripping .. components.

Attack Vector

Exploitation requires network access to the Open WebUI instance and valid low-privilege credentials. The attacker issues a multipart upload request to the audio endpoint with a filename containing dot-segments pointing to the target write location. No user interaction is required after authentication. Refer to the Open WebUI GHSA-j3fw-wc48-29g3 advisory for vendor-confirmed technical details.

Detection Methods for CVE-2026-44565

Indicators of Compromise

  • Audio upload requests where the filename parameter contains ../, ..\, URL-encoded %2e%2e%2f, or absolute path prefixes
  • New or modified files in directories outside the configured Open WebUI uploads path, owned by the Open WebUI service account
  • Unexpected files appearing in sensitive locations such as ~/.ssh/, /etc/cron.d/, or the Open WebUI application directory
  • HTTP 200 responses to audio upload requests carrying suspicious filenames

Detection Strategies

  • Inspect reverse proxy and application access logs for upload requests whose Content-Disposition filename field contains traversal sequences
  • Enable filesystem integrity monitoring on the host or container running Open WebUI, focusing on application code, configuration, and user home directories
  • Alert on process writes by the Open WebUI service account to paths outside the designated uploads directory

Monitoring Recommendations

  • Forward Open WebUI access logs and host filesystem events to a centralized analytics platform for correlation
  • Baseline the expected uploads directory contents and alert on writes that resolve outside it
  • Track authentication events that precede upload activity to scope which accounts may be abused

How to Mitigate CVE-2026-44565

Immediate Actions Required

  • Upgrade Open WebUI to version 0.6.10 or later on all self-hosted instances
  • Audit the filesystem for files written by the Open WebUI service account outside the uploads directory since deployment
  • Rotate any credentials, tokens, or keys reachable from the Open WebUI process if compromise is suspected
  • Restrict network exposure of the Open WebUI interface to trusted users and networks until patched

Patch Information

The vendor has released a fix in Open WebUI 0.6.10. The patched version validates and sanitizes the uploaded audio filename before constructing the destination path. See the Open WebUI GHSA-j3fw-wc48-29g3 advisory for release notes and upgrade guidance.

Workarounds

  • Run Open WebUI under a dedicated, unprivileged service account whose write permissions are scoped to the uploads directory only
  • Deploy Open WebUI inside a container with a read-only root filesystem and a writable volume mounted exclusively at the uploads path
  • Place an authenticating reverse proxy in front of Open WebUI and reject upload requests whose filename field contains .., /, \, or encoded equivalents
bash
# Configuration example: restrict the Open WebUI container filesystem
docker run -d \
  --name open-webui \
  --read-only \
  --tmpfs /tmp \
  -v open-webui-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.6.10

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

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.07%

  • 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-22
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44566: 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