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
    • 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-2025-47277

CVE-2025-47277: Vllm Information Disclosure Vulnerability

CVE-2025-47277 is an information disclosure vulnerability in Vllm affecting PyNcclPipe KV cache configurations in versions 0.6.5 through 0.8.4. This article covers technical details, affected versions, and mitigation steps.

Updated: January 22, 2026

CVE-2025-47277 Overview

CVE-2025-47277 is a critical insecure deserialization vulnerability affecting vLLM, an inference and serving engine for large language models (LLMs). The vulnerability exists in versions 0.6.5 through 0.8.4 and specifically impacts environments using the PyNcclPipe KV cache transfer integration with the V0 engine. No other configurations are affected.

The issue stems from how vLLM utilizes PyTorch's TCPStore interface for CPU-side control message passing. While the intention was that this interface should only be exposed to a private network using the IP address specified by the --kv-ip CLI parameter, the default PyTorch behavior causes the TCPStore interface to listen on ALL network interfaces, regardless of the specified IP address. This exposes the deserialization endpoint to potentially untrusted networks, creating a critical attack surface for remote exploitation.

Critical Impact

Remote attackers can exploit the exposed TCPStore interface to send malicious serialized objects, potentially leading to arbitrary code execution on vulnerable vLLM instances. This poses significant risk to AI/ML infrastructure deployments using distributed inference.

Affected Products

  • vLLM versions 0.6.5 through 0.8.4
  • Environments using PyNcclPipe KV cache transfer integration with V0 engine
  • Deployments where TCPStore interface is exposed to untrusted networks

Discovery Timeline

  • 2025-05-20 - CVE-2025-47277 published to NVD
  • 2025-08-13 - Last updated in NVD database

Technical Details for CVE-2025-47277

Vulnerability Analysis

This vulnerability falls under CWE-502 (Deserialization of Untrusted Data). vLLM supports the use of the PyNcclPipe class to establish a peer-to-peer communication domain for data transmission between distributed nodes. The GPU-side KV-Cache transmission is implemented through the PyNcclCommunicator class, while CPU-side control message passing is handled via the send_obj and recv_obj methods.

The core issue lies in the misunderstanding between intended configuration and actual behavior. When administrators specify a private interface using the --kv-ip CLI parameter, they expect the TCPStore socket to bind exclusively to that interface. However, PyTorch's default behavior ignores this specification for binding purposes, using the provided IP address only as a client-side address. This results in the TCPStore interface binding to 0.0.0.0 (all interfaces), exposing the deserialization endpoint to any network the host is connected to.

Root Cause

The root cause is a behavioral mismatch between vLLM's intended security model and PyTorch's TCPStore implementation. The TCPStore class, by design, binds its listening socket to all available network interfaces regardless of the IP address parameter provided during initialization. vLLM's architecture assumed this parameter would restrict the listening interface, creating an implicit trust boundary that did not actually exist.

The send_obj and recv_obj methods use Python's pickle serialization for object transmission. When exposed to untrusted networks, attackers can craft malicious pickle payloads that execute arbitrary code during deserialization.

Attack Vector

An attacker with network access to the exposed TCPStore interface can:

  1. Identify vLLM instances running with PyNcclPipe configuration
  2. Connect to the exposed TCPStore socket (which listens on all interfaces)
  3. Send malicious serialized Python objects via the recv_obj pathway
  4. Achieve remote code execution when the malicious payload is deserialized

The network-based attack vector requires no authentication or user interaction, enabling unauthenticated remote attackers to fully compromise affected systems.

python
# Security patch from vllm/distributed/utils.py
# Source: https://github.com/vllm-project/vllm/commit/0d6e187e88874c39cda7409cf673f9e6546893e7

 import dataclasses
 import datetime
 import pickle
+import socket
 import time
 from collections import deque
 from typing import Any, Deque, Dict, Optional, Sequence, Tuple

The patch introduces the socket module import, which is used to implement a workaround that forces the TCPStore instance to bind its socket specifically to the configured private interface rather than all interfaces.

Detection Methods for CVE-2025-47277

Indicators of Compromise

  • Unexpected network connections to vLLM distributed inference nodes from external IP addresses
  • Anomalous pickle deserialization activity or unusual Python object instantiation patterns
  • Network traffic to TCPStore ports from non-whitelisted IP ranges
  • Evidence of code execution following network connections to distributed inference endpoints

Detection Strategies

  • Monitor network traffic for connections to vLLM inference nodes originating from outside expected private network ranges
  • Implement network intrusion detection rules to identify pickle-based serialization traffic on unexpected interfaces
  • Audit vLLM configurations to identify deployments using PyNcclPipe with V0 engine that may be exposed
  • Review firewall logs for connection attempts to distributed inference communication ports from untrusted sources

Monitoring Recommendations

  • Deploy network segmentation monitoring to ensure TCPStore interfaces are only accessible from authorized internal networks
  • Enable logging for all connections to vLLM distributed inference endpoints
  • Implement anomaly detection for unusual process spawning or code execution following network activity on ML infrastructure
  • Monitor for unexpected Python subprocess creation or shell command execution on vLLM nodes

How to Mitigate CVE-2025-47277

Immediate Actions Required

  • Upgrade to vLLM version 0.8.5 or later which includes the security fix
  • Audit all vLLM deployments to identify instances using PyNcclPipe KV cache transfer with V0 engine
  • Implement network-level access controls to restrict access to distributed inference communication ports
  • Review network configurations to ensure vLLM nodes are isolated on trusted private networks

Patch Information

The vulnerability has been addressed in vLLM version 0.8.5. The fix implements a workaround to force the TCPStore instance to bind its socket to the specified private interface as configured via the --kv-ip parameter, rather than binding to all interfaces.

For detailed information about the security patch, refer to the GitHub Security Advisory GHSA-hjq4-87xh-g4fv and the related pull request.

Workarounds

  • If upgrading is not immediately possible, implement strict firewall rules to ensure TCPStore ports are only accessible from authorized nodes within the private network
  • Deploy vLLM nodes on isolated network segments with no exposure to untrusted networks
  • Consult the vLLM Deployment Security Guide for best practices on securing distributed inference deployments
  • Consider temporarily disabling PyNcclPipe KV cache transfer if the distributed functionality is not critical
bash
# Configuration example - Firewall rules to restrict TCPStore access
# Allow TCPStore communication only from trusted private network
iptables -A INPUT -p tcp --dport <tcpstore_port> -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport <tcpstore_port> -s 172.16.0.0/12 -j ACCEPT
iptables -A INPUT -p tcp --dport <tcpstore_port> -s 192.168.0.0/16 -j ACCEPT
iptables -A INPUT -p tcp --dport <tcpstore_port> -j DROP

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechVllm

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.33%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-502
  • Technical References
  • VLLM Deployment Security Guide
  • Vendor Resources
  • GitHub Commit Overview

  • GitHub Pull Request Discussion

  • GitHub Security Advisory GHSA-hjq4-87xh-g4fv
  • Related CVEs
  • CVE-2026-27893: Vllm Vllm RCE Vulnerability

  • CVE-2026-25960: vLLM SSRF Bypass Vulnerability

  • CVE-2026-22778: vLLM ASLR Bypass and RCE Vulnerability

  • CVE-2026-24779: vLLM SSRF Vulnerability
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