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-2026-33699

CVE-2026-33699: Pypdf_project Pypdf DOS Vulnerability

CVE-2026-33699 is a denial of service flaw in Pypdf_project Pypdf that allows attackers to trigger an infinite loop via crafted PDFs. This article covers technical details, affected versions, impact, and mitigation.

Published: April 3, 2026

CVE-2026-33699 Overview

CVE-2026-33699 is a Denial of Service vulnerability affecting pypdf, a free and open-source pure-Python PDF library. This vulnerability allows an attacker to craft a malicious PDF file that triggers an infinite loop when processed by vulnerable versions of pypdf in non-strict mode, potentially causing resource exhaustion and service disruption.

Critical Impact

Attackers can cause application hangs and denial of service by supplying specially crafted PDF files to applications using pypdf in non-strict mode.

Affected Products

  • pypdf versions prior to 6.9.2
  • Applications using pypdf with non-strict parsing mode enabled
  • Python environments running vulnerable pypdf versions

Discovery Timeline

  • 2026-03-27 - CVE CVE-2026-33699 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-33699

Vulnerability Analysis

This vulnerability falls under CWE-835 (Loop with Unreachable Exit Condition), commonly known as an Infinite Loop vulnerability. The flaw exists in how pypdf handles certain PDF structures when operating in non-strict parsing mode.

When pypdf processes a specially crafted PDF document with non-strict mode enabled, the parser can enter an infinite loop condition. This occurs because the vulnerable code path lacks proper termination checks for certain malformed PDF object structures. The infinite loop causes the application to hang indefinitely, consuming CPU resources until the process is manually terminated or the system becomes unresponsive.

The vulnerability is network-exploitable since attackers can deliver malicious PDF files through various vectors including email attachments, web uploads, or API endpoints that process user-supplied PDF documents.

Root Cause

The root cause of this vulnerability is insufficient input validation in pypdf's PDF parsing logic when operating in non-strict mode. Non-strict mode is designed to be more lenient when processing malformed or non-compliant PDF files, which inadvertently allows certain malicious structures to bypass normal parsing safeguards.

The vulnerable code path fails to implement proper loop termination conditions when iterating through PDF object references, allowing an attacker to construct circular references or specially crafted structures that cause the parser to loop indefinitely.

Attack Vector

The attack vector for CVE-2026-33699 involves delivering a maliciously crafted PDF file to a target application that uses pypdf for PDF processing. The attack is particularly effective against:

  • Web applications that accept PDF uploads and process them server-side
  • Document management systems using pypdf for PDF parsing
  • API services that process PDF content from untrusted sources
  • Email attachment scanners or preview generators

For successful exploitation, the target application must read the malicious PDF using non-strict mode. When processed, the crafted PDF causes the parsing thread to enter an infinite loop, consuming CPU resources and potentially causing the entire application or service to become unresponsive.

The vulnerability can be exploited remotely without authentication if the target application accepts PDF files from untrusted sources. For more technical details, see the GitHub Security Advisory.

Detection Methods for CVE-2026-33699

Indicators of Compromise

  • Unusual CPU consumption by Python processes running pypdf
  • Application threads or processes that become unresponsive when processing PDF files
  • Timeout errors or hung requests in PDF processing workflows
  • Log entries indicating prolonged PDF parsing operations without completion

Detection Strategies

  • Monitor for abnormal CPU utilization spikes in applications that process PDF files
  • Implement request timeout monitoring to detect hung PDF processing operations
  • Review application logs for PDF parsing operations that fail to complete within expected timeframes
  • Audit dependencies to identify pypdf versions prior to 6.9.2

Monitoring Recommendations

  • Enable process-level CPU monitoring for applications using pypdf
  • Implement watchdog timers for PDF processing operations with defined timeout thresholds
  • Configure alerting for processing threads that exceed normal execution duration
  • Deploy software composition analysis tools to track pypdf versions across your environment

How to Mitigate CVE-2026-33699

Immediate Actions Required

  • Upgrade pypdf to version 6.9.2 or later immediately
  • Audit all applications and services that depend on pypdf for vulnerable versions
  • Consider temporarily disabling PDF processing from untrusted sources until patching is complete
  • Implement timeout mechanisms for PDF processing operations as an additional safeguard

Patch Information

The pypdf development team has addressed this vulnerability in version 6.9.2. Users should upgrade to this version or later to remediate the infinite loop vulnerability. The fix is available through standard Python package managers.

For detailed information about the patch, see the GitHub Pull Request and download the patched version from the GitHub Release page.

Workarounds

  • Use strict parsing mode instead of non-strict mode when processing untrusted PDF files
  • Implement processing timeouts to kill hung operations after a defined threshold
  • Validate and sanitize PDF files using alternative tools before processing with pypdf
  • Apply the patch changes manually if immediate upgrade is not possible, as recommended in the security advisory
bash
# Upgrade pypdf to patched version
pip install --upgrade pypdf>=6.9.2

# Verify installed version
pip show pypdf | grep Version

# Alternative: Install specific patched version
pip install pypdf==6.9.2

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechPypdf

  • SeverityMEDIUM

  • CVSS Score4.6

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:U/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-835
  • Technical References
  • GitHub Release Version 6.9.2
  • Vendor Resources
  • GitHub Pull Request Review

  • GitHub Security Advisory GHSA-87mj-5ggw-8qc3
  • Related CVEs
  • CVE-2026-33123: Pypdf_project Pypdf DOS Vulnerability

  • CVE-2026-31826: pypdf Library DoS Vulnerability

  • CVE-2026-28804: Pypdf_project Pypdf DOS Vulnerability

  • CVE-2026-28351: Pypdf_project Pypdf DOS 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