Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion run/idp-sql/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ pg8000==1.31.5
gunicorn==23.0.0
firebase-admin==7.0.0
structlog==25.1.0
urllib3<2.0.0 #https://stackoverflow.com/questions/76175361/firebase-authentication-httpresponse-object-has-no-attribute-strict-status
urllib3<2.7.1 #https://stackoverflow.com/questions/76175361/firebase-authentication-httpresponse-object-has-no-attribute-strict-status

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security-high high

The constraint urllib3<2.7.1 only defines an upper bound, which allows package managers to resolve to older, vulnerable versions of urllib3 (such as 1.26.x or 2.5.x / 2.6.x). To ensure that the security vulnerabilities (such as CVE-2026-44432 and CVE-2026-44431) are remediated, you should define a lower bound of >=2.7.0.

urllib3>=2.7.0,<2.7.1 #https://stackoverflow.com/questions/76175361/firebase-authentication-httpresponse-object-has-no-attribute-strict-status