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

CVE-2025-7424: Xmlsoft Libxslt DOS Vulnerability

CVE-2025-7424 is a denial of service flaw in Xmlsoft Libxslt caused by type confusion in memory fields during XML transformations. This article covers the technical details, affected versions, impact, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-7424 Overview

A type confusion vulnerability has been identified in the libxslt library, a widely-used XSLT transformation engine. The flaw exists due to the same memory field, psvi (Post-Schema-Validation Infoset), being used for both stylesheet and input data during XML transformations. This dual-purpose memory usage can lead to type confusion when processing XML documents, allowing attackers to crash the application or corrupt memory. In some scenarios, this vulnerability may result in denial of service conditions or unexpected application behavior.

Critical Impact

This vulnerability enables remote attackers to cause denial of service through crafted XML documents, potentially affecting any application using libxslt for XML transformations including web servers, content management systems, and container platforms.

Affected Products

  • xmlsoft libxslt
  • Red Hat OpenShift Container Platform 4.0
  • Red Hat Enterprise Linux 6.0, 7.0, 8.0, 9.0, and 10.0

Discovery Timeline

  • July 10, 2025 - CVE-2025-7424 published to NVD
  • November 4, 2025 - Last updated in NVD database

Technical Details for CVE-2025-7424

Vulnerability Analysis

This vulnerability is classified as CWE-843 (Access of Resource Using Incompatible Type - Type Confusion). The root cause lies in how the libxslt library manages memory during XSLT transformations.

During XML processing, the psvi field serves as a generic pointer that stores post-schema-validation information. However, the libxslt library incorrectly uses this same field for both stylesheet data structures and input document data structures. When the library processes specially crafted input, it may interpret data stored in the psvi field as the wrong type, leading to type confusion.

The vulnerability can be triggered remotely by an attacker who provides malicious XML input to an application that uses libxslt for transformations. No user interaction or authentication is required to exploit this flaw. The impact is primarily on availability, as successful exploitation leads to application crashes or denial of service.

Root Cause

The vulnerability stems from improper type handling in the libxslt library's XML transformation engine. The psvi memory field was designed to hold schema validation metadata but is repurposed across different contexts within the library. When stylesheet data and input data share this field without proper type discrimination, the library may dereference pointers with incorrect type assumptions, leading to memory access violations.

Attack Vector

An attacker can exploit this vulnerability by sending specially crafted XML documents to any service or application that processes XML using the vulnerable libxslt library. The attack vector is network-based, requiring no privileges or user interaction.

The exploitation flow involves:

  1. Attacker identifies a target application using libxslt for XML/XSLT processing
  2. Attacker crafts a malicious XML document designed to trigger the type confusion in the psvi field handling
  3. The malicious document is submitted to the target through any exposed XML processing endpoint
  4. When libxslt processes the document, type confusion occurs, causing a crash or memory corruption

Due to the nature of type confusion vulnerabilities, the specific payload depends on the internal memory layout and how the application uses libxslt. Technical details are available in the Red Hat Bug Report #2379228 and the OpenWall OSS Security disclosure.

Detection Methods for CVE-2025-7424

Indicators of Compromise

  • Unexpected application crashes in processes using libxslt for XML transformation
  • Core dumps or crash logs indicating memory access violations in libxslt library functions
  • Increased memory errors or segmentation faults correlated with XML processing activities
  • Anomalous XML documents in request logs with unusual or malformed structures

Detection Strategies

  • Monitor system logs for application crashes related to libxslt or XSLT processing components
  • Implement application-level logging to capture XML parsing exceptions and transformation failures
  • Deploy web application firewalls (WAF) with rules to detect malformed or suspicious XML payloads
  • Use SentinelOne's Singularity platform to detect memory corruption attempts and abnormal process behavior

Monitoring Recommendations

  • Enable crash reporting for applications using libxslt to identify potential exploitation attempts
  • Monitor CPU and memory usage patterns for XML processing services to detect resource exhaustion
  • Configure alerting for repeated XML parsing failures from specific sources
  • Review access logs for endpoints that accept XML input for unusual patterns or high-volume requests

How to Mitigate CVE-2025-7424

Immediate Actions Required

  • Inventory all systems and applications using libxslt and prioritize patching based on exposure
  • Apply vendor-provided security patches for libxslt as soon as they become available
  • Restrict network access to XML processing endpoints where possible
  • Implement input validation to reject malformed or suspicious XML documents before processing

Patch Information

Security updates addressing this vulnerability have been released through multiple distribution channels. System administrators should consult their respective vendor advisories:

  • Red Hat CVE-2025-7424 Advisory - Official Red Hat security advisory with patch information
  • Debian LTS Security Announcement - Debian Long Term Support patch details

For Red Hat Enterprise Linux and OpenShift Container Platform users, apply the latest security updates using your system's package manager. Ensure you are subscribed to security update channels for timely notification of patches.

Workarounds

  • Limit exposure by placing XML processing services behind network segmentation or firewalls
  • Implement strict input validation to filter potentially malicious XML documents before they reach libxslt
  • Consider using alternative XML transformation libraries if immediate patching is not feasible
  • Deploy rate limiting on XML processing endpoints to reduce the impact of potential denial of service attacks
bash
# Check installed libxslt version on Red Hat-based systems
rpm -qa | grep libxslt

# Update libxslt to the latest patched version on RHEL/CentOS
sudo yum update libxslt

# On Debian/Ubuntu systems
dpkg -l | grep libxslt
sudo apt-get update && sudo apt-get upgrade libxslt1.1

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLibxslt

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.10%

  • 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-843
  • Technical References
  • Red Hat CVE-2025-7424

  • Red Hat Bug Report #2379228

  • Full Disclosure August 2025

  • Full Disclosure July 30, 2025

  • Full Disclosure July 32, 2025

  • Full Disclosure July 33, 2025

  • Full Disclosure July 35, 2025

  • Full Disclosure July 37, 2025

  • OpenWall OSS Security July 11, 2025

  • Debian LTS Announcement September 2025
  • Related CVEs
  • CVE-2025-7425: libxslt Use-After-Free Vulnerability

  • CVE-2025-24855: Libxslt Use-After-Free 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