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-2025-13837

CVE-2025-13837: Python plistlib Module DoS Vulnerability

CVE-2025-13837 is a denial of service vulnerability in Python's plistlib module that allows malicious plist files to trigger out-of-memory conditions. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-13837 Overview

CVE-2025-13837 is a Denial of Service (DoS) vulnerability in Python's plistlib module. When loading a plist file, the plistlib module reads data in a size specified by the file itself, meaning a malicious file can cause Out-of-Memory (OOM) conditions and Denial of Service issues. This vulnerability affects applications that process untrusted plist files using Python's standard library.

Critical Impact

A maliciously crafted plist file can exhaust system memory, causing application crashes and denial of service conditions on systems processing untrusted plist data.

Affected Products

  • Python CPython (multiple versions)
  • Applications using Python's plistlib module to parse untrusted plist files

Discovery Timeline

  • December 1, 2025 - CVE-2025-13837 published to NVD
  • December 2, 2025 - Last updated in NVD database

Technical Details for CVE-2025-13837

Vulnerability Analysis

This vulnerability exists in Python's plistlib module, which is used to read and write macOS plist (property list) files. The core issue is an improper input validation flaw where the module trusts the size values embedded within the plist file structure without adequate bounds checking.

When parsing a binary plist file, the plistlib module reads object sizes directly from the file header and object metadata. An attacker can craft a malicious plist file with an extremely large size value, causing Python to attempt to allocate an excessive amount of memory. This can lead to Out-of-Memory (OOM) conditions that crash the application or degrade system performance.

CVSS 4.0 Score: 2.1 (LOW)

CVSS Vector:CVSS:4.0/AV:L/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:L/SA:N/E:X/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

Attack Vector: Local

EPSS Score: 0.018% (Percentile: 3.982)

Root Cause

The root cause of CVE-2025-13837 is improper input validation in the plistlib module's binary plist parsing logic. The module reads size parameters directly from the plist file without validating them against reasonable bounds or available system resources. This allows an attacker to specify arbitrary sizes that the module will attempt to honor, leading to memory exhaustion.

The vulnerability is classified as a Resource Exhaustion denial of service, where the attacker controls the resource consumption through malicious input data.

Attack Vector

The attack requires local access to provide a malicious plist file to an application using the vulnerable plistlib module. The attack flow is as follows:

  1. An attacker crafts a malicious binary plist file with exaggerated size values in the file header or object metadata
  2. The victim application processes the malicious plist file using plistlib.load() or plistlib.loads()
  3. The plistlib module attempts to allocate memory based on the attacker-controlled size values
  4. System memory is exhausted, causing application crash or system instability

The vulnerability manifests when parsing binary plist files with manipulated size fields. The plistlib module attempts to pre-allocate buffers based on these size values without proper validation. See the GitHub issue #119342 and associated commits for detailed technical information about the vulnerable code paths.

Detection Methods for CVE-2025-13837

Indicators of Compromise

  • Sudden memory exhaustion when processing plist files
  • Application crashes with OOM errors during plist parsing operations
  • Abnormally large memory allocations by Python processes handling plist data
  • System performance degradation when parsing untrusted plist files

Detection Strategies

Organizations can detect potential exploitation of CVE-2025-13837 through the following methods:

Memory Monitoring: Monitor Python processes for unusual memory allocation patterns, especially during plist file processing. Sudden spikes in memory usage when handling external plist files may indicate exploitation attempts.

File Analysis: Implement file validation to check plist files for suspicious size values before processing. Binary plist files with size fields exceeding reasonable thresholds should be flagged for review.

Application Logging: Enable detailed logging in applications that process plist files to track memory allocation failures and OOM conditions.

Monitoring Recommendations

Deploy monitoring solutions that can track:

  • Memory allocation patterns for Python applications
  • Process crashes related to OOM conditions
  • File access patterns for plist files from untrusted sources
  • System resource utilization during plist parsing operations

SentinelOne Singularity provides comprehensive endpoint protection that can detect anomalous process behavior, including unusual memory consumption patterns that may indicate exploitation of resource exhaustion vulnerabilities like CVE-2025-13837.

How to Mitigate CVE-2025-13837

Immediate Actions Required

  • Update Python to the latest patched version
  • Implement input validation for plist files before processing
  • Set memory limits for processes that handle untrusted plist data
  • Avoid processing plist files from untrusted sources when possible

Patch Information

The Python Software Foundation has released patches to address this vulnerability. The following commits contain the fixes:

  • Commit 694922cf40aa3a28f898b5f5ee08b71b4922df70 (View on GitHub)
  • Commit 71fa8eb8233b37f16c88b6e3e583b461b205d1ba (View on GitHub)
  • Commit b64441e4852383645af5b435411a6f849dd1b4cb (View on GitHub)

For detailed information about the vulnerability and patch, see the Python Security Announcement.

Workarounds

If immediate patching is not possible, implement the following workarounds:

  1. Limit memory for Python processes: Use operating system-level controls to restrict memory allocation for processes that handle plist files.

  2. Pre-validate plist files: Implement file size checks and basic validation before passing files to plistlib.

  3. Sandbox plist processing: Run plist parsing operations in isolated environments with limited resources.

  4. Use alternative libraries: Consider using alternative plist parsing libraries with built-in size validation until patching is complete.

bash
# Example: Limit memory for Python process using ulimit
ulimit -v 1048576  # Limit virtual memory to 1GB
python your_plist_app.py

# Example: Using resource module in Python for memory limits
# Add to your application before processing plist files
import resource
resource.setrlimit(resource.RLIMIT_AS, (1024 * 1024 * 1024, 1024 * 1024 * 1024))

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechN/A

  • SeverityLOW

  • CVSS Score2.1

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:L/SA:N/E:X/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
  • AvailabilityLow
  • Technical References
  • Github

  • Github

  • Github

  • Github

  • Github

  • Mail Python
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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