CVE-2026-41481: LangChain: HTMLHeaderTextSplitter.split_text_from_url SSRF Redirect Bypass
LangChain is a framework for building agents and LLM-powered applications. Prior to langchain-text-splitters 1.1.2, HTMLHeaderTextSplitter.splittextfromurl() validated the initial URL using validatesafeurl() but then performed the fetch with requests.get() with redirects enabled (the default). Because redirect targets were not revalidated, a URL pointing to an attacker-controlled server could redirect to internal, localhost, or cloud metadata endpoints, bypassing SSRF protections. The response body is parsed and returned as Document objects to the calling application code. Whether this constitutes a data exfiltration path depends on the application: if it exposes Document contents (or derivatives) back to the requester who supplied the URL, sensitive data from internal endpoints could be leaked. Applications that store or process Documents internally without returning raw content to the requester are not directly exposed to data exfiltration through this issue. This vulnerability is fixed in 1.1.2.
Affected Software
Event History
Frequently Asked Questions
What is the severity of CVE-2026-41481?
CVE-2026-41481 has been rated as a medium severity vulnerability due to its potential for SSRF (Server-Side Request Forgery) redirect bypass.
How do I fix CVE-2026-41481?
To fix CVE-2026-41481, upgrade the langchain-text-splitters package to version 1.1.2 or later.
What does CVE-2026-41481 affect?
CVE-2026-41481 affects the langchain-text-splitters package versions prior to 1.1.2.
What is the impact of CVE-2026-41481?
The impact of CVE-2026-41481 includes the ability for attackers to exploit SSRF vulnerabilities and potentially access sensitive internal resources.
How can CVE-2026-41481 be exploited?
CVE-2026-41481 can be exploited by crafting a malicious URL that bypasses the initial URL validation in HTMLHeaderTextSplitter.split_text_from_url.