惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Blog — PlanetScale
Blog — PlanetScale
博客园 - Franky
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
D
Docker
Google DeepMind News
Google DeepMind News
GbyAI
GbyAI
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
P
Proofpoint News Feed
N
Netflix TechBlog - Medium
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Engineering at Meta
Engineering at Meta
H
Help Net Security
B
Blog
宝玉的分享
宝玉的分享

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
LiteLLM Vulnerability Chain Enables Full AI Gateway Takeo...
Etairos.ai · 2026-06-16 · via DEV Community

Etairos.ai

TL;DR

  • what: Three chained vulnerabilities in LiteLLM AI gateway allow default low-privilege users to bypass authorization, escalate to admin, and execute arbitrary code on the server.
  • impact: Full compromise exposes every provider API key (OpenAI, Anthropic, Azure, etc.), database credentials, decryption secrets, and all prompts and responses passing through the gateway.
  • fix: Upgrade immediately to LiteLLM v1.83.14-stable or later, which includes complete fixes for CVE-2026-47101, CVE-2026-47102, and CVE-2026-40217.
  • who: Any organization running LiteLLM proxy to broker AI model access, especially those with internal users or agents routing through the gateway.

A critical vulnerability chain in LiteLLM, a widely deployed open-source AI gateway, allows attackers starting from a default low-privilege account to achieve full server takeover and code execution. Obsidian Security researchers disclosed the three-bug chain rated CVSS 9.9, with maintainer BerriAI shipping complete fixes in version 1.83.14-stable on May 2, 2026.

LiteLLM brokers API calls to more than 100 AI model providers—OpenAI, Anthropic, Google Gemini, AWS Bedrock, Azure OpenAI, and others—behind a single OpenAI-compatible interface. Organizations deploy it as a central gateway to manage costs, enforce policies, and route requests across multiple backends. That centralized position makes it a high-value target: a compromised proxy exposes every provider key it holds, the secrets that decrypt stored credentials, and every prompt and response flowing through it.

The Three-Link Chain

The attack begins with CVE-2026-47101, an authorization bypass. When a regular internal_user creates a virtual API key, LiteLLM stores the caller-supplied allowed_routes field without validating it against the user's role. This field is intended to restrict what the key can access, but the proxy also treats it as a fallback authorization grant. An attacker can mint a key with allowed_routes: ["/*"], a wildcard that opens every route—including admin-only endpoints. The unchecked write appears across multiple key-management endpoints, requiring three separate pull requests to eliminate.

With route restrictions bypassed, the attacker reaches handlers that assume authorization has already been enforced upstream. CVE-2026-47102 exploits the /user/update endpoint, which allows users to edit their own records but does not restrict which fields they can modify. Sending a self-update request with user_role: "proxy_admin" promotes the caller to full proxy admin. VulnCheck scores this privilege escalation 8.7 under CVSS 4.0 and 8.8 under CVSS 3.1. An org_admin can reach this endpoint through legitimate code paths; a default internal_user reaches it only after chaining through the first vulnerability.

The final link is CVE-2026-40217, a sandbox escape in LiteLLM's Custom Code Guardrail feature, which compiles and runs admin-supplied Python to enforce safety policies. Production endpoints executed this code through exec() with no source-level filtering. When exec() receives a globals dictionary without builtins, Python silently injects the full builtins module, handing the code access to import, open, and eval. A simple payload calling os.system is enough to pop a reverse shell. A separate vulnerability path on the /guardrails/test_custom_code playground endpoint, found independently by X41 D-Sec, defeated a regex deny-list through runtime bytecode rewriting. Both paths deliver server-side code execution.

⚠️ Blast Radius — A compromised LiteLLM proxy exposes the master key, the salt key that decrypts stored credentials, the database URL, and every configured provider key. Keys stored in config files or environment variables are plaintext; keys in the database are encrypted but recoverable with the salt key. Every prompt, response, PII snippet, code fragment, internal ticket, and pasted secret that passed through the gateway becomes readable.

Response Injection: The Sharper Edge

The greater risk is not what an attacker reads but what they can rewrite. LiteLLM sits on the wire between AI agents and the model backend, so a compromise allows silent manipulation of responses in transit. Obsidian demonstrated this against Claude Code routed through a compromised proxy. This is not prompt injection—it does not persuade the model to misbehave. Instead, the attacker uses LiteLLM's built-in callback mechanism, an extension point that fires on every request and never appears in the admin UI. The callback swaps the model's genuine response for a forged tool call and rewrites the safety-check context so the action appears pre-approved.

In Obsidian's demonstration, a developer types a single word—hello—and the attacker delivers a reverse shell on the developer's machine. The model never sees the malicious command; the proxy injects it downstream. The developer sees reassuring context that suggests the action was verified. This attack surface is unique to gateways that mediate agentic workflows, where models call tools and execute code based on their own responses.

Beyond the Chain: Design-Level Risk

Separate from the patched chain, LiteLLM grants proxy_admin users an intentional code-execution path through its Model Context Protocol (MCP) support. Admins can register stdio MCP servers, which the proxy launches as local subprocesses. This is a design trade-off, not a bug, and the patches do not change it. Reaching admin effectively means reaching code execution. Obsidian reproduced a reverse shell on v1.88.0 using this mechanism. A related vulnerability in the same stdio-MCP machinery, CVE-2026-42271, allowed callers to spawn subprocesses through LiteLLM's MCP preview endpoints; it was exploited in the wild and added to CISA's Known Exploited Vulnerabilities catalog earlier this month.

Context: LiteLLM's Turbulent 2026 — This disclosure is the latest in a difficult year for LiteLLM. In March 2026, a supply-chain compromise backdoored two LiteLLM releases on PyPI. In April, a critical SQL injection vulnerability was exploited within 36 hours of public disclosure. Obsidian frames the current chain as a disclosed flaw with a working proof-of-concept, not as in-the-wild exploitation, but the proxy's central position in AI infrastructure continues to make it an attractive target.

Remediation Steps

Upgrade immediately to LiteLLM v1.83.14-stable or later. This is the first release containing the complete fix set for all three vulnerabilities. GitHub lists the release date as May 2, 2026. After upgrading, conduct a full audit of your deployment.

  • Re-verify every account holding the proxy_admin role and treat that role as equivalent to host-level access.
  • Review every Custom Code Guardrail configured on the proxy for unexpected or malicious logic.
  • Check the callbacks loaded from config.yaml under litellm_settings.callbacks—these never appear in the web console and are exactly where a post-compromise attacker would inject persistence.
  • Verify the integrity of the deployed code, not just configuration files.
  • If you suspect exposure, rotate all provider API keys, database credentials, and any stored MCP or OAuth tokens.

Root Cause: Misplaced Trust

The chain succeeds because of misplaced trust at every layer. The route gate trusted a caller-supplied field to define its own authorization scope. Downstream handlers trusted that the route gate had already enforced access control. The sandbox trusted Python's exec() to isolate untrusted code without providing a proper restricted environment. No layer validated the assumptions made by the layer above it. This is a textbook defense-in-depth failure: when the outermost control is bypassed, nothing behind it offers resistance.

AI gateways occupy a uniquely sensitive position in modern infrastructure. They hold the keys to every model provider, see every user interaction with those models, and—in agentic workflows—mediate the responses that drive code execution and tool use. A compromise does not just leak data; it allows silent, persistent manipulation of the intelligence layer that organizations are beginning to trust with autonomous decisions. The LiteLLM chain is a reminder that infrastructure built to manage AI risk can itself become the highest-risk component in the stack.


Originally published on RedEye Threat Intelligence.