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

CVE-2026-44222: Vllm Token Injection DoS Vulnerability

CVE-2026-44222 is a token injection denial of service flaw in Vllm that allows unauthenticated attackers to crash workers through malformed multimodal prompts. This article covers technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2026-44222 Overview

CVE-2026-44222 is a token injection vulnerability in vLLM, an inference and serving engine for large language models (LLMs). The flaw affects vLLM versions from 0.6.1 up to but not including 0.20.0. Unauthenticated, text-only prompts containing special token sequences are interpreted as control tokens by the multimodal processing pipeline. When attackers supply image or video placeholder sequences without matching multimodal data, vLLM indexes into empty grids during input-position computation. This triggers an unhandled IndexError that terminates the worker process and degrades service availability. The vulnerability is tracked as [CWE-129: Improper Validation of Array Index] and is fixed in vLLM 0.20.0.

Critical Impact

Remote unauthenticated attackers can crash vLLM workers using crafted text prompts, causing denial of service against LLM inference endpoints.

Affected Products

  • vLLM versions 0.6.1 through 0.19.x
  • Multimodal inference paths relying on image_grid_thw
  • Multimodal inference paths relying on video_grid_thw

Discovery Timeline

  • 2026-05-12 - CVE-2026-44222 published to NVD
  • 2026-05-14 - Last updated in NVD database

Technical Details for CVE-2026-44222

Vulnerability Analysis

The vulnerability resides in vLLM's multimodal processing pipeline. vLLM accepts prompts that can mix text with placeholders referencing image or video data. The serving engine parses these placeholders to compute input positions for the model. The processor scans incoming prompts for special tokens that designate where multimodal content should be embedded. When the parser encounters image or video placeholder tokens, it attempts to look up corresponding grid metadata in image_grid_thw or video_grid_thw structures. These structures hold the temporal-height-width dimensions of supplied multimodal tensors.

An unauthenticated client can submit a text-only prompt that spells out the special placeholder tokens directly. The processor treats these textual sequences as legitimate control tokens. Because no matching image or video data accompanies the request, the grid structures remain empty. The input-position computation then indexes into empty arrays, raising an unhandled IndexError. The exception propagates up and terminates the worker process serving the request.

Root Cause

The root cause is missing input validation between user-supplied text content and trusted control tokens. The multimodal preprocessor fails to verify that placeholder tokens originate from a structured multimodal request rather than free-form user text. It also fails to validate that the referenced grid index exists before dereferencing it. This combination of token confusion and missing bounds checking enables the crash.

Attack Vector

The attack requires only network access to a vulnerable vLLM endpoint. No authentication, no privileges, and no user interaction are required. An attacker sends a single HTTP request containing a text prompt that includes the special image or video placeholder token strings. The vLLM worker handling the request raises an unhandled exception and exits. Repeated requests sustain a denial-of-service condition against the inference service.

The vulnerability impacts availability only. Confidentiality and integrity are not directly affected. However, downstream applications dependent on the LLM service experience cascading failures when workers terminate.

Detection Methods for CVE-2026-44222

Indicators of Compromise

  • Worker process crashes in vLLM logs accompanied by IndexError stack traces referencing image_grid_thw or video_grid_thw
  • Repeated HTTP requests to /v1/completions or /v1/chat/completions containing image or video placeholder token strings without corresponding multimodal payloads
  • Sudden increase in worker restart events on vLLM serving infrastructure
  • Elevated 5xx response rates from vLLM-backed inference APIs

Detection Strategies

  • Monitor vLLM worker logs for unhandled IndexError exceptions originating from multimodal preprocessing modules
  • Inspect inbound prompt payloads for embedded special tokens that should only appear in structured multimodal requests
  • Correlate spikes in worker restarts with request payload patterns to identify malicious clients
  • Deploy rate limiting and anomaly detection on inference API gateways to flag abusive request patterns

Monitoring Recommendations

  • Forward vLLM application logs and worker crash events to a centralized SIEM for correlation
  • Track per-client request rates and prompt content distribution to detect targeted abuse
  • Alert on any prompt containing multimodal placeholder tokens that lacks an accompanying image or video field
  • Monitor inference service latency, error rate, and worker availability as key health indicators

How to Mitigate CVE-2026-44222

Immediate Actions Required

  • Upgrade vLLM to version 0.20.0 or later on all inference servers
  • Audit existing deployments for vulnerable versions in the 0.6.1 to 0.19.x range
  • Place vLLM endpoints behind authenticated API gateways to limit unauthenticated exposure
  • Implement input filtering at the gateway layer to reject prompts containing raw multimodal placeholder tokens

Patch Information

The vulnerability is fixed in vLLM 0.20.0. The patch validates that placeholder tokens correspond to supplied multimodal data and adds bounds checking before indexing into grid structures. Refer to the GitHub Security Advisory GHSA-hpv8-x276-m59f for full remediation details. Additional technical context is available in the vLLM GitHub Issue Discussion.

Workarounds

  • Sanitize incoming prompts to strip or reject image and video placeholder token strings from text-only requests
  • Restrict access to vLLM serving endpoints using network segmentation and authentication
  • Deploy a reverse proxy that validates request schemas before forwarding to vLLM workers
  • Configure worker supervisors to automatically restart crashed processes while patching is scheduled
bash
# Configuration example
pip install --upgrade "vllm>=0.20.0"

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechVllm

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • 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-129
  • Technical References
  • GitHub Issue Discussion
  • Vendor Resources
  • GitHub Security Advisory GHSA-hpv8-x276-m59f
  • Related CVEs
  • CVE-2026-44223: Vllm Vllm DOS Vulnerability

  • CVE-2026-34755: vLLM Engine DoS Vulnerability

  • CVE-2026-34756: vLLM OpenAI API Server DoS Vulnerability

  • CVE-2026-22773: vLLM Inference Engine DoS 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