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

CVE-2026-31899: Courtbouillon CairoSVG DOS Vulnerability

CVE-2026-31899 is a denial of service vulnerability in Courtbouillon CairoSVG caused by recursive use element amplification. This post covers the technical details, affected versions, security impact, and mitigation.

Published: March 20, 2026

CVE-2026-31899 Overview

CVE-2026-31899 is a denial of service vulnerability in CairoSVG, an SVG converter based on the Cairo 2D graphics library. The vulnerability exists in cairosvg/defs.py where recursive <use> element amplification can cause exponential CPU exhaustion from a relatively small input file. This allows attackers to craft malicious SVG files that, when processed by CairoSVG, consume excessive CPU resources and render the application unresponsive.

Critical Impact

Attackers can exploit recursive SVG <use> elements to cause CPU exhaustion denial of service, potentially disrupting services that process user-supplied SVG files with minimal input payload.

Affected Products

  • Courtbouillon CairoSVG (versions prior to the security patch)

Discovery Timeline

  • 2026-03-13 - CVE-2026-31899 published to NVD
  • 2026-03-18 - Last updated in NVD database

Technical Details for CVE-2026-31899

Vulnerability Analysis

This vulnerability is classified as CWE-674 (Uncontrolled Recursion), which occurs when the software does not properly control the amount of recursion that occurs. In CairoSVG, the use() function in cairosvg/defs.py processes SVG <use> elements without limiting the number of referenced elements that can be rendered. SVG <use> elements allow referencing and reusing other SVG elements, and when these references are nested recursively, each level of nesting can reference multiple elements, creating exponential growth in processing requirements.

An attacker can craft a malicious SVG file containing deeply nested or self-referential <use> elements that cause the parser to recursively process an exponentially increasing number of element references. This algorithmic complexity attack enables a small input file to consume disproportionate CPU resources, effectively causing a denial of service condition.

Root Cause

The root cause of this vulnerability is the absence of a limit on the number of referenced elements that can be rendered during SVG processing. The use() function in cairosvg/defs.py would recursively process <use> elements without tracking or limiting the total reference count, allowing exponential amplification through recursive element references.

Attack Vector

This vulnerability is exploitable via network-based attacks where an attacker supplies a maliciously crafted SVG file to any application or service using CairoSVG for SVG processing. Common attack scenarios include:

  • Web applications that accept SVG uploads for image conversion
  • Document processing systems that render embedded SVG content
  • API endpoints that process SVG data for thumbnail generation or format conversion

The attack requires no authentication or user interaction, making it particularly dangerous for internet-facing services.

python
# Security patch in cairosvg/defs.py - Abort when more than 100k referenced elements are rendered
 
def use(surface, node):
    """Draw the content of another SVG node."""
+    surface.reference_count += 1
+    if not node.unsafe and surface.reference_count > 100_000:
+        raise ValueError('Abort rendering: more than 100 000 referenced elements')
    surface.context.save()
    surface.context.translate(
        size(surface, node.get('x'), 'x'), size(surface, node.get('y'), 'y'))

Source: GitHub Commit Update

python
# Security patch in cairosvg/surface.py - Abort when more than 100k referenced elements are rendered
        self.cursor_d_position = [0, 0]
        self.text_path_width = 0
        self.tree_cache = {(tree.url, tree.get('id')): tree}
+        self.reference_count = 0
        if parent_surface:
            self.markers = parent_surface.markers
            self.gradients = parent_surface.gradients

Source: GitHub Commit Update

Detection Methods for CVE-2026-31899

Indicators of Compromise

  • Abnormally high CPU utilization on systems processing SVG files
  • CairoSVG processes becoming unresponsive or timing out during SVG conversion
  • Presence of SVG files containing deeply nested or recursive <use> elements
  • Error logs showing excessive recursion or memory allocation failures in CairoSVG

Detection Strategies

  • Monitor CPU usage patterns for processes invoking CairoSVG libraries
  • Implement input validation to detect SVG files with excessive <use> element nesting
  • Set up alerting for CairoSVG process timeouts or crashes
  • Deploy application-level logging to track SVG processing duration anomalies

Monitoring Recommendations

  • Configure resource monitoring for services that process SVG content
  • Implement request rate limiting for SVG upload/processing endpoints
  • Set processing timeouts for SVG conversion operations
  • Monitor for repeated failed SVG processing attempts from the same source

How to Mitigate CVE-2026-31899

Immediate Actions Required

  • Update CairoSVG to the latest patched version immediately
  • Review and audit any services that accept user-supplied SVG files
  • Implement input validation to reject SVG files with excessive complexity
  • Configure resource limits (CPU time, memory) for SVG processing operations

Patch Information

Courtbouillon has released a security patch for CairoSVG that addresses this vulnerability by implementing a reference count limit of 100,000 elements. The fix introduces a reference_count attribute on the surface object and checks this counter in the use() function, raising a ValueError when the limit is exceeded. The patch is available via commit 6dde8685ed3f19837767bce7a13a5491e3d0e0bf. For detailed information, see the GitHub Security Advisory.

Workarounds

  • Run CairoSVG in a sandboxed environment with strict resource limits
  • Implement preprocessing validation to reject SVG files with recursive <use> patterns
  • Set CPU and memory limits using containerization or process control mechanisms
  • Disable SVG processing features temporarily until the patch can be applied
bash
# Configuration example - Set resource limits for CairoSVG processes
# Using systemd service configuration
[Service]
CPUQuota=50%
MemoryLimit=512M
TimeoutSec=30

# Using Docker resource constraints
docker run --cpus="0.5" --memory="512m" your-cairosvg-service

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechCairosvg

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-674
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2023-27586: CairoSVG SSRF Vulnerability Explained
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