-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(deps): update dependency tornado to v6 [security] #5361
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/pypi-tornado-vulnerability
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains 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
566f9fa
to
43c8e55
Compare
43c8e55
to
e7f89ab
Compare
55185d3
to
7ea5cf7
Compare
e8d2aa1
to
4bbd149
Compare
4bbd149
to
beb5050
Compare
beb5050
to
7967645
Compare
af2aae4
to
485cf59
Compare
72bd66e
to
3b490ed
Compare
3b490ed
to
020dfb2
Compare
annagav
approved these changes
Apr 25, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was able to run the app locally access the public pages and personal dashboard, as well as the admin. 👍
020dfb2
to
758337d
Compare
758337d
to
e8e7e5a
Compare
73b9a48
to
dce94b4
Compare
dce94b4
to
28fa207
Compare
28fa207
to
690939f
Compare
7625ef6
to
ee35efd
Compare
ee35efd
to
178f78d
Compare
07736df
to
82dfb59
Compare
82dfb59
to
d572078
Compare
d572078
to
613d59e
Compare
7ae80c1
to
3fb486f
Compare
cec8e4b
to
f1ae391
Compare
b1cfe74
to
7812d1a
Compare
7812d1a
to
a81f32f
Compare
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:
==5.1.1
->==6.3.3
GitHub Vulnerability Alerts
CVE-2023-28370
Open redirect vulnerability in Tornado versions 6.3.1 and earlier allows a remote unauthenticated attacker to redirect a user to an arbitrary web site and conduct a phishing attack by having user access a specially crafted URL.
GHSA-qppv-j76h-2rpx
Summary
Tornado interprets
-
,+
, and_
in chunk length andContent-Length
values, 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
int
constructor to parse the values ofContent-Length
headers and chunk lengths in the following locations:tornado/http1connection.py:445
tornado/http1connection.py:621
tornado/http1connection.py:671
Because
int("0_0") == int("+0") == int("-0") == int("0")
, using theint
constructor to parse and validate strings that should contain only ASCII digits is not a good strategy.Release Notes
tornadoweb/tornado (tornado)
v6.3.3
Compare Source
v6.3.2
Compare Source
v6.3.1
Compare Source
v6.3
Compare Source
v6.2
Compare Source
v6.1
Compare Source
v6.0.4
Compare Source
v6.0.3
Compare Source
v6.0.2
Compare Source
v6.0.1
Compare Source
v6.0
Compare Source
Configuration
📅 Schedule: Branch creation - "" in timezone US/Eastern, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ 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 was generated by Mend Renovate. View the repository job log.