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-25536

CVE-2026-25536: MCP TypeScript SDK Data Leak Vulnerability

CVE-2026-25536 is an information disclosure vulnerability in MCP TypeScript SDK that causes cross-client response data leaks in multi-client deployments. This article covers technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2026-25536 Overview

A race condition vulnerability has been identified in the MCP TypeScript SDK, the official TypeScript SDK for Model Context Protocol servers and clients. This vulnerability enables cross-client response data leakage when a single McpServer/Server and transport instance is reused across multiple client connections. The issue is most prevalent in stateless StreamableHTTPServerTransport deployments where shared resources between concurrent connections can lead to sensitive data being exposed to unintended recipients.

Critical Impact

Sensitive response data intended for one client may be leaked to other connected clients due to improper isolation of server state, potentially exposing confidential information across client boundaries.

Affected Products

  • MCP TypeScript SDK versions 1.10.0 through 1.25.3
  • Applications using StreamableHTTPServerTransport with shared server instances
  • Model Context Protocol server deployments with multiple concurrent client connections

Discovery Timeline

  • 2026-02-04 - CVE CVE-2026-25536 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-25536

Vulnerability Analysis

This vulnerability stems from CWE-362 (Concurrent Execution using Shared Resource with Improper Synchronization), commonly known as a race condition. When deploying MCP TypeScript SDK in environments where a single server instance handles multiple client connections simultaneously, response data can inadvertently be routed to the wrong client due to improper isolation of client-specific state.

The flaw is particularly dangerous in stateless HTTP transport scenarios where the StreamableHTTPServerTransport class is instantiated once and reused across all incoming client requests. Without proper synchronization mechanisms, response callbacks may reference stale or incorrect client context, resulting in data leakage between sessions.

The network-accessible nature of this vulnerability means attackers can potentially exploit it remotely without special privileges beyond basic authentication to the MCP server. The primary impact is confidentiality loss, as sensitive AI model responses, context data, or user-specific information may be exposed to unauthorized parties.

Root Cause

The root cause is a race condition in the shared server and transport instance architecture. When multiple clients connect to the same McpServer or Server instance, response handlers may not properly maintain client isolation. The StreamableHTTPServerTransport was designed for stateless operation but failed to properly segregate response delivery channels between concurrent client sessions. This allows response data generated for one client to potentially be delivered to another client's connection.

Attack Vector

An attacker can exploit this vulnerability by establishing multiple concurrent connections to a vulnerable MCP server deployment. By timing requests appropriately and monitoring responses, an attacker may receive response data intended for other clients. This is particularly concerning in multi-tenant environments where the MCP server processes requests from multiple users or applications.

The attack requires network access to the MCP server and low-privilege authentication (if required by the deployment). No user interaction is necessary, and the attacker can passively receive leaked data during normal server operation. The vulnerability is most easily exploited in high-concurrency scenarios where race conditions are more likely to manifest.

Detection Methods for CVE-2026-25536

Indicators of Compromise

  • Unexpected response data appearing in client connections that doesn't match the original request context
  • Log entries showing response delivery to mismatched client session identifiers
  • Users reporting receipt of data belonging to other users or sessions
  • Anomalous patterns in response timing that suggest race condition exploitation

Detection Strategies

  • Monitor MCP server logs for response routing inconsistencies or session ID mismatches
  • Implement response validation on clients to detect when received data doesn't match request context
  • Audit deployments for shared McpServer or StreamableHTTPServerTransport instances across client connections
  • Review application architecture to identify stateless HTTP transport deployments with concurrent access patterns

Monitoring Recommendations

  • Enable detailed logging for all MCP server response routing operations
  • Implement alerting for any detected cross-session data routing anomalies
  • Monitor connection patterns for suspicious concurrent connection attempts
  • Track version deployment to ensure vulnerable SDK versions (1.10.0 to 1.25.3) are identified for remediation

How to Mitigate CVE-2026-25536

Immediate Actions Required

  • Upgrade MCP TypeScript SDK to version 1.26.0 or later immediately
  • Audit all deployments using StreamableHTTPServerTransport for shared instance patterns
  • Consider implementing per-client server instances as a temporary mitigation until patching is complete
  • Review logs for any historical evidence of cross-client data leakage

Patch Information

The vulnerability has been patched in MCP TypeScript SDK version 1.26.0. Organizations should update their dependencies immediately. For npm-based projects, run npm update @modelcontextprotocol/sdk or explicitly set the version to 1.26.0 or later in your package.json.

Additional technical details and discussion can be found in the GitHub Security Advisory GHSA-345p-7cg4-v4c7. Related issues are documented in GitHub Issue #204 and GitHub Issue #243.

Workarounds

  • Deploy separate McpServer instances per client connection rather than reusing a single shared instance
  • Implement request-response correlation validation at the application layer to detect and reject misrouted responses
  • Add connection isolation middleware to ensure each client request is handled in an isolated context
  • Consider switching to stateful transport mechanisms until the patch can be applied
bash
# Configuration example
# Update MCP TypeScript SDK to patched version
npm install @modelcontextprotocol/sdk@1.26.0

# Verify installed version
npm list @modelcontextprotocol/sdk

# For yarn users
yarn upgrade @modelcontextprotocol/sdk@1.26.0

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechMcp Typescript Sdk

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-362
  • Technical References
  • GitHub Issue #204

  • GitHub Issue #243

  • GitHub Security Advisory GHSA-345p-7cg4-v4c7
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE Flaw
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