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
    • 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-2022-40897

CVE-2022-40897: Python Setuptools ReDoS Vulnerability

CVE-2022-40897 is a Regular Expression Denial of Service (ReDoS) flaw in Python Setuptools that allows attackers to cause denial of service through crafted HTML. This article covers technical details, affected versions, and mitigation.

Published: February 25, 2026

CVE-2022-40897 Overview

CVE-2022-40897 is a Regular Expression Denial of Service (ReDoS) vulnerability affecting Python Packaging Authority (PyPA) setuptools before version 65.5.1. The vulnerability allows remote attackers to cause a denial of service via crafted HTML content in a malicious package or custom PackageIndex page. The vulnerable code resides in package_index.py, where an inefficient regular expression pattern can be exploited to cause catastrophic backtracking.

Critical Impact

Remote attackers can exhaust server CPU resources by supplying specially crafted HTML content that triggers exponential regex backtracking, leading to denial of service conditions in Python package management operations.

Affected Products

  • Python setuptools versions prior to 65.5.1
  • Systems using setuptools for package management and installation
  • CI/CD pipelines and build systems utilizing vulnerable setuptools versions

Discovery Timeline

  • 2022-12-23 - CVE CVE-2022-40897 published to NVD
  • 2025-11-04 - Last updated in NVD database

Technical Details for CVE-2022-40897

Vulnerability Analysis

This vulnerability is classified under CWE-1333 (Inefficient Regular Expression Complexity). The flaw exists in the package_index.py module where a regular expression used to parse HTML content containing rel attributes allows for unlimited whitespace matching. When processing malicious input with excessive whitespace characters, the regex engine enters a state of catastrophic backtracking, consuming significant CPU cycles.

The vulnerable regex pattern <([^>]*\srel\s*=\s*['\"]?([^'\">]+)[^>]*)> permits unbounded whitespace (\s*) around the equals sign in HTML rel attribute parsing. An attacker can craft input that forces the regex engine to explore an exponentially growing number of matching paths before failing to match, effectively freezing the process.

Root Cause

The root cause is an inefficient regular expression pattern in the HTML parsing logic of setuptools' package index functionality. The pattern uses unbounded quantifiers (\s*) for whitespace matching, which creates the potential for exponential time complexity when processing adversarial input. The regex engine's backtracking behavior attempts numerous unsuccessful match combinations before determining no valid match exists.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Creating a malicious Python package with crafted HTML content containing excessive whitespace
  2. Hosting a custom PackageIndex page with specially crafted HTML that triggers the vulnerable regex
  3. When a victim's setuptools processes this content (e.g., during pip install), the ReDoS condition is triggered

The following patch from the official repository demonstrates the fix:

python
     return wrapper
 
 
-REL = re.compile(r"""<([^>]*\srel\s*=\s*['\"]?([^'">]+)[^>]*)>""", re.I)
+REL = re.compile(r"""<([^>]*\srel\s{0,10}=\s{0,10}['\"]?([^'" >]+)[^>]*)>""", re.I)
 """
 Regex for an HTML tag with 'rel="val"' attributes.
 """

Source: GitHub Commit Reference

The patch limits whitespace matching to a maximum of 10 characters (\s{0,10}) instead of unlimited (\s*), preventing the exponential backtracking condition.

Detection Methods for CVE-2022-40897

Indicators of Compromise

  • Abnormally high CPU usage during package installation or indexing operations
  • Process hangs or timeouts when setuptools processes external package metadata
  • Unusual network traffic to untrusted package index servers
  • Build pipeline failures or timeouts during dependency resolution

Detection Strategies

  • Monitor for CPU spikes correlated with Python package management processes (pip, easy_install, or custom scripts using setuptools)
  • Implement Software Composition Analysis (SCA) to detect vulnerable setuptools versions in your codebase
  • Use dependency scanning tools to identify packages with setuptools versions below 65.5.1
  • Review CI/CD logs for unexpected delays during package installation steps

Monitoring Recommendations

  • Enable process monitoring for Python-related processes to detect abnormal resource consumption
  • Implement timeout mechanisms for package installation operations in automated pipelines
  • Use internal package mirrors or caching proxies to control and scan incoming package metadata
  • Configure alerting for processes exceeding normal CPU thresholds during build operations

How to Mitigate CVE-2022-40897

Immediate Actions Required

  • Upgrade setuptools to version 65.5.1 or later immediately using pip install --upgrade setuptools>=65.5.1
  • Audit all Python environments (virtual environments, containers, CI/CD runners) for vulnerable versions
  • Update base container images and system packages that include setuptools
  • Review and pin setuptools versions in requirements.txt, setup.py, and pyproject.toml files

Patch Information

The vulnerability is fixed in setuptools version 65.5.1. The patch commit (43a9c9bfa6aa626ec2a22540bea28d2ca77964be) modifies the REL regex pattern in setuptools/package_index.py to limit whitespace matching to a maximum of 10 characters. This change prevents the catastrophic backtracking condition while maintaining normal parsing functionality. The fix is available via PyPI and can be installed using standard package managers. See the GitHub Version Comparison for full details.

Workarounds

  • Use trusted internal package repositories or mirrors rather than public PyPI during the upgrade process
  • Implement network-level filtering to restrict access to unknown package index servers
  • Apply timeouts to package installation operations to limit the impact of potential DoS
  • For systems that cannot be immediately upgraded, consider isolating package management operations in resource-limited containers
bash
# Configuration example
# Upgrade setuptools to patched version
pip install --upgrade "setuptools>=65.5.1"

# Verify installed version
pip show setuptools | grep Version

# Pin version in requirements.txt
echo "setuptools>=65.5.1" >> requirements.txt

# Update all virtual environments
find /path/to/projects -name "requirements.txt" -exec grep -l setuptools {} \; | xargs -I {} dirname {} | xargs -I {} sh -c 'cd {} && pip install --upgrade "setuptools>=65.5.1"'

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechSetuptools

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.52%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-1333
  • Technical References
  • GitHub Source Code File

  • GitHub Version Comparison

  • Fedora Package Announcement

  • Fedora Package Announcement

  • PyUp CVE-2022-40897 Vulnerability

  • NetApp Security Advisory

  • NetApp Security Advisory

  • Debian LTS Announcement
  • Vendor Resources
  • GitHub Commit Reference

  • PyUp Vulnerability Discovery
  • Related CVEs
  • CVE-2024-6345: pypa/setuptools RCE Vulnerability
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