Skip to content

Commit 26740cf

Browse files
committed
fix(cpex): bump litellm to 1.84.0 to clear dependency-review vulns
litellm 1.83.10 (the previous pin) is flagged by two newer advisories that fail the PR dependency-review gate (fail-on-severity: moderate): * GHSA-4xpc-pv4p-pm3w — authentication bypass via Host header injection (critical; vulnerable < 1.84.0) * GHSA-qrc4-49gv-mv9m — internal_user can create API keys beyond their role (high; vulnerable < 1.83.14) 1.84.0 is the lowest release that clears both (and every other known litellm advisory), consistent with the file's lowest-safe-release pin convention. Assisted-By: Claude (Anthropic AI) <noreply@anthropic.com> Signed-off-by: Frederico Araujo <frederico.araujo@ibm.com>
1 parent d68cdc7 commit 26740cf

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

authbridge/demos/hr-cpex/agent/requirements.txt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,14 @@ uvicorn[standard]==0.32.0
1717
# LLM provider abstraction — supports OpenAI, Anthropic, Ollama, WatsonX,
1818
# Azure, Bedrock, and more, so the demo runs against whatever the operator
1919
# has access to without code changes. litellm is pinned at the lowest safe
20-
# release: 1.82.7 / 1.82.8 had a supply-chain compromise (1.83.0 floor) and
20+
# release: 1.82.7 / 1.82.8 had a supply-chain compromise (1.83.0 floor),
2121
# 1.83.0–1.83.9 carry a SQL-injection / SSTI / RCE / sandbox-escape cluster
22-
# (GHSA-r75f-5x8p-qvmc, -xqmj-j6mv-4862, -v4p8-mg3p-g94g, -wxxx-gvqv-xp7p),
23-
# all patched by 1.83.10.
24-
litellm==1.83.10
22+
# (GHSA-r75f-5x8p-qvmc, -xqmj-j6mv-4862, -v4p8-mg3p-g94g, -wxxx-gvqv-xp7p,
23+
# patched by 1.83.10), and < 1.84.0 carries an authentication bypass via
24+
# Host header injection (GHSA-4xpc-pv4p-pm3w, critical) plus an
25+
# internal_user API-key privilege escalation (GHSA-qrc4-49gv-mv9m, high) —
26+
# both patched by 1.84.0.
27+
litellm==1.84.0
2528

2629
# httpx for the MCP tool call (routed through the sidecar forward proxy).
2730
# Bumped to 0.28.1 to satisfy a2a-sdk's httpx>=0.28.1 floor.

0 commit comments

Comments
 (0)