This repository was archived by the owner on Aug 29, 2023. It is now read-only.
Update dependency tornado from 6.3.2 to 6.3.3 [SECURITY]#48
Merged
wbaker-figure merged 1 commit intomainfrom Aug 16, 2023
Merged
Update dependency tornado from 6.3.2 to 6.3.3 [SECURITY]#48wbaker-figure merged 1 commit intomainfrom
6.3.2 to 6.3.3 [SECURITY]#48wbaker-figure merged 1 commit intomainfrom
Conversation
wbaker-figure
approved these changes
Aug 16, 2023
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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:
==6.3.2->==6.3.3GitHub Vulnerability Alerts
GHSA-qppv-j76h-2rpx
Summary
Tornado interprets
-,+, and_in chunk length andContent-Lengthvalues, which are not allowed by the HTTP RFCs. This can result in request smuggling when Tornado is deployed behind certain proxies that interpret those non-standard characters differently. This is known to apply to older versions of haproxy, although the current release is not affected.Details
Tornado uses the
intconstructor to parse the values ofContent-Lengthheaders and chunk lengths in the following locations:tornado/http1connection.py:445tornado/http1connection.py:621tornado/http1connection.py:671Because
int("0_0") == int("+0") == int("-0") == int("0"), using theintconstructor to parse and validate strings that should contain only ASCII digits is not a good strategy.Release Notes
tornadoweb/tornado
v6.3.3Compare Source
Configuration
📅 Schedule: Branch creation - "" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.