Cyber Posture

CVE-2025-66448

High

Published: 01 December 2025

Published
01 December 2025
Modified
03 December 2025
KEV Added
Patch
CVSS Score 7.1 CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H
EPSS Score 0.0004 11.2th percentile
Risk Priority 14 60% EPSS · 20% KEV · 20% CVSS

Description

Adversaries may abuse Python commands and scripts for execution.

Security Summary

CVE-2025-66448 is a remote code execution vulnerability in vLLM, an inference and serving engine for large language models, affecting versions prior to 0.11.1. The issue resides in the Nemotron_Nano_VL_Config class, where loading a model configuration containing an auto_map entry triggers resolution via get_class_from_dynamic_module, which fetches and instantiates Python code from a remote repository specified in the auto_map string. This execution occurs even when the caller explicitly sets trust_remote_code=False in vllm.transformers_utils.config.get_config, bypassing intended security controls.

An attacker can exploit this by publishing a seemingly benign frontend repository with a config.json file that includes an auto_map pointing to a separate malicious backend repository. A victim loading the frontend model config will silently fetch and execute the backend's arbitrary Python code on their host. Per the CVSS v3.1 score of 7.1 (AV:N/AC:H/PR:L/UI:R/S:U/C:H/I:H/A:H), exploitation requires network access, high attack complexity, low privileges, and user interaction, but yields high impacts on confidentiality, integrity, and availability, classified under CWE-94 (code injection).

The vulnerability is addressed in vLLM version 0.11.1. Official mitigation details are available in the project's security advisory at GHSA-8fr4-5q9j-m8gm, the fixing pull request at github.com/vllm-project/vllm/pull/28126, and the commit ffb08379d8870a1a81ba82b72797f196838d0c86, which practitioners should review for patch implementation guidance.

This flaw highlights risks in AI/ML inference engines handling untrusted model configurations from remote sources, with no reported real-world exploitation as of the CVE publication on 2025-12-01.

Details

CWE(s)
CWE-94

Affected Products

vllm
vllm
≤ 0.11.1

MITRE ATT&CK Enterprise Techniques

T1203 Exploitation for Client Execution Execution
Adversaries may exploit software vulnerabilities in client applications to execute code.
T1195.001 Compromise Software Dependencies and Development Tools Initial Access
Adversaries may manipulate software dependencies and development tools prior to receipt by a final consumer for the purpose of data or system compromise.
T1059.006 Python Execution
Adversaries may abuse Python commands and scripts for execution.
Why these techniques?

The vulnerability enables remote code execution via crafted model configurations (T1203 Exploitation for Client Execution), facilitates supply chain compromise through malicious model repositories and dependencies (T1195.001), and directly results in arbitrary Python code execution (T1059.006).

Confidence: HIGH · MITRE ATT&CK Enterprise v19.0

References