A Regular Expression Denial of Service (ReDoS) exists in the preprocess_string()
function of the transformers.testing_utils
module. In versions before 4.50.0, the regex used to process code blocks in docstrings contains nested quantifiers that can trigger catastrophic backtracking when given inputs with many newline characters. An attacker who can supply such input to preprocess_string()
(or code paths that call it) can force excessive CPU usage and degrade availability.
Fix: released in 4.50.0, which rewrites the regex to avoid the inefficient pattern. ([GitHub][1])
< 4.50.0
4.50.0
{ "severity": "MODERATE", "github_reviewed": true, "nvd_published_at": "2025-05-19T12:15:19Z", "github_reviewed_at": "2025-05-19T21:53:36Z", "cwe_ids": [ "CWE-1333" ] }