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

CVE-2026-34755: vLLM Engine DoS Vulnerability

CVE-2026-34755 is a denial of service flaw in vLLM's VideoMediaIO that allows attackers to crash servers with OOM errors by sending excessive JPEG frames. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-34755 Overview

A resource exhaustion vulnerability exists in vLLM, an inference and serving engine for large language models (LLMs). The vulnerability is located in the VideoMediaIO.load_base64() method within vllm/multimodal/media/video.py. This method processes video/jpeg data URLs by splitting them by comma to extract individual JPEG frames but fails to enforce a frame count limit. The num_frames parameter (default: 32), which is enforced by the load_bytes() code path, is completely bypassed in the video/jpeg base64 path. This allows an attacker to send a single API request containing thousands of comma-separated base64-encoded JPEG frames, causing the server to decode all frames into memory and crash with an Out-of-Memory (OOM) condition.

Critical Impact

An authenticated attacker can crash vLLM inference servers through memory exhaustion by sending a single malicious API request containing excessive base64-encoded JPEG frames, leading to denial of service.

Affected Products

  • vLLM versions 0.7.0 through 0.18.x
  • vLLM deployments using multimodal video processing capabilities
  • Systems accepting video/jpeg data URLs via the vLLM API

Discovery Timeline

  • 2026-04-06 - CVE CVE-2026-34755 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-34755

Vulnerability Analysis

This vulnerability falls under CWE-770 (Allocation of Resources Without Limits or Throttling). The core issue lies in inconsistent input validation between two code paths handling video data. While the load_bytes() method properly enforces the num_frames limit (defaulting to 32 frames), the load_base64() method completely bypasses this validation when processing base64-encoded JPEG frames.

The vulnerable function parses comma-separated base64 data without any upper bound on the number of segments it will process. Each decoded JPEG frame consumes memory proportional to its decoded size, and when thousands of frames are submitted in a single request, the cumulative memory allocation rapidly exhausts available system memory.

Root Cause

The root cause is a missing bounds check in the VideoMediaIO.load_base64() method. When video data is submitted as a video/jpeg data URL containing base64-encoded frames, the method splits the input by comma and iterates through all resulting segments without enforcing the num_frames limit. This creates an asymmetric vulnerability where one code path (byte loading) is protected while another (base64 loading) is not, allowing attackers to exploit the unprotected path.

Attack Vector

The attack is network-based and requires low-privilege authentication to access the vLLM API. An attacker constructs a malicious API request containing a video/jpeg data URL with thousands of comma-separated base64-encoded JPEG frames. When the server processes this request, the load_base64() method decodes every frame into memory without limitation, causing memory exhaustion and server crash. The attack requires no user interaction and can be executed with a single HTTP request.

The exploitation mechanism involves:

  1. An authenticated attacker crafts an API request targeting vLLM's multimodal video processing endpoint
  2. The request contains a video/jpeg data URL with an excessive number of comma-separated base64-encoded JPEG frames (potentially thousands)
  3. The VideoMediaIO.load_base64() method processes the request, splitting by comma and decoding all frames
  4. Each decoded frame allocates memory, quickly exhausting available resources
  5. The server crashes with an OOM error, causing denial of service

For technical details, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-34755

Indicators of Compromise

  • Unusually large API requests to vLLM endpoints containing video/jpeg data URLs
  • Rapid memory consumption spikes on vLLM server processes
  • Server crashes with OOM (Out-of-Memory) errors following multimodal API requests
  • API requests containing data URLs with abnormally high numbers of comma-separated base64 segments

Detection Strategies

  • Monitor API request sizes to vLLM multimodal endpoints and alert on requests exceeding normal thresholds
  • Implement memory consumption monitoring for vLLM server processes with alerts for rapid increases
  • Log and analyze requests containing video/jpeg data URLs for unusual patterns
  • Deploy request payload inspection to count comma-separated segments in base64 video data

Monitoring Recommendations

  • Configure application-level logging to capture request metadata for multimodal endpoints
  • Set up infrastructure monitoring to track memory utilization trends on vLLM servers
  • Implement rate limiting on API endpoints accepting video data to reduce attack surface
  • Enable crash dump analysis to identify OOM conditions related to video processing

How to Mitigate CVE-2026-34755

Immediate Actions Required

  • Upgrade vLLM to version 0.19.0 or later where the vulnerability is fixed
  • Implement API gateway request size limits to restrict excessively large video data payloads
  • Deploy memory limits on vLLM server processes to prevent complete system crashes
  • Monitor for exploitation attempts through unusual API traffic patterns

Patch Information

The vulnerability is fixed in vLLM version 0.19.0. The fix ensures that the num_frames limit is enforced consistently across all code paths, including the load_base64() method for processing video/jpeg data URLs. Organizations should upgrade to version 0.19.0 or later. For additional details, see the GitHub Security Advisory.

Workarounds

  • Implement API gateway rules to limit the size of incoming requests containing video data
  • Deploy request validation middleware to count and limit comma-separated segments in base64 video data
  • Configure memory limits (cgroups, container limits) to prevent single requests from exhausting system resources
  • Consider temporarily disabling multimodal video processing endpoints if not required
bash
# Example container memory limit configuration
# Limit vLLM container to 16GB to prevent complete system OOM
docker run --memory=16g --memory-swap=16g vllm/vllm-openai:latest

# Example systemd memory limit for vLLM service
# Add to vLLM service unit file
MemoryMax=16G
MemoryHigh=14G

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechVllm

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34756: vLLM OpenAI API Server DoS Vulnerability

  • CVE-2026-22773: vLLM Inference Engine DoS Vulnerability

  • CVE-2026-34753: vLLM SSRF Vulnerability

  • CVE-2026-27893: Vllm Vllm RCE 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