chore(deps): update dependency langchain-openai to v1.1.14 [security]#404
Open
a-klos wants to merge 1 commit into
Open
chore(deps): update dependency langchain-openai to v1.1.14 [security]#404a-klos wants to merge 1 commit into
a-klos wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.1.8->1.1.14GitHub Vulnerability Alerts
CVE-2026-41488
Summary
langchain-openai's_url_to_size()helper (used byget_num_tokens_from_messagesfor image token counting) validated URLs for SSRF protection and then fetched them in a separate network operation with independent DNS resolution. This left a TOCTOU / DNS rebinding window: an attacker-controlled hostname could resolve to a public IP during validation and then to a private/localhost IP during the actual fetch.The practical impact is limited because the fetched response body is passed directly to Pillow's
Image.open()to extract dimensions — the response content is never returned, logged, or otherwise exposed to the caller. An attacker cannot exfiltrate data from internal services through this path. A potential risk is blind probing (inferring whether an internal host/port is open based on timing or error behavior).Affected versions
langchain-openai< 1.1.14Patched versions
langchain-openai>= 1.1.14 (requireslangchain-core>= 1.2.31)Affected code
File:
libs/partners/openai/langchain_openai/chat_models/base.py—_url_to_size()The vulnerable pattern was a validate-then-fetch with separate DNS resolution:
Fix
The fix replaces the validate-then-fetch pattern with an SSRF-safe httpx transport (
SSRFSafeSyncTransportfromlangchain-core) that:This fix was released in langchain-openai 1.1.14.
Configuration
📅 Schedule: Branch creation - "" in timezone UTC, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot.