Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2024-5569

CVE-2024-5569: jaraco/zipp Library DoS Vulnerability

CVE-2024-5569 is a denial of service flaw in jaraco/zipp library that triggers an infinite loop when processing malicious zip files. This article covers the technical details, affected versions, and mitigation steps.

Published: January 28, 2026

CVE-2024-5569 Overview

A Denial of Service (DoS) vulnerability exists in the jaraco/zipp library, affecting all versions prior to 3.19.1. The vulnerability is triggered when processing a specially crafted zip file that leads to an infinite loop. This issue also impacts the zipfile module of CPython, as features from the third-party zipp library are later merged into CPython, and the affected code is identical in both projects.

The infinite loop can be initiated through the use of functions affecting the Path module in both zipp and zipfile, such as joinpath, the overloaded division operator, and iterdir. Although the infinite loop is not resource exhaustive, it prevents the application from responding, effectively causing a denial of service condition.

Critical Impact

Applications processing untrusted zip files using the zipp or CPython zipfile modules are vulnerable to denial of service through an infinite loop condition that renders the application unresponsive.

Affected Products

  • jaraco/zipp library versions prior to 3.19.1
  • CPython zipfile module (affected code merged from zipp)
  • Applications using zipp's Path module functions

Discovery Timeline

  • 2024-07-09 - CVE CVE-2024-5569 published to NVD
  • 2025-10-15 - Last updated in NVD database

Technical Details for CVE-2024-5569

Vulnerability Analysis

This vulnerability is classified as CWE-835 (Loop with Unreachable Exit Condition), commonly known as an infinite loop vulnerability. The flaw exists in how the zipp library handles path processing within zip archives.

When a malformed zip file with specially crafted path entries is processed, the library enters an infinite loop condition. The vulnerability manifests when using Path module functions including joinpath, the overloaded division operator (/), and iterdir. While the infinite loop does not exhaust system memory or CPU resources aggressively, it effectively blocks the application thread from completing operations, rendering the application unresponsive.

The issue is particularly significant because the affected code from the zipp library was later merged into CPython's standard zipfile module, meaning the vulnerability affects both the third-party library and Python's built-in functionality.

Root Cause

The root cause stems from improper handling of malformed path entries within zip archives. The library failed to properly sanitize path names, allowing specially crafted entries to create conditions where path traversal operations never terminate. This occurs because the path resolution logic encounters circular or malformed path components that cause the iteration to loop indefinitely.

Attack Vector

The attack requires local access (AV:L) where an attacker must convince a victim application to process a maliciously crafted zip file. The attack has low complexity (AC:L) and requires no privileges (PR:N) or user interaction (UI:N) beyond the initial file processing. The impact is limited to availability (A:H), with no effect on confidentiality or integrity.

An attacker could exploit this vulnerability by:

  1. Creating a specially crafted zip file with malformed path entries
  2. Submitting the malicious zip file to an application that uses zipp or Python's zipfile module
  3. When the application processes the file using Path operations, it enters an infinite loop
python
         super().__init__(*args, **kwargs)
 
 
-class CompleteDirs(InitializedState, zipfile.ZipFile):
+class SanitizedNames:
+    """
+    ZipFile mix-in to ensure names are sanitized.
+    """
+
+    def namelist(self):
+        return list(map(self._sanitize, super().namelist()))
+
+    @staticmethod
+    def _sanitize(name):
+        r"""
+        Ensure a relative path with posix separators and no dot names.
+
+        Modeled after
+        https://github.com/python/cpython/blob/bcc1be39cb1d04ad9fc0bd1b9193d3972835a57c/Lib/zipfile/__init__.py#L1799-L1813
+        but provides consistent cross-platform behavior.
+
+        >>> san = SanitizedNames._sanitize
+        >>> san('/foo/bar')
+        'foo/bar'
+        >>> san('//foo.txt')
+        'foo.txt'
+        >>> san('foo/.././bar.txt')
+        'foo/bar.txt'
+        >>> san('foo../.bar.txt')
+        'foo../.bar.txt'

Source: GitHub Commit Details

The patch introduces a SanitizedNames mix-in class that sanitizes path names by ensuring they are relative paths with POSIX separators and no problematic dot names (. and ..). This prevents the malformed paths from causing infinite loop conditions.

Detection Methods for CVE-2024-5569

Indicators of Compromise

  • Application processes hanging indefinitely when processing zip files
  • Increased CPU usage in threads handling zip file operations without memory growth
  • Application timeouts or unresponsiveness when extracting or iterating zip archive contents
  • Error logs showing incomplete zip operations that never terminate

Detection Strategies

  • Monitor application threads for extended blocking operations during zip file processing
  • Implement application-level watchdog timers for zip processing operations
  • Review dependency manifests for zipp versions prior to 3.19.1
  • Use software composition analysis (SCA) tools to identify vulnerable library versions

Monitoring Recommendations

  • Configure application performance monitoring (APM) to alert on thread starvation conditions
  • Set up process monitoring for applications that process user-supplied zip files
  • Implement request timeout monitoring for services accepting zip file uploads
  • Enable logging for zip file processing duration to establish baselines and detect anomalies

How to Mitigate CVE-2024-5569

Immediate Actions Required

  • Upgrade jaraco/zipp library to version 3.19.1 or later immediately
  • Audit applications to identify usage of affected zipp or zipfile Path module functions
  • Implement input validation to reject potentially malformed zip files before processing
  • Consider adding timeout mechanisms around zip file processing operations

Patch Information

The vulnerability was addressed in version 3.19.1 of jaraco/zipp. The fix introduces a SanitizedNames mix-in class that sanitizes path names before processing, ensuring relative paths with POSIX separators and removing problematic dot names.

For detailed patch information, refer to the GitHub Commit Details. Additional security research details are available at the Huntr Security Bounty page.

Workarounds

  • Implement processing timeouts for zip file operations to prevent indefinite hangs
  • Validate zip file structure and path entries before processing with zipp functions
  • Isolate zip processing in separate threads or processes with resource limits
  • Restrict zip file uploads to trusted sources until the library can be upgraded
bash
# Upgrade zipp to patched version
pip install --upgrade "zipp>=3.19.1"

# Verify installed version
pip show zipp | grep Version

# Check for vulnerable versions in requirements
pip list --outdated | grep -i zipp

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechJaraco Zipp

  • SeverityMEDIUM

  • CVSS Score6.2

  • EPSS Probability0.02%

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

  • Huntr Security Bounty
  • Latest CVEs
  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal Vulnerability

  • CVE-2026-40259: SiYuan Auth Bypass Vulnerability

  • CVE-2026-40255: AdonisJS HTTP Server CSRF 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