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

CVE-2026-25528: LangSmith Client SDKs SSRF Vulnerability

CVE-2026-25528 is a Server-Side Request Forgery flaw in LangSmith Client SDKs that enables attackers to exfiltrate trace data via malicious HTTP headers. This article covers the technical details, affected versions, and mitigation.

Published: February 13, 2026

CVE-2026-25528 Overview

CVE-2026-25528 is a Server-Side Request Forgery (SSRF) vulnerability in the LangSmith Client SDKs that allows attackers to exfiltrate sensitive trace data to attacker-controlled endpoints. The vulnerability exists in the distributed tracing feature where malicious HTTP headers can inject arbitrary api_url values through the baggage header, causing the SDK to send sensitive information to unauthorized destinations.

Critical Impact

Attackers can intercept and exfiltrate sensitive trace data including API keys and runtime information by injecting malicious replica configurations through HTTP headers.

Affected Products

  • LangSmith Python SDK versions prior to 0.6.3
  • LangSmith JavaScript/TypeScript SDK versions prior to 0.4.6

Discovery Timeline

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

Technical Details for CVE-2026-25528

Vulnerability Analysis

This SSRF vulnerability affects the distributed tracing functionality within the LangSmith SDK. When applications utilize distributed tracing, the SDK parses incoming HTTP headers through RunTree.from_headers() in Python or RunTree.fromHeaders() in TypeScript. The vulnerability stems from insufficient validation of the baggage header, which can contain replica configurations including api_url and api_key fields.

Prior to the security fix, these attacker-controlled values were accepted without proper validation. When a traced operation completes, the SDK's post() and patch() methods automatically send run data to all configured replica URLs, including any malicious endpoints injected by an attacker. This creates a data exfiltration channel where sensitive trace information, potentially including API keys and application runtime data, can be siphoned to attacker-controlled servers.

The vulnerability is classified under CWE-918 (Server-Side Request Forgery), as it allows attackers to manipulate server-side requests to arbitrary destinations.

Root Cause

The root cause of this vulnerability is the lack of input validation on the api_url parameter parsed from the HTTP baggage header. The SDK trusted user-supplied header values and used them directly to configure replica endpoints without sanitization or allowlist validation. This design flaw allowed external attackers to inject arbitrary URLs into the SDK's replica configuration system.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by crafting malicious HTTP requests containing a specially crafted baggage header with attacker-controlled api_url values. When the target application processes these requests using the vulnerable SDK's distributed tracing feature, the injected URLs are added to the replica configuration.

The exploitation mechanism works as follows: the attacker sends HTTP requests with a manipulated baggage header to a service using the LangSmith SDK. The SDK's header parsing functions extract the malicious replica configuration. When traced operations complete, the SDK sends trace data to all replica endpoints, including the attacker's server. This allows passive exfiltration of sensitive operational data without requiring direct access to the target system.

Detection Methods for CVE-2026-25528

Indicators of Compromise

  • Unexpected outbound HTTP connections from services using LangSmith SDK to unfamiliar external endpoints
  • Unusual baggage header values in incoming HTTP requests containing external URLs
  • Trace data appearing in logs destined for non-standard API endpoints
  • Network traffic patterns showing data exfiltration to unknown domains

Detection Strategies

  • Monitor network egress traffic for connections to unexpected external endpoints from LangSmith-enabled services
  • Implement HTTP header inspection rules to detect suspicious baggage headers with external URL patterns
  • Deploy application-layer monitoring to identify anomalous replica configurations
  • Review LangSmith SDK configuration logs for unexpected api_url entries

Monitoring Recommendations

  • Enable verbose logging on LangSmith SDK operations to capture replica configuration changes
  • Implement network segmentation and egress filtering to restrict outbound connections from tracing services
  • Deploy SIEM rules to correlate unusual HTTP header patterns with subsequent outbound connections
  • Establish baseline network behavior for services using distributed tracing to identify anomalies

How to Mitigate CVE-2026-25528

Immediate Actions Required

  • Upgrade the LangSmith Python SDK to version 0.6.3 or later immediately
  • Upgrade the LangSmith JavaScript/TypeScript SDK to version 0.4.6 or later immediately
  • Audit network logs for any suspicious outbound connections from affected services
  • Review and restrict network egress policies for services utilizing distributed tracing

Patch Information

The vulnerability has been addressed in LangSmith Python SDK version 0.6.3 and JavaScript SDK version 0.4.6. These patched versions implement proper validation of replica configurations parsed from HTTP headers, preventing injection of arbitrary api_url values. For detailed information about the fix, refer to the GitHub Security Advisory.

Workarounds

  • Implement network-level egress filtering to restrict outbound connections to only known LangSmith API endpoints
  • Deploy a reverse proxy or WAF rule to sanitize or block suspicious baggage headers before they reach the application
  • Temporarily disable distributed tracing features if patching cannot be performed immediately
  • Use network segmentation to isolate services running vulnerable SDK versions from external network access

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

  • Vulnerability Details
  • TypeSSRF

  • Vendor/TechLangsmith

  • SeverityMEDIUM

  • CVSS Score5.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-918
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-25750: LangSmith Auth Bypass Vulnerability
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