---
id: CVE-2026-100651
title: >-
  vLLM before 0.29.0 fails to enforce decoder prompt-length validation on the
  disaggregated serving endpoint /inference/v1/generate
summary: >-
  vLLM before 0.29.0 fails to enforce decoder prompt-length validation on the
  disaggregated serving endpoint /inference/v1/generate. When the request
  contains a 'features' (multimodal) payload,
  vllm/entrypoints/serve/disagg/serving.py buil…
severity: medium
cvss: 6.5
cvssVector: 'CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H'
cwe:
  - CWE-400
vendor: vllm-project
product: vllm
affected:
  - vllm < 0.29.0
published: '2026-09-26'
updated: '2026-09-26'
sourceUpdated: '2026-09-26T14:16:47.663'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-100651'
references:
  - url: >-
      https://github.com/vllm-project/vllm/security/advisories/GHSA-3mqx-f33v-vgp9
    label: disclosure@vulncheck.com
  - url: >-
      https://www.vulncheck.com/advisories/vllm-before-0.29.0-denial-of-service-via-decoder-prompt-length-bypass
    label: disclosure@vulncheck.com
tags:
  - nvd
  - cve.org
ingestedAt: '2026-09-26T13:33:20.919Z'
---

## Overview

vLLM before 0.29.0 fails to enforce decoder prompt-length validation on the disaggregated serving endpoint /inference/v1/generate. When the request contains a 'features' (multimodal) payload, vllm/entrypoints/serve/disagg/serving.py builds a multimodal EngineInput directly from the caller-supplied token_ids, and GenerateRequest.token_ids (vllm/entrypoints/serve/disagg/protocol.py) is not checked against model_config.max_model_len. For multimodal processors that report skip_prompt_length_check=True (for example Nemotron Parse, Whisper, and FireRedLID), InputProcessor._validate_prompt_len() returns immediately for both encoder and decoder prompts, so an overlong prompt becomes an EngineCoreRequest and reaches the worker input-batch copy into a fixed max_model_len-wide NumPy row. A client able to reach the endpoint on an affected model configuration can therefore submit an overlong token_ids list to trigger a worker failure and denial of service. Fixed in 0.29.0.

## Remediation

Refer to the linked advisories for vendor-supplied fixes and affected version ranges.
