Skip to content
Open
Show file tree
Hide file tree
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 pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dependencies = [
"python-ulid>=3.0.0",
"bcrypt>=4.0.0",
"cachetools>=6.2.2,<7.0.0",
"litellm>=1.75.5, <=1.82.6", # For LiteLLM tests. Upper bound pinned: versions 1.82.7+ compromised in supply chain attack.
"litellm>=1.75.5,<=1.83.0", # For LiteLLM tests. Upper bound pinned: versions 1.82.7+ compromised in supply chain attack.
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Compromised litellm versions not explicitly excluded from specifier

Medium Severity

The version specifier >=1.75.5,<=1.83.0 technically allows resolving to compromised versions 1.82.7 and 1.82.8, which contained credential-stealing malware from a supply chain attack. While those versions were removed from PyPI, environments using private mirrors or caches could still have them available. Adding !=1.82.7,!=1.82.8 to the specifier provides defense-in-depth protection.

Additional Locations (1)
Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit 7056e09. Configure here.

]

[project.scripts]
Expand Down
27 changes: 4 additions & 23 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading