Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-0765

CVE-2026-0765: Open WebUI Command Injection RCE Flaw

CVE-2026-0765 is a command injection vulnerability in Open WebUI's install_frontmatter_requirements function that enables remote code execution. Authenticated attackers can exploit this flaw to run arbitrary code.

Published: January 30, 2026

CVE-2026-0765 Overview

CVE-2026-0765 is a command injection vulnerability affecting Open WebUI that enables remote code execution through the install_frontmatter_requirements function. This vulnerability allows authenticated remote attackers to execute arbitrary code on affected installations by exploiting improper validation of user-supplied input before it is used in system calls.

The flaw stems from insufficient sanitization of user-controlled strings that are passed to system-level command execution, allowing attackers to inject malicious commands that execute in the context of the service account running Open WebUI.

Critical Impact

Authenticated attackers can achieve full remote code execution on the underlying server, potentially compromising sensitive data, pivoting to internal networks, or establishing persistent access to the affected system.

Affected Products

  • Open WebUI (all versions prior to patch)

Discovery Timeline

  • 2026-01-23 - CVE-2026-0765 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2026-0765

Vulnerability Analysis

This command injection vulnerability (CWE-78) exists within the install_frontmatter_requirements function of Open WebUI. The function processes user-supplied input to install Python package dependencies but fails to properly validate or sanitize the input before passing it to a system call. This allows an authenticated attacker to craft malicious input that breaks out of the intended command context and executes arbitrary system commands.

The vulnerability requires authentication to exploit, meaning an attacker must first obtain valid credentials or session access to the Open WebUI application. Once authenticated, the attacker can leverage this flaw to execute code with the same privileges as the service account running the Open WebUI instance.

Root Cause

The root cause of this vulnerability is the lack of proper input validation and sanitization in the install_frontmatter_requirements function. User-supplied strings are directly incorporated into system calls without adequate escaping or validation, enabling command injection attacks. This violates secure coding practices that require all external input to be treated as untrusted and properly sanitized before use in security-sensitive operations such as shell command execution.

Attack Vector

The attack is network-based and requires low attack complexity once authentication is obtained. An authenticated attacker can submit a specially crafted request containing malicious command injection payloads to the vulnerable function. The payload would typically include shell metacharacters (such as ;, |, &&, or backticks) followed by arbitrary commands.

For example, an attacker could inject commands to establish reverse shells, download and execute malicious payloads, exfiltrate sensitive data, or modify system configurations. The commands execute with the privileges of the Open WebUI service account, which may have elevated permissions depending on the deployment configuration.

For detailed technical information about this vulnerability, refer to the Zero Day Initiative Advisory ZDI-26-031.

Detection Methods for CVE-2026-0765

Indicators of Compromise

  • Unusual process spawning from the Open WebUI service process, particularly shell interpreters like /bin/sh, /bin/bash, or cmd.exe
  • Network connections originating from the Open WebUI server to unexpected external IP addresses
  • Suspicious entries in application logs containing shell metacharacters or encoded payloads in package requirement fields
  • Unexpected files created in temporary directories or web-accessible paths by the service account

Detection Strategies

  • Monitor process execution chains for the Open WebUI service, alerting on child processes that indicate command execution (shells, scripting interpreters, network utilities)
  • Implement web application firewall (WAF) rules to detect command injection patterns in HTTP request parameters
  • Deploy endpoint detection and response (EDR) solutions like SentinelOne to identify and block anomalous behavior patterns indicative of post-exploitation activity
  • Review application logs for requests to endpoints associated with the install_frontmatter_requirements functionality

Monitoring Recommendations

  • Enable verbose logging for the Open WebUI application to capture all requests to package installation functionality
  • Configure SIEM alerts for command injection indicators in web application logs
  • Monitor outbound network traffic from the Open WebUI server for signs of data exfiltration or command-and-control communication
  • Implement file integrity monitoring on critical system directories accessible by the service account

How to Mitigate CVE-2026-0765

Immediate Actions Required

  • Restrict network access to Open WebUI installations to trusted users and networks only
  • Review and audit user accounts with access to the Open WebUI application, removing unnecessary privileges
  • Implement network segmentation to limit the blast radius of potential compromise
  • Deploy SentinelOne agents on systems running Open WebUI to detect and block exploitation attempts

Patch Information

Consult the Zero Day Initiative Advisory ZDI-26-031 for the latest patch information and vendor remediation guidance. Apply security updates from the Open WebUI project as soon as they become available.

Workarounds

  • Disable or restrict access to the package installation functionality if not required for operations
  • Implement additional authentication controls or IP-based access restrictions for administrative functions
  • Deploy a reverse proxy with strict input validation rules in front of the Open WebUI application
  • Run the Open WebUI service with minimal privileges using a dedicated service account with restricted system access
bash
# Example: Restrict Open WebUI service permissions
# Create dedicated service account with minimal privileges
useradd -r -s /sbin/nologin openwebui-svc

# Ensure the service runs as the restricted user
# Update systemd service file or container configuration accordingly
chown -R openwebui-svc:openwebui-svc /opt/openwebui
chmod 750 /opt/openwebui

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOpen Webui

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.68%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-78
  • Technical References
  • Zero Day Initiative Advisory ZDI-26-031
  • Related CVEs
  • CVE-2026-0766: Open WebUI Command Injection RCE Flaw

  • CVE-2026-34225: Open WebUI Blind SSRF Vulnerability

  • CVE-2026-34222: Open WebUI Auth Bypass Vulnerability

  • CVE-2026-29070: Open WebUI Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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