Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-25480

CVE-2026-25480: Litestar Cache Poisoning Vulnerability

CVE-2026-25480 is a cache poisoning flaw in Litestar ASGI framework's FileStore that allows attackers to trigger key collisions via crafted paths. This article covers the technical details, affected versions, and mitigation.

Published: February 13, 2026

CVE-2026-25480 Overview

CVE-2026-25480 is a cache poisoning vulnerability in Litestar, an Asynchronous Server Gateway Interface (ASGI) framework. Prior to version 2.20.0, the FileStore component maps cache keys to filenames using Unicode NFKD normalization and ord() substitution without separators, creating key collisions. When FileStore is used as a response-cache backend, an unauthenticated remote attacker can trigger cache key collisions via crafted paths, causing one URL to serve cached responses of another (cache poisoning/mixup).

Critical Impact

Unauthenticated remote attackers can exploit cache key collisions to poison cached responses, potentially serving malicious or unintended content to users via legitimate URLs.

Affected Products

  • Litestar versions prior to 2.20.0
  • Applications using FileStore as response-cache backend
  • ASGI-based web applications leveraging Litestar caching functionality

Discovery Timeline

  • 2026-02-09 - CVE CVE-2026-25480 published to NVD
  • 2026-02-09 - Last updated in NVD database

Technical Details for CVE-2026-25480

Vulnerability Analysis

This vulnerability falls under CWE-176 (Improper Handling of Unicode Encoding), where the FileStore caching mechanism in Litestar improperly processes cache keys through Unicode NFKD (Normalization Form Compatibility Decomposition) normalization combined with ord() character substitution. The fundamental flaw lies in the absence of separators between normalized character representations, which allows distinct input strings to produce identical cache key mappings.

When Litestar's FileStore is configured as the response-cache backend, every cached response is stored using a filename derived from the request URL. The vulnerable normalization process can cause two different URLs to resolve to the same cache filename. An attacker who identifies colliding URL patterns can craft requests that poison the cache, causing legitimate user requests to receive responses intended for different endpoints.

The attack is particularly concerning because it requires no authentication and can be executed entirely over the network. The impact affects both confidentiality (sensitive data from one endpoint may be exposed via another) and integrity (users receive incorrect cached content).

Root Cause

The root cause is the improper implementation of cache key generation in the FileStore component. The algorithm applies Unicode NFKD normalization followed by ord() substitution to convert cache keys into filenames. Without proper separators or delimiters between the ordinal representations of characters, distinct input strings can collide into identical output filenames. This collision space enables attackers to predictably craft URLs that map to the same cache entry as legitimate endpoints.

Attack Vector

The attack is network-based and does not require authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying URL patterns that collide after Unicode NFKD normalization and ord() substitution
  2. Sending requests with crafted paths that map to the same cache key as target endpoints
  3. Poisoning the cache with attacker-controlled or misleading content
  4. Waiting for legitimate users to request the target URL, which now serves the poisoned cached response

The vulnerability manifests in the FileStore cache key normalization logic. The fix implemented in version 2.20.0 addresses the collision issue by properly separating ordinal values during filename generation. For technical implementation details, see the GitHub Commit Details and the GitHub Security Advisory GHSA-vxqx-rh46-q2pg.

Detection Methods for CVE-2026-25480

Indicators of Compromise

  • Unexpected cache behavior where responses do not match requested URLs
  • Users reporting receiving incorrect page content or data from different endpoints
  • Anomalous web request patterns with Unicode characters or unusual URL encodings in path segments
  • Cache entries with suspiciously similar filenames for different logical endpoints

Detection Strategies

  • Monitor web server access logs for requests containing unusual Unicode normalization patterns or character sequences that could indicate collision attempts
  • Implement cache integrity verification by comparing response content with expected endpoint data
  • Deploy application-layer monitoring to detect cache hit/miss anomalies that deviate from normal traffic patterns
  • Review FileStore cache directory for filename collisions or duplicate entries

Monitoring Recommendations

  • Enable verbose logging for cache operations in Litestar applications to track key generation and storage events
  • Set up alerts for unusual cache hit ratios or unexpected cache invalidation patterns
  • Monitor for increased error rates or user complaints about receiving incorrect content
  • Implement periodic cache audits to identify potential collision artifacts

How to Mitigate CVE-2026-25480

Immediate Actions Required

  • Upgrade Litestar to version 2.20.0 or later immediately
  • Review application configurations to identify deployments using FileStore as the response-cache backend
  • Clear existing cache stores after upgrading to remove any potentially poisoned entries
  • Consider temporarily disabling response caching until the upgrade is applied if immediate patching is not possible

Patch Information

The vulnerability has been fixed in Litestar version 2.20.0. The patch modifies the cache key generation algorithm to properly separate ordinal values, eliminating the collision vulnerability. Organizations should upgrade to this version or later to remediate the issue.

For detailed patch information, refer to:

  • Litestar Release Notes
  • Litestar Release Tag v2.20.0
  • GitHub Commit Details

Workarounds

  • Switch to an alternative cache backend (such as Redis or Memcached) that does not use the vulnerable FileStore key normalization
  • Implement a custom cache key function that uses collision-resistant hashing (e.g., SHA-256) before passing keys to FileStore
  • Add input validation to reject or normalize URLs at the application layer before they reach the caching mechanism
  • Disable response caching entirely for sensitive endpoints until the upgrade can be completed
bash
# Example: Verify Litestar version and upgrade
pip show litestar | grep Version
pip install --upgrade litestar>=2.20.0

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLitestar

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-176
  • Technical References
  • Litestar Release Notes

  • GitHub Commit Details

  • Litestar Release Tag v2.20.0

  • GitHub Security Advisory GHSA-vxqx-rh46-q2pg
  • Related CVEs
  • CVE-2026-25479: Litestar Auth Bypass Vulnerability

  • CVE-2026-25478: Litestar ASGI Framework XSS Vulnerability
Default Legacy - Prefooter | 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