HTMLHeaderTextSplitter.split_text_from_url() validated the initial URL using validate_safe_url() 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.
langchain-text-splitters < 1.1.2langchain-text-splitters >= 1.1.2 (requires langchain-core >= 1.2.31)File: libs/text-splitters/langchain_text_splitters/html.py — split_text_from_url()
The vulnerable pattern validated the URL once then fetched with redirects enabled:
validate_safe_url(url, allow_private=False, allow_http=True)
response = requests.get(url, timeout=timeout, **kwargs)
split_text_from_url(), relying on its
built-in validate_safe_url() check to block requests to internal networks.validate_safe_url() (public hostname, public IP).302 redirect to an internal endpoint
(e.g., an unauthenticated internal admin API, or a cloud instance metadata
service that does not require request headers — such as AWS IMDSv1).requests.get() follows the redirect automatically. The redirect target is
not revalidated.Document objects to the
application.Notes:
split_text_from_url() included validate_safe_url() specifically to be
safe with untrusted URLs — the redirect loophole defeated that guarantee.The fix replaces requests.get() with an SSRF-safe httpx transport (SSRFSafeSyncTransport from langchain-core) that validates DNS results and pins connections to validated IPs on every request, including redirect targets, eliminating redirect-based bypasses.
Additionally, split_text_from_url() has been deprecated. Users should fetch HTML content themselves and pass it to split_text() directly.
{
"cwe_ids": [
"CWE-918"
],
"severity": "MODERATE",
"github_reviewed_at": "2026-04-16T22:53:32Z",
"github_reviewed": true,
"nvd_published_at": "2026-04-24T21:16:19Z"
}