A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-24779

CVE-2026-24779: Vllm Vllm SSRF Vulnerability

CVE-2026-24779 is a Server-Side Request Forgery flaw in Vllm's MediaConnector class that allows attackers to bypass host restrictions and access internal network resources. This article covers technical details, affected versions, and patches.

Updated: May 14, 2026

CVE-2026-24779 Overview

CVE-2026-24779 is a Server-Side Request Forgery (SSRF) vulnerability in vLLM, an inference and serving engine for large language models (LLMs). The flaw resides in the MediaConnector class within the multimodal feature set. The load_from_url and load_from_url_async methods fetch media from user-supplied URLs and rely on two different Python parsing libraries to enforce host restrictions. Because these parsers interpret backslashes differently, attackers can bypass the host allowlist and coerce the vLLM server into issuing arbitrary requests against internal network resources. All versions prior to 0.14.1 are affected.

Critical Impact

An authenticated attacker can pivot from a compromised vLLM pod to internal services, scan internal networks, interact with sibling pods in llm-d deployments, and falsify management endpoint data such as KV cache state.

Affected Products

  • vLLM versions prior to 0.14.1
  • vLLM deployments using the multimodal MediaConnector interface
  • Containerized llm-d environments running vulnerable vLLM pods

Discovery Timeline

  • 2026-01-27 - CVE-2026-24779 published to NVD
  • 2026-01-30 - Last updated in NVD database

Technical Details for CVE-2026-24779

Vulnerability Analysis

The vulnerability is classified as Server-Side Request Forgery [CWE-918]. vLLM's MediaConnector exposes two URL-loading methods used to retrieve images and other media supplied by API clients. Before fetching a URL, the connector validates the hostname against a restriction list to prevent requests to internal addresses. The validation step and the actual fetch step parse the URL using two different libraries, creating a parser-differential condition.

Specifically, the host extraction during validation and the host used during the outbound HTTP request disagree on how to handle backslash characters embedded in the authority component. An attacker submits a URL where the validator sees an allowed external host while the underlying HTTP client resolves and connects to an internal target. This produces an authenticated SSRF reachable from any client able to submit multimodal inputs.

Root Cause

The root cause is inconsistent URL parsing between urllib.parse.urlparse (used in validation paths) and the HTTP client stack that performs the actual connection. Backslash handling diverges between the parsers, so the hostname examined during security checks does not match the hostname used to dispatch the request. The fix standardizes parsing on urllib3.util.parse_url.

Attack Vector

Exploitation requires the ability to send a multimodal request to a vLLM endpoint. The attacker crafts a URL whose authority component contains a backslash separating an attacker-controlled allowed host from an internal target. The validator extracts the allowed host while the HTTP client connects to the internal target. In an llm-d deployment, the attacker can target management endpoints to falsely report metrics such as KV cache state, induce scheduling errors, or enumerate cluster-internal services.

python
# Security patch in vllm/connections.py
 from collections.abc import Mapping, MutableMapping
 from pathlib import Path
-from urllib.parse import urlparse
 
 import aiohttp
 import requests
+from urllib3.util import parse_url
 
 from vllm.version import __version__ as VLLM_VERSION
# Source: https://github.com/vllm-project/vllm/commit/f46d576c54fb8aeec5fc70560e850bed38ef17d7

The patch replaces urlparse with urllib3.util.parse_url so that validation and request dispatch use the same parser, eliminating the backslash-handling divergence.

python
# Security patch in vllm/envs.py
     try:
         return int(port)
     except ValueError as err:
-        from urllib.parse import urlparse
+        from urllib3.util import parse_url
 
-        parsed = urlparse(port)
+        parsed = parse_url(port)
         if parsed.scheme:
             raise ValueError(
                 f"VLLM_PORT '{port}' appears to be a URI. "
# Source: https://github.com/vllm-project/vllm/commit/f46d576c54fb8aeec5fc70560e850bed38ef17d7

Detection Methods for CVE-2026-24779

Indicators of Compromise

  • Multimodal API requests containing URLs with backslash (\) characters in the authority component or between hostnames
  • Outbound connections from vLLM pods to RFC1918, link-local, or cluster-internal addresses such as 169.254.0.0/16, 10.0.0.0/8, or kube-apiserver
  • Unexpected requests from vLLM pods to llm-d management endpoints or sibling pod metrics interfaces
  • Anomalous KV cache state reports or scheduler metric inconsistencies originating from a single pod

Detection Strategies

  • Inspect HTTP request payloads to the vLLM /v1/chat/completions and multimodal endpoints for URLs containing backslashes or mixed-encoding authority components.
  • Compare DNS resolutions and TCP destinations from vLLM pods against an allowlist of expected external media hosts.
  • Audit application logs for MediaConnector fetches that resolve to private IP ranges.

Monitoring Recommendations

  • Enable egress traffic logging at the pod or service-mesh layer for all vLLM workloads.
  • Alert on vLLM pods initiating connections to the Kubernetes API server, cluster DNS, or other in-cluster services not in their baseline.
  • Track the vLLM version in deployment manifests and flag any instance running below 0.14.1.

How to Mitigate CVE-2026-24779

Immediate Actions Required

  • Upgrade all vLLM instances to version 0.14.1 or later, which contains the parser unification fix.
  • Restrict network egress from vLLM pods using NetworkPolicies or service-mesh rules so that only required external media hosts are reachable.
  • Require authentication on vLLM endpoints and restrict multimodal input submission to trusted clients.

Patch Information

The fix is published in vLLM 0.14.1 via commit f46d576c54fb8aeec5fc70560e850bed38ef17d7 and pull request #32746. The patch replaces urllib.parse.urlparse with urllib3.util.parse_url in vllm/connections.py and vllm/envs.py, ensuring consistent host parsing between validation and request dispatch. Full details are available in the GitHub Security Advisory GHSA-qh4c-xf7m-gxfc.

Workarounds

  • Disable multimodal URL ingestion if not required, forcing clients to upload media payloads directly instead of by reference.
  • Place vLLM behind an egress proxy that re-validates destination hostnames and blocks private address ranges.
  • Apply Kubernetes NetworkPolicies that deny vLLM pod access to llm-d management endpoints, cluster DNS, and the Kubernetes API server.
bash
# Kubernetes NetworkPolicy denying vLLM pod egress to internal cluster ranges
kubectl apply -f - <<EOF
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
  name: vllm-egress-restrict
spec:
  podSelector:
    matchLabels:
      app: vllm
  policyTypes:
  - Egress
  egress:
  - to:
    - ipBlock:
        cidr: 0.0.0.0/0
        except:
        - 10.0.0.0/8
        - 172.16.0.0/12
        - 192.168.0.0/16
        - 169.254.0.0/16
EOF

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechVllm

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-918
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Pull Request #32746

  • GitHub Security Advisory GHSA-qh4c-xf7m-gxfc
  • Related CVEs
  • CVE-2026-34753: Vllm Vllm SSRF Vulnerability

  • CVE-2025-6242: vLLM MediaConnector SSRF Vulnerability

  • CVE-2026-25960: vLLM SSRF Vulnerability Bypass Issue

  • CVE-2026-5497: vLLM Out-of-Memory 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