-
Notifications
You must be signed in to change notification settings - Fork 18
[Snyk] Security upgrade requests from 2.31.0 to 2.33.0 #420
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,3 +2,4 @@ hidapi >= 0.7.99.post20 | |
| web3 >= 4.8 | ||
| Pillow | ||
| stellar-sdk>=4.0.0,<6.0.0 | ||
| requests>=2.33.0 # not directly required, pinned by Snyk to avoid a vulnerability | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Requests 2.33.0 breaks supported Python versionsMedium Severity
|
||


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.
Security fix placed in wrong requirements file
Medium Severity
The
requestspackage is a direct dependency declared inpython/requirements.txt(with>=2.4.0) and used asinstall_requiresinsetup.py. Pinningrequests>=2.33.0inrequirements-optional.txt— which is only consumed by thefulltox environment — leaves the actual install path unprotected. Standard installations viapip installorsetup.pywill still resolverequests>=2.4.0, meaning the vulnerability (SNYK-PYTHON-REQUESTS-15763443) remains exploitable for most users. The comment "not directly required" is also incorrect.