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

CVE-2026-44551: Open WebUI Auth Bypass Vulnerability

CVE-2026-44551 is an authentication bypass flaw in Open WebUI that allows attackers to bypass LDAP authentication using empty passwords. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 21, 2026

CVE-2026-44551 Overview

CVE-2026-44551 is an authentication bypass vulnerability in Open WebUI, a self-hosted artificial intelligence platform. Versions prior to 0.9.0 fail to validate that the password submitted to the Lightweight Directory Access Protocol (LDAP) authentication endpoint is non-empty. The LdapForm Pydantic model accepts password: str without a minimum length constraint. An empty string passes validation and triggers a Simple Bind that succeeds on permissive LDAP servers. The application then issues a full session token for the target user. The flaw maps to [CWE-287] Improper Authentication and is fixed in version 0.9.0.

Critical Impact

Unauthenticated attackers can impersonate arbitrary LDAP users and obtain full session tokens by submitting an empty password.

Affected Products

  • Open WebUI versions prior to 0.9.0
  • Deployments using LDAP authentication as an identity source
  • LDAP servers configured to permit unauthenticated or anonymous Simple Bind operations

Discovery Timeline

  • 2026-05-15 - CVE-2026-44551 published to the National Vulnerability Database (NVD)
  • 2026-05-18 - Last updated in NVD database

Technical Details for CVE-2026-44551

Vulnerability Analysis

The vulnerability resides in the LDAP authentication flow of Open WebUI. The LdapForm Pydantic model declares password: str without enforcing a minimum length. Empty strings therefore satisfy schema validation. The handler forwards these credentials to Connection.bind() against the configured LDAP server. On servers that interpret a Simple Bind with an empty password as an anonymous bind that returns success, the call returns without raising an exception. The Open WebUI handler treats this success as authenticated and issues a session token tied to the supplied username. The attacker controls the username field, which allows impersonation of any account known in the directory, including administrative users.

Root Cause

The root cause is missing input validation on a security-critical credential field combined with reliance on LDAP server behavior to reject empty-password binds. Most LDAP implementations, including OpenLDAP and Active Directory in default configurations, treat Simple Bind with a non-empty DN and empty password as an anonymous bind that returns success. The application interprets this protocol-level success as proof of authentication.

Attack Vector

The attack vector is network-based and requires no prior authentication or user interaction. An attacker sends an HTTP POST request to the Open WebUI LDAP login endpoint with a valid username and an empty password field. The server performs the bind, receives a success response from the LDAP server, and returns a session token for the chosen account. The attacker then uses this token to access the platform with the target user's privileges. The vulnerability mechanism is described in the GitHub Security Advisory GHSA-2r4p-jpmg-48f4.

Detection Methods for CVE-2026-44551

Indicators of Compromise

  • HTTP POST requests to the Open WebUI LDAP authentication endpoint containing an empty password parameter
  • LDAP server logs showing successful Simple Bind events with empty password values originating from the Open WebUI host
  • Session tokens issued to privileged accounts without a corresponding interactive login or multi-factor challenge
  • Unexpected authentications from the Open WebUI service account followed by privileged actions inside the platform

Detection Strategies

  • Inspect application logs for authentication attempts where the credential length is zero before the bind call
  • Correlate Open WebUI session creation events with directory bind events to identify mismatches between expected and observed authentication flow
  • Alert on repeated LDAP authentication requests from external sources targeting multiple usernames in short succession

Monitoring Recommendations

  • Forward Open WebUI access and authentication logs to a centralized logging or SIEM platform for correlation with directory server telemetry
  • Enable verbose LDAP server logging for Simple Bind operations and review anonymous bind activity
  • Monitor for the creation of administrative sessions in Open WebUI and validate them against expected operator activity

How to Mitigate CVE-2026-44551

Immediate Actions Required

  • Upgrade Open WebUI to version 0.9.0 or later, which adds validation rejecting empty passwords before performing the LDAP bind
  • Audit Open WebUI session and user activity logs for unauthorized administrative actions since LDAP authentication was enabled
  • Rotate session secrets and force re-authentication for all users after applying the patch

Patch Information

The vendor fixed CVE-2026-44551 in Open WebUI 0.9.0. The patch enforces a non-empty password constraint at the Pydantic model layer and rejects empty credentials before invoking Connection.bind(). See the Open Web UI GitHub Security Advisory for vendor guidance and release notes.

Workarounds

  • Configure the upstream LDAP server to reject Simple Bind operations that contain an empty password, disabling anonymous bind where feasible
  • Place Open WebUI behind a reverse proxy that rejects authentication requests with empty password fields until the upgrade is applied
  • Temporarily disable LDAP authentication and use an alternative identity provider until version 0.9.0 is deployed
bash
# Example OpenLDAP configuration to disallow anonymous and empty-password binds
# /etc/openldap/slapd.conf or equivalent cn=config attribute
disallow bind_anon
require bind

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

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-287

  • NVD-CWE-noinfo
  • 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