The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-44559

CVE-2026-44559: Open WebUI Information Disclosure Flaw

CVE-2026-44559 is an information disclosure vulnerability in Open WebUI that allows authenticated users to enumerate members of private channels by knowing their UUID. This article covers technical details, affected versions, and mitigation.

Published: May 21, 2026

CVE-2026-44559 Overview

CVE-2026-44559 is a missing authorization vulnerability [CWE-862] in Open WebUI, a self-hosted artificial intelligence platform designed to operate offline. The flaw affects the GET /api/v1/channels/{id}/members endpoint in versions prior to 0.9.0. The endpoint only enforces access checks for group and dm channel types. Standard channels, including private ones, skip the channel_has_access check entirely. Any authenticated user who knows a private channel's UUID can enumerate every user with access to that channel. The issue is patched in version 0.9.0.

Critical Impact

Authenticated users can disclose the membership of private channels by querying the channel members API endpoint with a known UUID.

Affected Products

  • Open WebUI versions prior to 0.9.0
  • Self-hosted Open WebUI deployments exposing the channels API
  • Multi-tenant Open WebUI instances with private channel usage

Discovery Timeline

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

Technical Details for CVE-2026-44559

Vulnerability Analysis

The vulnerability resides in the channel members API handler. When a client issues a GET request to /api/v1/channels/{id}/members, the server returns the list of users associated with the supplied channel UUID. The handler branches on channel type and applies the channel_has_access authorization check only when the channel type is group or dm. Standard channels, including those marked private, fall through without any membership validation. The server then returns the member list to the caller. An authenticated attacker who obtains or guesses a channel UUID can map the full set of users that have access to that channel, revealing organizational structure and private collaboration boundaries.

Root Cause

The root cause is missing function-level authorization in the channel members endpoint at lines 467-469 of the affected handler. Authorization logic is gated behind a conditional that only fires for group and dm channel types, leaving standard and private channel types without an access control gate before the member list is returned.

Attack Vector

Exploitation requires network access to the Open WebUI API and a valid authenticated session. The attacker supplies a known or leaked channel UUID to the members endpoint and receives the membership roster without being a member. No user interaction is required, and the attack does not modify data or affect availability.

No public proof-of-concept code is referenced in the advisory. Refer to the Open WebUI GitHub Security Advisory GHSA-c7wp-3qh5-55pv for vendor technical details.

Detection Methods for CVE-2026-44559

Indicators of Compromise

  • Repeated authenticated GET requests to /api/v1/channels/{id}/members from a single user account across many distinct channel UUIDs.
  • API access patterns where a user queries member lists for channels they are not a documented member of.
  • Unusual UUID enumeration sequences in Open WebUI access logs targeting the channels endpoint.

Detection Strategies

  • Parse Open WebUI HTTP access logs and alert when a single session enumerates members across more channels than a baseline threshold within a short window.
  • Correlate channel_id values in API logs against channel membership records to identify queries from non-members.
  • Flag any access to the members endpoint where the requesting user lacks a corresponding entry in the channel ACL.

Monitoring Recommendations

  • Forward Open WebUI application and reverse proxy logs to a centralized analytics pipeline for behavioral baselining.
  • Track the rate of /api/v1/channels/*/members requests per authenticated principal and alert on outliers.
  • Audit channel UUID exposure in logs, error messages, and client-side artifacts that could aid an attacker in enumeration.

How to Mitigate CVE-2026-44559

Immediate Actions Required

  • Upgrade Open WebUI to version 0.9.0 or later on all self-hosted deployments.
  • Review existing private channel membership and assume membership metadata may have been disclosed if the instance was exposed to untrusted authenticated users.
  • Rotate or invalidate any sensitive channel UUIDs that were previously embedded in shared links or external systems.

Patch Information

The vendor fixed CVE-2026-44559 in Open WebUI 0.9.0 by enforcing the channel_has_access check for standard and private channel types in the members endpoint. See the Open WebUI GitHub Security Advisory GHSA-c7wp-3qh5-55pv for the patch reference.

Workarounds

  • Restrict Open WebUI API access to trusted users through network-level controls such as VPN, SSO, or IP allowlists until the upgrade can be applied.
  • Disable or limit creation of private channels on vulnerable instances to reduce the disclosure surface.
  • Audit authenticated user accounts and revoke unnecessary sessions before patching to limit pre-patch exploitation windows.
bash
# Configuration example: upgrade Open WebUI container to the patched release
docker pull ghcr.io/open-webui/open-webui:0.9.0
docker stop open-webui
docker rm open-webui
docker run -d --name open-webui \
  -p 3000:8080 \
  -v open-webui:/app/backend/data \
  ghcr.io/open-webui/open-webui:0.9.0

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechOpenwebui

  • SeverityMEDIUM

  • CVSS Score4.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-45401: Open WebUI Information Disclosure Flaw

  • CVE-2026-44557: Open WebUI Information Disclosure Flaw

  • CVE-2026-45387: Open WebUI Information Disclosure Flaw

  • CVE-2026-45666: Open WebUI Information Disclosure Flaw
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