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

CVE-2026-33241: Salvo Web Framework DoS Vulnerability

CVE-2026-33241 is a denial of service flaw in Salvo web framework that allows attackers to crash services via oversized payloads. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33241 Overview

CVE-2026-33241 is a Denial of Service (DoS) vulnerability affecting Salvo, a Rust web framework. Prior to version 0.89.3, Salvo's form data parsing implementations—specifically the form_data() method and Extractible macro—do not enforce payload size limits before reading request bodies into memory. This design flaw allows attackers to trigger Out-of-Memory (OOM) conditions by sending extremely large payloads, leading to service crashes and denial of service.

Critical Impact

Attackers can remotely crash Salvo-based web applications by sending oversized payloads, causing memory exhaustion and service unavailability without requiring authentication.

Affected Products

  • Salvo versions prior to 0.89.3
  • Applications using the form_data() method for form parsing
  • Applications utilizing the Extractible macro for request body extraction

Discovery Timeline

  • March 24, 2026 - CVE-2026-33241 published to NVD
  • March 24, 2026 - Last updated in NVD database

Technical Details for CVE-2026-33241

Vulnerability Analysis

This vulnerability stems from improper resource allocation controls in Salvo's request handling mechanisms. The framework's form data parsing functionality lacks enforcement of payload size limits when processing incoming HTTP requests. When a request containing form data is received, the form_data() method and Extractible macro read the entire request body into memory without validating the content length against a configurable maximum threshold.

The absence of such bounds checking creates a resource exhaustion condition (CWE-770: Allocation of Resources Without Limits or Throttling). An attacker can exploit this by sending HTTP requests with arbitrarily large payloads, which the server will attempt to load entirely into memory. This can rapidly consume available RAM, triggering OOM killer behavior on Linux systems or causing the application process to crash.

Root Cause

The root cause is the lack of size validation in the form data parsing pipeline. The form_data() method reads request bodies directly into memory buffers without checking the Content-Length header against a maximum allowed size or implementing streaming limits. Similarly, the Extractible macro, which provides convenient request body extraction, inherits this behavior. This oversight means even a single malicious request with a multi-gigabyte payload can exhaust server memory resources.

Attack Vector

The attack vector is network-based and requires no authentication. An attacker can craft HTTP POST requests targeting endpoints that process form data, including multipart form submissions. By setting a large Content-Length header and streaming arbitrary data, the attacker forces the vulnerable Salvo application to allocate memory proportional to the payload size.

The attack is straightforward to execute:

  1. Identify a Salvo-based application endpoint that accepts form data
  2. Send an HTTP POST request with a large Content-Length value (e.g., several gigabytes)
  3. Stream data to the endpoint until the server exhausts available memory
  4. The application crashes due to OOM, causing service disruption

The vulnerability is particularly dangerous in shared hosting environments or containerized deployments where memory limits may trigger cascading failures across services.

Detection Methods for CVE-2026-33241

Indicators of Compromise

  • Unusually large HTTP POST requests targeting form submission endpoints
  • Sudden memory spikes in Salvo application processes
  • OOM killer events in system logs correlating with web server activity
  • Service crashes or restarts without apparent cause during periods of low legitimate traffic

Detection Strategies

  • Monitor HTTP request sizes at the reverse proxy or load balancer level to detect abnormally large payloads
  • Implement application performance monitoring (APM) to track memory consumption patterns in Salvo applications
  • Review web server access logs for POST requests with excessive Content-Length headers
  • Configure alerting for OOM events and unexpected process terminations

Monitoring Recommendations

  • Deploy memory usage monitoring with thresholds that trigger alerts before OOM conditions
  • Implement request rate limiting and payload size enforcement at the network perimeter
  • Use web application firewalls (WAF) configured to reject requests exceeding reasonable size limits
  • Enable verbose logging for form data parsing operations to identify attack attempts

How to Mitigate CVE-2026-33241

Immediate Actions Required

  • Upgrade Salvo to version 0.89.3 or later immediately
  • Implement request size limits at the reverse proxy level (nginx, Apache, or cloud load balancer) as a defense-in-depth measure
  • Review application endpoints that accept form data and ensure they are protected
  • Consider implementing memory limits on application containers to prevent host-level impact

Patch Information

The Salvo development team has released version 0.89.3 which addresses this vulnerability by implementing proper payload size limits in the form data parsing functionality. Users should upgrade to this version or later to receive the fix.

For detailed patch information, refer to the GitHub Release v0.89.3 and the GitHub Security Advisory GHSA-pp9r-xg4c-8j4x.

Workarounds

  • Configure reverse proxy or load balancer to enforce maximum request body size limits before requests reach the Salvo application
  • Implement middleware-level size validation if upgrading is not immediately possible
  • Deploy rate limiting to reduce the impact of sustained attack attempts
  • Use container memory limits and health checks to enable automatic recovery from OOM conditions
bash
# Example nginx configuration to limit request body size
# Add to server or location block
client_max_body_size 10M;
client_body_buffer_size 128k;

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechSalvo

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Vendor Resources
  • GitHub Release v0.89.3

  • GitHub Security Advisory GHSA-pp9r-xg4c-8j4x
  • Related CVEs
  • CVE-2026-33242: Salvo Path Traversal Vulnerability

  • CVE-2026-22257: Salvo Framework XSS Vulnerability

  • CVE-2026-22256: Salvo Rust Framework XSS 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