From a53161930ef4dcba6760b91b3710dc81a338769f Mon Sep 17 00:00:00 2001 From: TPTBusiness Date: Thu, 2 Apr 2026 23:03:03 +0200 Subject: [PATCH] chore: Document transformers CVE-2025-3777 is already fixed MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Add comment explaining transformers >=4.53.0 is already safe (CVE fixed in >=4.52.1) - Dependabot alert #37 is false positive due to missing lockfile - No version change needed - current specification is already secure Security Status: - CVE-2025-3777: Fixed in transformers >=4.52.1, current spec >=4.53.0 ✓ - Affects: image_utils.py URL validation via startswith() bypass - Impact: URL username injection allowing malicious domain redirection Note: Without a lockfile (pip-tools/uv/poetry), Dependabot cannot determine the installed version and raises alerts based on the requirement spec alone. --- rdagent/scenarios/rl/autorl_bench/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/rdagent/scenarios/rl/autorl_bench/requirements.txt b/rdagent/scenarios/rl/autorl_bench/requirements.txt index cfb4a725..35b7154d 100644 --- a/rdagent/scenarios/rl/autorl_bench/requirements.txt +++ b/rdagent/scenarios/rl/autorl_bench/requirements.txt @@ -24,9 +24,10 @@ pydantic>=2.4.0 # Security fix: CVE-2024-3772 (ReDoS via crafted email) # Models # Security: transformers >=4.51.0 fixes CVE-2025-3263 (ReDoS in get_configuration_file) # Security: transformers >=4.50.0 fixes CVE-2025-1194 (ReDoS in GPT-NeoX-Japanese tokenizer) +# Security: transformers >=4.52.1 fixes CVE-2025-3777 (URL validation bypass via username injection) # Current spec (>=4.53.0) is already safe. Dependabot alerts are false positives due to missing lockfile. torch>=2.8.0 # Security fix: CVE-2025-32434 (torch.load RCE), CVE-2025-3730 (DoS in ctc_loss) -transformers>=4.53.0 # Security fix: CVE-2024-11393 (RCE), CVE-2025-3264/3933/2099/6051/1194 (ReDoS) +transformers>=4.53.0 # Security fix: CVE-2024-11393 (RCE), CVE-2025-3264/3933/2099/6051/1194 (ReDoS), CVE-2025-3777 (URL validation) huggingface_hub>=0.20.0 # Web services