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
    • 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-35030

CVE-2026-35030: Litellm Auth Bypass Vulnerability

CVE-2026-35030 is an authentication bypass flaw in Litellm proxy server that allows attackers to inherit legitimate user identities via JWT token manipulation. This article covers technical details, affected versions, and mitigations.

Published: April 10, 2026

CVE-2026-35030 Overview

CVE-2026-35030 is a critical authentication bypass vulnerability in LiteLLM, an AI Gateway proxy server used to call LLM APIs in OpenAI (or native) format. When JWT authentication is enabled via the enable_jwt_auth: true configuration option, the OIDC userinfo cache uses an insufficient key derivation scheme that relies on only the first 20 characters of the token (token[:20]). Since JWT headers produced by the same signing algorithm generate identical first 20 characters, an unauthenticated attacker can craft a malicious token that collides with a legitimate user's cached token, effectively inheriting their identity and permissions.

Critical Impact

An unauthenticated attacker can bypass authentication and impersonate any legitimate user by exploiting cache key collisions, gaining unauthorized access to LLM API resources with the victim's full permissions.

Affected Products

  • LiteLLM versions prior to 1.83.0
  • Deployments with JWT/OIDC authentication enabled (enable_jwt_auth: true)
  • LiteLLM proxy server configurations using OIDC userinfo caching

Discovery Timeline

  • April 6, 2026 - CVE-2026-35030 published to NVD
  • April 7, 2026 - Last updated in NVD database

Technical Details for CVE-2026-35030

Vulnerability Analysis

This vulnerability (CWE-287: Improper Authentication) exists in LiteLLM's OIDC userinfo caching mechanism. When JWT authentication is enabled, the application caches user information to improve performance and reduce redundant calls to the identity provider. However, the cache key derivation algorithm truncates the JWT to its first 20 characters, creating a predictable collision space.

JWT tokens following standard specifications contain a base64-encoded header that includes the signing algorithm and token type. For tokens signed with the same algorithm (e.g., RS256), the header portion is often identical or highly similar. Since the first 20 characters of a JWT typically fall within this header section, multiple distinct tokens can produce the same cache key.

When an attacker sends a crafted token whose first 20 characters match a cached legitimate token, the cache lookup succeeds and returns the legitimate user's identity information. The attacker then inherits all permissions and access rights associated with that user without ever needing valid credentials.

Root Cause

The root cause is an insecure cache key derivation scheme in the OIDC userinfo cache implementation. Using token[:20] as a cache key is fundamentally flawed because JWT headers are highly predictable and often identical across tokens from the same issuer using the same signing algorithm. A cryptographically secure approach would use a hash of the entire token or a unique token identifier (such as the jti claim) as the cache key.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker with network access to the LiteLLM proxy can:

  1. Identify that the target deployment has JWT authentication enabled
  2. Observe or predict the JWT header format used by legitimate tokens (typically standard across an organization)
  3. Craft a malicious token with matching first 20 characters
  4. Send requests to the proxy with the crafted token
  5. Upon cache hit, gain access with the legitimate user's identity and permissions

The vulnerability allows unauthorized access to any LLM API endpoints protected by the JWT authentication mechanism, potentially exposing sensitive AI workloads and data.

Detection Methods for CVE-2026-35030

Indicators of Compromise

  • Unusual authentication patterns with JWT tokens that have identical prefixes but different signatures
  • Authentication success events from tokens that fail signature verification
  • Multiple user sessions appearing to originate from different tokens with matching cache keys
  • Unexpected user activity from accounts that haven't performed active authentication recently

Detection Strategies

  • Implement logging for JWT cache hits and misses with full token hashes for correlation
  • Monitor for authentication events where token validation status is inconsistent
  • Alert on sudden changes in user behavior patterns following cache-based authentication
  • Analyze JWT token entropy and header patterns in authentication logs

Monitoring Recommendations

  • Enable detailed authentication logging in LiteLLM proxy configurations
  • Deploy network monitoring to detect anomalous API access patterns
  • Implement user behavior analytics to identify session anomalies
  • Review access logs for users gaining access without corresponding identity provider authentication events

How to Mitigate CVE-2026-35030

Immediate Actions Required

  • Upgrade LiteLLM to version 1.83.0 or later immediately
  • If upgrade is not immediately possible, disable JWT authentication (enable_jwt_auth: false) until patching is complete
  • Clear all existing OIDC userinfo caches to invalidate any potentially compromised cached identities
  • Review access logs for signs of exploitation and investigate any anomalies

Patch Information

The vulnerability has been fixed in LiteLLM version 1.83.0. Organizations should upgrade to this version or later to address the cache key collision vulnerability. Detailed information about the fix is available in the GitHub Security Advisory GHSA-jjhc-v7c2-5hh6.

Workarounds

  • Disable JWT authentication by setting enable_jwt_auth: false in the LiteLLM configuration until the patch can be applied
  • Implement additional network-level authentication controls such as mTLS or IP allowlisting to restrict access to the proxy
  • Deploy a web application firewall (WAF) with custom rules to validate JWT token integrity before forwarding to LiteLLM
  • Consider using alternative authentication mechanisms supported by LiteLLM that do not rely on the vulnerable caching implementation
bash
# Configuration example - Disable JWT authentication until patched
# In your LiteLLM proxy config (config.yaml):
# enable_jwt_auth: false

# Verify LiteLLM version after upgrade
pip show litellm | grep Version
# Expected: Version: 1.83.0 or higher

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechLitellm

  • SeverityCRITICAL

  • CVSS Score9.4

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:H/VA:N/SC:H/SI:H/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-287
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-42203: Litellm Proxy Server RCE Vulnerability

  • CVE-2026-42271: Litellm Litellm RCE Vulnerability

  • CVE-2026-42208: LiteLLM Proxy Server SQL Injection Flaw

  • CVE-2026-35029: LiteLLM Proxy Server RCE 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