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-0990

CVE-2026-0990: libxml2 Denial of Service Vulnerability

CVE-2026-0990 is a denial of service flaw in libxml2 caused by uncontrolled recursion in XML catalog processing. Attackers can crash applications through specially crafted catalogs. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: January 23, 2026

CVE-2026-0990 Overview

A flaw was found in libxml2, an XML parsing library. This uncontrolled recursion vulnerability occurs in the xmlCatalogXMLResolveURI function when an XML catalog contains a delegate URI entry that references itself. A remote attacker could exploit this configuration-dependent issue by providing a specially crafted XML catalog, leading to infinite recursion and call stack exhaustion. This ultimately results in a segmentation fault, causing a Denial of Service (DoS) by crashing affected applications.

Critical Impact

Remote attackers can crash applications using libxml2 by providing maliciously crafted XML catalogs that trigger infinite recursion in the URI resolution process.

Affected Products

  • libxml2 XML parsing library (affected versions to be confirmed by vendor)
  • Applications and systems utilizing libxml2 for XML processing
  • Linux distributions shipping vulnerable libxml2 packages

Discovery Timeline

  • 2026-01-15 - CVE-2026-0990 published to NVD
  • 2026-01-16 - Last updated in NVD database

Technical Details for CVE-2026-0990

Vulnerability Analysis

This vulnerability is classified as CWE-674 (Uncontrolled Recursion), a resource exhaustion flaw that occurs when software does not properly control the depth of recursion. In the case of CVE-2026-0990, the xmlCatalogXMLResolveURI function in libxml2 fails to detect and prevent circular references within XML catalog delegate URI entries.

When an XML catalog contains a delegate URI entry that points back to itself, the function enters an infinite recursive loop as it continuously attempts to resolve the self-referential URI. This unchecked recursion rapidly exhausts the call stack, ultimately triggering a segmentation fault and crashing the application.

The attack requires a network-accessible vector and depends on specific configuration conditions—namely, the presence of a vulnerable XML catalog configuration. While exploitation complexity is elevated due to these prerequisites, successful attacks can completely disable XML processing capabilities in affected applications.

Root Cause

The root cause lies in insufficient validation within the xmlCatalogXMLResolveURI function. The function does not implement proper cycle detection when processing delegate URI entries in XML catalogs. When encountering a delegate URI that creates a circular reference, the function recursively calls itself without any mechanism to track visited URIs or limit recursion depth, leading to unbounded stack growth.

Attack Vector

An attacker can exploit this vulnerability by crafting a malicious XML catalog file with a self-referential delegate URI entry. When libxml2 processes this catalog and attempts to resolve the cyclic URI reference, the xmlCatalogXMLResolveURI function enters infinite recursion.

The attack scenario involves:

  1. Attacker creates an XML catalog containing a delegate URI entry pointing to itself
  2. The malicious catalog is introduced to a system using libxml2 for XML processing
  3. When URI resolution is triggered, the function recursively attempts to resolve the circular reference
  4. The call stack grows unbounded until memory is exhausted
  5. A segmentation fault occurs, crashing the application

For technical details on the vulnerability mechanism, refer to the Red Hat CVE-2026-0990 Advisory and Red Hat Bug Report #2429959.

Detection Methods for CVE-2026-0990

Indicators of Compromise

  • Application crashes with segmentation fault during XML catalog resolution operations
  • Sudden stack memory exhaustion in processes utilizing libxml2
  • Unexpected termination of services that process XML data with catalog support enabled
  • Core dumps showing deep recursion in xmlCatalogXMLResolveURI call stack

Detection Strategies

  • Monitor for segmentation faults in applications using libxml2, particularly those processing XML catalogs
  • Implement application crash monitoring with stack trace analysis to identify recursion patterns in XML parsing functions
  • Audit XML catalog files for delegate URI entries containing circular or self-referential paths
  • Use static analysis tools to scan XML catalogs for potential malicious configurations

Monitoring Recommendations

  • Configure centralized logging to capture application crashes with detailed stack traces
  • Implement resource usage alerts for abnormal stack memory consumption in XML processing services
  • Deploy file integrity monitoring on XML catalog directories to detect unauthorized modifications
  • Enable process monitoring to track abnormal termination patterns in libxml2-dependent applications

How to Mitigate CVE-2026-0990

Immediate Actions Required

  • Update libxml2 to the latest patched version when available from your distribution vendor
  • Review and audit XML catalog configurations for circular delegate URI references
  • Consider disabling XML catalog support in applications where it is not required
  • Implement input validation to reject XML catalogs from untrusted sources

Patch Information

Consult the Red Hat CVE-2026-0990 Advisory for the latest patch information and affected package versions. Monitor your Linux distribution's security advisories for updated libxml2 packages addressing this vulnerability.

Workarounds

  • Disable XML catalog resolution functionality if not required by your application
  • Implement strict input validation and sanitization for XML catalog files before processing
  • Configure resource limits (e.g., ulimit -s) to prevent complete system resource exhaustion from stack overflow
  • Use application sandboxing or containerization to isolate the impact of potential crashes
bash
# Configuration example - Limit stack size to mitigate impact
# Add to application startup scripts
ulimit -s 8192

# Disable XML catalog processing via environment variable
export XML_CATALOG_FILES=""

# For applications supporting it, disable catalog processing
export LIBXML_NO_CATALOG=1

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLibxml2

  • SeverityMEDIUM

  • CVSS Score5.9

  • EPSS Probability0.18%

  • 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-674
  • Technical References
  • Red Hat CVE-2026-0990 Advisory

  • Red Hat Bug Report #2429959
  • Related CVEs
  • CVE-2026-1757: xmllint libxml2 DoS Vulnerability

  • CVE-2026-0989: libxml2 RelaxNG Parser DoS Vulnerability

  • CVE-2026-0992: libxml2 Library DoS Vulnerability

  • CVE-2020-7595: Xmlsoft Libxml2 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