The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2025-6921

CVE-2025-6921: Huggingface Transformers ReDoS Vulnerability

CVE-2025-6921 is a Regular Expression Denial of Service flaw in Huggingface Transformers affecting versions prior to 4.53.0. Attackers can exploit malicious regex patterns to cause 100% CPU utilization and service unavailability.

Published: April 29, 2026

CVE-2025-6921 Overview

A Regular Expression Denial of Service (ReDoS) vulnerability has been identified in the HuggingFace Transformers library affecting versions prior to 4.53.0. The vulnerability exists in the AdamWeightDecay optimizer, specifically within the _do_use_weight_decay method which processes user-controlled regular expressions. When malicious regular expressions are supplied through the include_in_weight_decay and exclude_from_weight_decay lists, they can trigger catastrophic backtracking during re.search operations, leading to complete CPU exhaustion and denial of service conditions.

Critical Impact

Attackers who can control regex patterns in the optimizer configuration can cause machine learning tasks to hang indefinitely, rendering ML services and training pipelines completely unresponsive with 100% CPU utilization.

Affected Products

  • HuggingFace Transformers versions prior to 4.53.0

Discovery Timeline

  • September 23, 2025 - CVE-2025-6921 published to NVD
  • October 10, 2025 - Last updated in NVD database

Technical Details for CVE-2025-6921

Vulnerability Analysis

This vulnerability exploits a fundamental weakness in how regular expression engines handle certain pattern structures. The AdamWeightDecay optimizer in HuggingFace Transformers allows users to specify regex patterns for including or excluding certain model parameters from weight decay. These patterns are passed directly to re.search() without validation or sanitization.

The vulnerability is categorized under CWE-400 (Uncontrolled Resource Consumption), as it allows attackers to exhaust CPU resources through specially crafted input. The attack is network-accessible and requires no authentication or user interaction, making it exploitable in any environment where untrusted users can influence optimizer configuration parameters.

Root Cause

The root cause lies in the direct use of user-supplied regular expressions without implementing safeguards against patterns that exhibit exponential time complexity. Regular expression engines using backtracking algorithms are vulnerable to "catastrophic backtracking" when processing certain pattern-input combinations. The _do_use_weight_decay method accepts arbitrary regex patterns in the include_in_weight_decay and exclude_from_weight_decay configuration lists and passes them directly to Python's re.search() function, creating the ReDoS attack surface.

Attack Vector

The attack can be executed by any user who has the ability to configure the AdamWeightDecay optimizer parameters. In ML-as-a-Service platforms, API endpoints, or shared training environments where users can specify optimizer configurations, an attacker can inject malicious regex patterns. When the optimizer processes model parameter names against these patterns, the regex engine enters a state of catastrophic backtracking, consuming 100% CPU and halting the training process indefinitely.

The security patch completely removes regex dependency in affected components:

python
 from shutil import copyfile
 from typing import Any, Optional, Union
 
-import regex as re
 import sentencepiece
 
 from ...tokenization_utils import PreTrainedTokenizer

Source: GitHub Commit

Detection Methods for CVE-2025-6921

Indicators of Compromise

  • Sustained 100% CPU utilization on systems running HuggingFace Transformers training jobs
  • ML training tasks that become unresponsive or hang indefinitely without progress
  • Unusual or complex regex patterns in optimizer configuration files or API requests
  • Process threads stuck in regex evaluation operations for extended periods

Detection Strategies

  • Monitor CPU utilization patterns on ML training infrastructure for anomalous sustained spikes
  • Implement logging and alerting on optimizer configuration changes, particularly regex pattern modifications
  • Audit incoming API requests or configuration files for suspicious regex patterns containing nested quantifiers or overlapping alternatives
  • Deploy application-level timeouts for regex evaluation operations

Monitoring Recommendations

  • Establish baseline CPU metrics for normal training operations and alert on significant deviations
  • Implement request tracing to correlate configuration changes with performance degradation
  • Monitor process states for threads stuck in system calls associated with regex evaluation
  • Set up automated alerts for training jobs that exceed expected duration thresholds

How to Mitigate CVE-2025-6921

Immediate Actions Required

  • Upgrade HuggingFace Transformers to version 4.53.0 or later immediately
  • Audit existing optimizer configurations for any externally-supplied regex patterns
  • Implement input validation to reject complex regex patterns from untrusted sources
  • Consider implementing regex execution timeouts as a defense-in-depth measure

Patch Information

HuggingFace has addressed this vulnerability in version 4.53.0 by removing the regex dependency in affected tokenization components. The fix eliminates the ReDoS attack surface by avoiding regex processing of user-controlled input entirely. The security patch is available via the GitHub commit. Additional technical details about the vulnerability can be found in the Huntr bounty report.

Workarounds

  • Restrict optimizer configuration to trusted administrators only until patching is complete
  • Implement allowlisting for regex patterns, permitting only known-safe expressions
  • Add application-level timeouts around regex operations as a temporary measure
  • Validate and sanitize all user-supplied regex patterns before passing to the optimizer
bash
# Upgrade HuggingFace Transformers to patched version
pip install --upgrade transformers>=4.53.0

# Verify installed version
pip show transformers | grep Version

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechHuggingface Transformers

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-400
  • Technical References
  • Huntr Bounty Report
  • Vendor Resources
  • GitHub Commit Changes
  • Related CVEs
  • CVE-2025-6638: Huggingface Transformers DoS Vulnerability

  • CVE-2025-3262: Huggingface Transformers DoS Vulnerability

  • CVE-2025-2099: Huggingface Transformers ReDoS Vulnerability

  • CVE-2026-1839: HuggingFace Transformers RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English