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-2023-28484

CVE-2023-28484: Xmlsoft Libxml2 Buffer Overflow Flaw

CVE-2023-28484 is a buffer overflow vulnerability in Xmlsoft Libxml2 that causes NULL pointer dereference when parsing invalid XSD schemas. This article covers the technical details, affected versions, and mitigation.

Published: February 4, 2026

CVE-2023-28484 Overview

CVE-2023-28484 is a NULL pointer dereference vulnerability affecting libxml2 versions prior to 2.10.4. The vulnerability exists in the XML Schema Definition (XSD) parsing functionality, specifically within the xmlSchemaFixupComplexType function in xmlschemas.c. When processing certain malformed or invalid XSD schemas, the parser fails to properly validate pointers before dereferencing them, leading to a segmentation fault and application crash.

This vulnerability impacts applications that process untrusted XML schemas, potentially enabling denial of service attacks through crafted XSD input.

Critical Impact

Applications using vulnerable libxml2 versions can be crashed through malicious XSD schema input, causing denial of service. This affects a wide range of software dependent on libxml2 for XML processing.

Affected Products

  • xmlsoft libxml2 (versions before 2.10.4)
  • debian debian_linux 10.0
  • Applications and systems utilizing vulnerable libxml2 versions for XML/XSD processing

Discovery Timeline

  • 2023-04-24 - CVE-2023-28484 published to NVD
  • 2025-05-30 - Last updated in NVD database

Technical Details for CVE-2023-28484

Vulnerability Analysis

The vulnerability is classified as CWE-476 (NULL Pointer Dereference). It occurs during the parsing of invalid XSD schemas when the xmlSchemaFixupComplexType function in xmlschemas.c attempts to dereference a pointer that may be NULL. This represents a failure in input validation where the code does not adequately check pointer validity before use.

The attack requires user interaction in that a victim must process a malicious XSD schema. When triggered, the vulnerability causes the application to crash due to a segmentation fault, resulting in denial of service. While the vulnerability does not allow code execution or information disclosure, it can disrupt services that rely on XML schema validation.

Root Cause

The root cause is inadequate NULL pointer checking in the complex type fixup routine of the XML schema parser. When processing certain edge cases in malformed XSD schemas, the parser's internal state management fails to properly handle NULL values, leading to an unsafe dereference operation in the xmlSchemaFixupComplexType function.

Attack Vector

The attack vector is network-based, requiring an attacker to deliver a specially crafted XSD schema to a vulnerable application. This could occur through:

  1. Direct submission of malicious XML/XSD content to web services that perform schema validation
  2. Man-in-the-middle attacks replacing legitimate schemas with malicious ones
  3. Compromised schema repositories serving poisoned XSD files
  4. User interaction where victims open or process attacker-supplied schema files

The vulnerability triggers during schema parsing, causing the libxml2 library to crash the host application through a segmentation fault. The technical details of the vulnerability are documented in GNOME libxml2 Issue #491.

Detection Methods for CVE-2023-28484

Indicators of Compromise

  • Unexpected application crashes with segmentation fault signals during XML/XSD processing operations
  • Core dumps or crash logs showing failure in xmlSchemaFixupComplexType or related schema parsing functions
  • Increased frequency of service restarts for XML-processing applications
  • Log entries indicating malformed or invalid XSD schema input immediately preceding crashes

Detection Strategies

  • Monitor application logs for segmentation faults originating from libxml2 library functions
  • Implement crash monitoring for services that process XML schemas from untrusted sources
  • Deploy intrusion detection signatures that identify malformed XSD schema patterns
  • Audit system logs for repeated crashes in XML processing services that could indicate exploitation attempts

Monitoring Recommendations

  • Enable core dump analysis for applications using libxml2 to identify exploitation patterns
  • Implement health checks and automatic alerting for XML processing services
  • Monitor network traffic for suspicious XSD schema submissions to vulnerable endpoints
  • Track libxml2 version inventory across systems to identify vulnerable installations

How to Mitigate CVE-2023-28484

Immediate Actions Required

  • Upgrade libxml2 to version 2.10.4 or later immediately on all affected systems
  • Identify all applications and services using vulnerable libxml2 versions through software composition analysis
  • Review network exposure of XML/XSD processing endpoints and restrict access where possible
  • Implement input validation to reject malformed schemas before they reach libxml2 parsing

Patch Information

The vulnerability has been addressed in libxml2 version 2.10.4. Organizations should upgrade to this version or later to remediate the vulnerability. The official release is available at GNOME libxml2 Release v2.10.4.

Debian users should refer to the Debian LTS Security Announcement for distribution-specific patching guidance. NetApp customers should consult NetApp Advisory NTAP-20230601-0006 for affected product information.

Workarounds

  • Restrict XML schema processing to trusted sources only until patching is complete
  • Implement pre-processing validation of XSD schemas to detect and reject malformed input
  • Deploy network-level filtering to block potentially malicious schema submissions
  • Consider running XML processing in isolated sandboxed environments to limit crash impact
bash
# Verify libxml2 version on Linux systems
xml2-config --version

# Check for vulnerable packages on Debian/Ubuntu
dpkg -l | grep libxml2

# Update libxml2 on Debian-based systems
sudo apt update && sudo apt upgrade libxml2

# Update libxml2 on RHEL/CentOS systems
sudo yum update libxml2

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLibxml2

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.24%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-476
  • Technical References
  • GNOME libxml2 Release v2.10.4

  • Debian LTS Security Announcement

  • NetApp Advisory NTAP-20230601-0006

  • NetApp Advisory NTAP-20240201-0005
  • Vendor Resources
  • GNOME libxml2 Issue #491
  • Related CVEs
  • CVE-2025-6021: Xmlsoft Libxml2 Buffer Overflow Vulnerability

  • CVE-2024-34459: Xmlsoft Libxml2 Buffer Overflow Flaw

  • CVE-2025-32415: Xmlsoft Libxml2 Buffer Overflow Flaw

  • CVE-2025-32414: Xmlsoft Libxml2 Buffer Overflow Flaw
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