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
    • 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-2023-46136

CVE-2023-46136: Werkzeug Multipart Parsing DoS Vulnerability

CVE-2023-46136 is a denial of service flaw in Palletsprojects Werkzeug caused by malicious multipart data uploads that block worker processes. This article covers the technical details, affected versions, and patches.

Published: February 11, 2026

CVE-2023-46136 Overview

CVE-2023-46136 is a Denial of Service vulnerability affecting Werkzeug, the comprehensive WSGI web application library maintained by the Pallets Projects. The vulnerability exists in the multipart data parsing functionality, where specially crafted file uploads can cause excessive CPU consumption, potentially blocking worker processes from handling legitimate requests.

When an attacker uploads a file that starts with a Carriage Return (CR) or Line Feed (LF) character followed by megabytes of data without these characters, the parser appends all bytes chunk by chunk into an internal bytearray while performing boundary lookups on the growing buffer. This inefficient processing leads to resource exhaustion and service disruption.

Critical Impact

Attackers can cause denial of service by sending crafted multipart data to any endpoint that parses file uploads, blocking legitimate traffic and potentially taking down web applications built on Flask and other Werkzeug-based frameworks.

Affected Products

  • Palletsprojects Werkzeug versions prior to 3.0.1
  • Werkzeug version 3.0.0
  • Applications built on Flask or other frameworks using vulnerable Werkzeug versions

Discovery Timeline

  • 2023-10-24 - Pallets Projects releases security patch in version 3.0.1
  • 2023-10-25 - CVE CVE-2023-46136 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-46136

Vulnerability Analysis

The vulnerability resides in Werkzeug's multipart form data parser, which handles file uploads in WSGI web applications. The parser processes incoming multipart data by reading chunks and searching for boundary markers that separate individual form fields and files.

When processing a file upload that begins with CR (\r) or LF (\n) characters followed by large amounts of data without these delimiter characters, the parser exhibits pathological behavior. Instead of efficiently processing the data stream, it continuously appends bytes to an internal bytearray buffer while repeatedly scanning the entire growing buffer for boundary markers.

This algorithmic inefficiency (CWE-400: Uncontrolled Resource Consumption) means that processing time increases non-linearly with input size, allowing attackers to consume disproportionate CPU resources with relatively modest payloads.

Root Cause

The root cause is an inefficient boundary lookup algorithm in the multipart parser. When data lacks the expected delimiter characters (CR/LF), the parser accumulates data into a growing buffer and performs repeated boundary searches across the entire buffer rather than using a more efficient streaming approach. This creates an algorithmic complexity attack vector where carefully crafted input triggers worst-case performance.

Attack Vector

The attack can be executed remotely over the network without authentication. An attacker needs to identify an endpoint that accepts multipart form data (file uploads) and send a malicious request containing:

  1. A multipart boundary header
  2. File content starting with CR or LF character
  3. Megabytes of subsequent data without CR/LF characters

The parser will process this data inefficiently, consuming CPU cycles and potentially blocking worker processes. Multiple concurrent requests can amplify the impact, leading to complete service unavailability.

text
.. currentmodule:: werkzeug

+Version 3.0.1
+-------------
+
+Released 2023-10-24
+
+-   Fix slow multipart parsing for large parts potentially enabling DoS
+    attacks. :cwe:`CWE-407`
+
Version 3.0.0
-------------

Source: GitHub Commit Changes

Detection Methods for CVE-2023-46136

Indicators of Compromise

  • Unusual CPU spikes on web server processes during multipart request handling
  • Worker process timeouts or unresponsiveness when processing file uploads
  • Increased memory usage in WSGI worker processes
  • HTTP 503 errors or gateway timeouts affecting file upload endpoints

Detection Strategies

  • Monitor web server CPU utilization patterns, specifically correlating spikes with multipart POST requests
  • Implement request duration monitoring to detect abnormally long-running upload requests
  • Audit application dependencies to identify vulnerable Werkzeug versions (< 3.0.1)
  • Deploy web application firewalls (WAF) with rules to detect oversized multipart payloads with suspicious patterns

Monitoring Recommendations

  • Configure alerting for worker process CPU utilization exceeding normal thresholds
  • Implement request timeout monitoring for file upload endpoints
  • Track multipart request sizes and processing durations as security metrics
  • Monitor for patterns of repeated large POST requests from single sources

How to Mitigate CVE-2023-46136

Immediate Actions Required

  • Upgrade Werkzeug to version 3.0.1 or later immediately
  • If immediate upgrade is not possible, implement request size limits and timeouts on file upload endpoints
  • Consider temporarily disabling file upload functionality if under active attack
  • Review and update all applications using Flask or other Werkzeug-based frameworks

Patch Information

The vulnerability has been patched in Werkzeug version 3.0.1, released on 2023-10-24. The fix addresses the inefficient multipart parsing algorithm to prevent resource exhaustion attacks. Users should upgrade by updating their dependency specifications and redeploying applications.

For detailed patch information, refer to the GitHub Security Advisory and the commit changes.

Workarounds

  • Implement strict request body size limits at the reverse proxy or load balancer level
  • Configure aggressive request timeouts for endpoints accepting file uploads
  • Deploy rate limiting on multipart POST endpoints to reduce attack amplification
  • Use a WAF to filter requests with abnormally large Content-Length headers
bash
# Configuration example - Upgrade Werkzeug using pip
pip install --upgrade werkzeug>=3.0.1

# Verify installed version
pip show werkzeug | grep Version

# For requirements.txt, update to:
# werkzeug>=3.0.1

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechWerkzeug

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.56%

  • 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-400

  • CWE-787
  • Technical References
  • NetApp Security Advisory
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2024-49767: Palletsprojects Quart DoS Vulnerability

  • CVE-2023-25577: Werkzeug Multipart Parser DoS Vulnerability

  • CVE-2026-27199: Werkzeug Path Traversal Vulnerability

  • CVE-2026-21860: Werkzeug Path Traversal Vulnerability
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