A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2026-4372

CVE-2026-4372: HuggingFace Transformers RCE Vulnerability

CVE-2026-4372 is a critical remote code execution flaw in HuggingFace transformers library that allows attackers to execute arbitrary code by crafting malicious config.json files. This article covers technical details, affected versions, impact, and mitigation steps.

Published: May 28, 2026

CVE-2026-4372 Overview

CVE-2026-4372 is a remote code execution vulnerability affecting all versions of the HuggingFace transformers library prior to 5.3.0. Attackers craft a malicious config.json file containing the _attn_implementation_internal field that references an attacker-controlled HuggingFace Hub repository. When a victim loads the model through the standard AutoModelForCausalLM.from_pretrained() API, the library downloads and executes arbitrary Python code with the victim's OS privileges. The exploit bypasses the trust_remote_code safety mechanism, executes silently, and abuses the documented usage pattern. Maintainers released version 5.3.0 to remediate the issue.

Critical Impact

Loading an untrusted model triggers silent arbitrary code execution with the user's full privileges, bypassing the trust_remote_code safeguard.

Affected Products

  • HuggingFace transformers library, all versions prior to 5.3.0
  • Applications calling AutoModelForCausalLM.from_pretrained() on untrusted models
  • Python environments consuming HuggingFace Hub repositories

Discovery Timeline

  • 2026-05-24 - CVE-2026-4372 published to NVD
  • 2026-05-26 - Last updated in NVD database

Technical Details for CVE-2026-4372

Vulnerability Analysis

The vulnerability resides in how transformers processes the _attn_implementation_internal attribute inside a model's config.json. The library treats this internal field as an authoritative pointer to a kernel implementation hosted on the HuggingFace Hub. When a user invokes AutoModelForCausalLM.from_pretrained(), the loader downloads the referenced repository and executes its Python code in-process. The execution path runs outside the protections offered by trust_remote_code, so users who explicitly leave that flag disabled still execute attacker-controlled code. The flaw is categorized under [CWE-1066], reflecting missed validation during object construction. Because configuration loading is silent and required for normal operation, victims observe no indicator of compromise during exploitation.

Root Cause

Three defects combine to enable exploitation. First, the deserializer copies arbitrary attributes from config.json into the model configuration object without filtering internal fields. Second, the kernel-resolution logic accepts a Hub repository identifier as a valid implementation reference. Third, the downloaded kernel executes in the host Python interpreter without sandboxing. Together these conditions transform configuration parsing into a code execution primitive.

Attack Vector

An attacker publishes a model repository on HuggingFace Hub containing a crafted config.json whose _attn_implementation_internal value points to a second attacker-controlled repository that hosts a Python kernel. The attacker then promotes the model through community channels, forks, or typosquatted names. When a victim loads the model with the standard from_pretrained() call, the library resolves the malicious attribute, downloads the kernel, and executes its __init__ and module-level code with the calling process's privileges. No prompt, dialog, or trust_remote_code=True confirmation is required, which is why the issue is invisible to the victim.

// No verified proof-of-concept code is published.
// Refer to the Huntr bounty report and upstream commit for technical specifics:
// https://huntr.com/bounties/1f693a6e-6836-4b8b-a0bd-ca036fba8884
// https://github.com/huggingface/transformers/commit/a7f8e7ff37d87d1a1a0c8cf607971c607741452f

Detection Methods for CVE-2026-4372

Indicators of Compromise

  • Presence of _attn_implementation_internal referencing an external Hub repository in any cached config.json under ~/.cache/huggingface/hub/.
  • Unexpected outbound HTTPS traffic to huggingface.co during model load that retrieves Python files from a repository different from the model itself.
  • Python child processes spawned by training, inference, or notebook sessions immediately after a from_pretrained() call.

Detection Strategies

  • Statically scan downloaded config.json files for the _attn_implementation_internal key before model load and reject any that point to remote repositories.
  • Audit dependency manifests for installed transformers versions and flag any release earlier than 5.3.0.
  • Apply [CWE-1066] inspired rules in code-review tooling to catch unfiltered deserialization of configuration attributes.

Monitoring Recommendations

  • Log all HuggingFace Hub downloads with repository identifiers and correlate them against the model the user intended to load.
  • Alert on Python interpreters that initiate shell, network, or filesystem activity within seconds of a transformers model load.
  • Review SaaS notebook and ML platform telemetry for new outbound destinations triggered by data science workloads.

How to Mitigate CVE-2026-4372

Immediate Actions Required

  • Upgrade transformers to version 5.3.0 or later across all training, inference, and developer environments.
  • Inventory cached models and remove any config.json containing _attn_implementation_internal until the value can be validated.
  • Restrict model sources to a vetted internal mirror or pinned repository allowlist.

Patch Information

The upstream fix is committed in HuggingFace Transformers commit a7f8e7ff and shipped in release 5.3.0. The patch filters internal configuration fields during deserialization and removes the implicit kernel download path. Additional context is available in the Huntr Bounty Report.

Workarounds

  • Run model-loading workloads inside a network-isolated container that blocks egress to the HuggingFace Hub except for an approved proxy.
  • Pre-process config.json files to strip the _attn_implementation_internal field before passing models to from_pretrained().
  • Execute untrusted model loads under a least-privilege service account that cannot access source code, credentials, or production data.
bash
# Configuration example: upgrade transformers and verify the installed version
pip install --upgrade "transformers>=5.3.0"
python -c "import transformers; print(transformers.__version__)"

# Sanity check a downloaded config.json for the offending field
grep -R "_attn_implementation_internal" ~/.cache/huggingface/hub/ || echo "clean"

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechHuggingface Transformers

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-1066
  • Technical References
  • GitHub Commit Update

  • Huntr Bounty Report
  • Related CVEs
  • CVE-2026-1839: HuggingFace Transformers RCE Vulnerability

  • CVE-2024-3568: Huggingface Transformers RCE Vulnerability

  • CVE-2024-11392: Huggingface Transformers RCE Vulnerability

  • CVE-2024-11393: Hugging Face Transformers RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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