vLLM vulnerable to Server-Side Request Forgery (SSRF) through MediaConnector
High7.1CVE-2026-24779 · Published Jan 28, 2026 · updated Sep 10, 2026
Affected versions
| Package | Affected | Fixed in |
|---|---|---|
| vllm PyPI | < 0.14.1 | 0.14.1 |
Details and references
### Summary A Server-Side Request Forgery (SSRF) vulnerability exists in the `MediaConnector` class within the vLLM project's multimodal feature set. The load_from_url and load_from_url_async methods obtain and process media from URLs provided by users, using different Python parsing libraries when restricting the target host. These two parsing libraries have different interpretations of backslashes, which allows the host name restriction to be bypassed. This allows an attacker to coerce the vLLM server into making arbitrary requests to internal network resources. This vulnerability is particularly critical in containerized environments like `llm-d`, where a compromised vLLM pod could be used to scan the internal network, interact with other pods, and potentially cause Denial of Service or access sensitive data. For example, an attacker could make the vLLM pod send malicious requests to an internal `llm-d` management endpoint, leading to system instability by falsely reporting metrics like the KV cache state. ### Details The core of the vulnerability lies in the `MediaConnector.load_from_url` method and its asynchronous counterpart. These methods accept a URL string to fetch media content (images, audio, video). > def load_from_url( > self, > url: str, > media_io: MediaIO[_M], > *, > fetch_timeout: int | None = None, > ) -> _M: # type: ignore[type-var] > url_spec = urlparse(url) > > if url_spec.scheme.startswith("http"): > self._assert_url_in_allowed_media_domains(url_spec) > > connection = self.connection > data = connection.get_bytes( > url, > timeout=fetch_timeout, > allow_redirects=envs.VLLM_MEDIA_URL_ALLOW_REDIRECTS, > ) > > return media_io.load_bytes(data) The URL validation uses the `urlparse` function from Python's `urllib` module, while the request is made using the `request` function from Python's `requests` module. The `requests` module's underlying URL parsing is implemented using the `parse_url` function from Python's `urllib3`. These two parsing functions follow different URL specifications; one is implemented according to the RFC 3986 specification, and the other is implemented according to the WHATWG Living Standard. There is a difference in how the two functions handle backslashes (`\`) in URLs, which allows the hostname restriction to be bypassed. ### Fix * https://github.com/vllm-project/vllm/pull/32746
- CVSS 3.1
- CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:L
- Severity from
- GitHub (reviewed advisory)
- Weakness
- CWE-918
- Also known as
- CVE-2026-24779, PYSEC-2026-2020
- github.com/vllm-project/vllm/security/advisories/GHSA-qh4c-xf7m-gxfc
- nvd.nist.gov/vuln/detail/CVE-2026-24779
- github.com/vllm-project/vllm/pull/32746
- github.com/vllm-project/vllm/commit/f46d576c54fb8aeec5fc70560e850bed38ef17d7
- security.access.redhat.com/data/csaf/v2/vex/2026/cve-2026-24779.json
- pypi.org/project/vllm
- github.com/vllm-project/vllm
- github.com/pypa/advisory-database/tree/main/vulns/vllm/PYSEC-2026-2020.yaml
- github.com/advisories/GHSA-qh4c-xf7m-gxfc
- bugzilla.redhat.com/show_bug.cgi?id=2433624
- access.redhat.com/security/cve/CVE-2026-24779
- access.redhat.com/errata/RHSA-2026:42644
- access.redhat.com/errata/RHSA-2026:3782
- access.redhat.com/errata/RHSA-2026:3462
- access.redhat.com/errata/RHSA-2026:3461
- access.redhat.com/errata/RHSA-2026:30089
- access.redhat.com/errata/RHSA-2026:30088
- access.redhat.com/errata/RHSA-2026:30087
- access.redhat.com/errata/RHSA-2026:19712
- access.redhat.com/errata/RHSA-2026:10184
More vLLM advisories
All vLLM| Date | Advisory | Severity | Fixed in |
|---|---|---|---|
| Feb 2 | vLLM has RCE In Video Processing CVE-2026-22778Critical9.8fixed in 0.14.1 | Critical9.8 | 0.14.1 |
| Jan 21 | vLLM affected by RCE via auto_map dynamic module loading during model initialization CVE-2026-22807High8.8fixed in 0.14.0 | High8.8 | 0.14.0 |
| Jan 13 | vLLM is vulnerable to DoS in Idefics3 vision models via image payload with ambiguous dimensions CVE-2026-22773Medium6.5fixed in 0.12.0 | Medium6.5 | 0.12.0 |
| Jan 8 | vLLM introduced enhanced protection for CVE-2025-62164 CVE-2026-56340High8.8fixed in 0.13.0 | High8.8 | 0.13.0 |
| Mar 9 | vLLM has SSRF Protection Bypass CVE-2026-25960Medium5.4fixed in 0.17.0 | Medium5.4 | 0.17.0 |
| Dec 22025 | vLLM vulnerable to remote code execution via transformers_utils/get_config CVE-2025-66448High7.1fixed in 0.11.1 | High7.1 | 0.11.1 |