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-2024-12537

CVE-2024-12537: Open WebUI DOS Vulnerability

CVE-2024-12537 is a denial of service vulnerability in Open WebUI version 0.3.32 that allows unauthenticated attackers to make the server unresponsive. This article covers technical details, affected versions, and mitigation.

Published: June 2, 2026

CVE-2024-12537 Overview

CVE-2024-12537 affects open-webui version 0.3.32, an open-source interface for large language models. The api/v1/utils/code/format endpoint lacks authentication controls, allowing any unauthenticated network attacker to submit requests. An attacker can send a POST request containing an excessively large payload to exhaust server resources. The server becomes unresponsive, interrupting service for legitimate users. The flaw is categorized under [CWE-770] (Allocation of Resources Without Limits or Throttling) and results in a denial of service condition.

Critical Impact

Unauthenticated remote attackers can render Open WebUI instances unresponsive by submitting oversized POST requests to an unprotected formatting endpoint.

Affected Products

  • Open WebUI version 0.3.32
  • Deployments exposing the api/v1/utils/code/format endpoint to untrusted networks
  • Self-hosted Open WebUI instances without upstream rate limiting

Discovery Timeline

  • 2025-03-20 - CVE-2024-12537 published to NVD
  • 2025-04-04 - Last updated in NVD database

Technical Details for CVE-2024-12537

Vulnerability Analysis

The vulnerability resides in the api/v1/utils/code/format endpoint of open-webui 0.3.32. The endpoint accepts POST requests without verifying caller identity or applying input size limits. An attacker can submit content of arbitrary length, forcing the server to attempt processing the full payload. This consumes CPU, memory, and worker threads until the application stops responding to legitimate traffic. The EPSS score indicates a meaningful probability of exploitation activity relative to other public CVEs.

Root Cause

The root cause is the absence of authentication middleware on the code formatting route combined with missing input size validation. The endpoint trusts incoming requests and proceeds with formatting work regardless of payload size or originator. This matches the [CWE-770] pattern of unbounded resource allocation.

Attack Vector

The attack vector is network-based and requires no privileges or user interaction. An attacker locates an exposed Open WebUI instance, identifies the unauthenticated api/v1/utils/code/format endpoint, and issues a POST request with a very large body. Repeated or sufficiently large requests degrade the service or take it offline entirely. The vulnerability impacts availability only, with no confidentiality or integrity loss.

No public proof-of-concept code has been released. Refer to the Huntr Bounty Report for technical details from the original submission.

Detection Methods for CVE-2024-12537

Indicators of Compromise

  • Unauthenticated POST requests to /api/v1/utils/code/format from unexpected source addresses
  • HTTP request bodies exceeding normal code-formatting sizes on Open WebUI hosts
  • Sudden CPU or memory saturation on the Open WebUI application process
  • Health check failures or timeouts against the Open WebUI service

Detection Strategies

  • Inspect web server and reverse proxy logs for high-volume or oversized POST requests to the formatting endpoint
  • Correlate request spikes with application worker exhaustion and 5xx response rates
  • Alert on POST requests to /api/v1/utils/code/format originating outside expected client networks

Monitoring Recommendations

  • Track request rate, payload size distribution, and response latency for the api/v1/utils/code/format route
  • Monitor process-level CPU, RSS memory, and worker thread counts for the Open WebUI service
  • Forward web access logs to a centralized log platform for retention and anomaly review

How to Mitigate CVE-2024-12537

Immediate Actions Required

  • Upgrade Open WebUI to a version released after 0.3.32 that addresses the missing authentication and input limits
  • Restrict network exposure of Open WebUI to trusted clients using firewall rules or VPN access
  • Place Open WebUI behind a reverse proxy that enforces authentication, request size limits, and rate limiting

Patch Information

Review the Huntr Bounty Report and the upstream open-webui repository for fix details and the first patched release. Apply the latest available version on all deployments running 0.3.32.

Workarounds

  • Enforce a maximum request body size at the reverse proxy for routes under /api/v1/utils/
  • Apply per-IP rate limiting on the formatting endpoint to constrain abuse
  • Require authentication at the proxy layer for all Open WebUI API routes until upgrade is complete
bash
# Nginx example: limit body size and rate for the affected endpoint
limit_req_zone $binary_remote_addr zone=owui:10m rate=5r/s;

location /api/v1/utils/code/format {
    limit_req zone=owui burst=10 nodelay;
    client_max_body_size 64k;
    proxy_pass http://open_webui_upstream;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOpenwebui

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability2.67%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • Huntr Bounty Report
  • 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