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
    • 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-43063

CVE-2026-43063: Linux Kernel Use-After-Free Vulnerability

CVE-2026-43063 is a use-after-free flaw in the Linux kernel's XFS filesystem that causes pointer dereference errors during recovery operations. This article covers the technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43063 Overview

CVE-2026-43063 is a Linux kernel vulnerability in the XFS filesystem's log recovery code path. The flaw resides in xfs_attri_recover_work, which calls irele on an inode pointer after xlog_recovery_iget* returns an error. Because the recovery helpers never set the @ip output parameter to a valid pointer on failure, the subsequent irele operates on a dangling pointer. The issue affects extended attribute (attri) log item recovery during XFS journal replay.

Critical Impact

Dereferencing an uninitialized inode pointer during XFS log recovery can corrupt kernel memory or trigger a kernel oops, leading to denial of service or undefined behavior on systems mounting affected XFS volumes.

Affected Products

  • Linux kernel (mainline) versions containing the XFS attri recovery code path prior to the fix
  • Stable kernel branches receiving backports referenced by commits 40082d08, 70685c29, a1a5df10, and b5c5a50c
  • Distributions shipping affected kernels with XFS as a supported filesystem

Discovery Timeline

  • 2026-05-05 - CVE-2026-43063 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43063

Vulnerability Analysis

The vulnerability is a use-of-uninitialized-pointer issue in the XFS journal recovery subsystem. During log replay, xfs_attri_recover_work invokes xlog_recovery_iget (or its variants) to obtain an in-core inode reference for an extended attribute intent item. When this helper fails, it returns a non-zero error and leaves the caller's inode pointer (@ip) untouched rather than setting it to NULL.

The original error-handling path in xfs_attri_recover_work then called xfs_irele(ip) unconditionally to release the reference. Because ip retains whatever stack-resident value it held before the failed call, the release path walks an indeterminate pointer. The fix removes the erroneous irele from the failure branch so the kernel no longer touches an uninitialized inode reference.

Root Cause

The root cause is improper error-handling contract enforcement between caller and callee. xlog_recovery_iget* documents that @ip is only valid on success, but xfs_attri_recover_work treated it as always populated. This mismatch produced a dangling pointer dereference whenever inode lookup failed during recovery, such as when the targeted inode is corrupt, unallocated, or otherwise unreadable.

Attack Vector

Triggering the bug requires the kernel to replay an XFS log containing an extended attribute intent that references an inode the recovery code cannot fetch. This typically occurs when mounting a crafted or corrupted XFS image with a dirty log. An attacker capable of supplying a filesystem image, such as through removable media or a privileged mount operation, can induce the failed iget and provoke the dangling pointer dereference.

The vulnerability was described in prose by upstream maintainers; refer to the kernel commit a1a5df10 for the fix and the related stable backports for the precise diff.

Detection Methods for CVE-2026-43063

Indicators of Compromise

  • Kernel oops or general protection fault traces with xfs_attri_recover_work or xfs_irele on the call stack
  • Mount-time failures or panics on XFS volumes with a dirty journal
  • dmesg entries showing XFS log recovery errors followed by null or invalid pointer dereferences

Detection Strategies

  • Audit installed kernel package versions across Linux fleets and compare against fixed releases referenced in the upstream commits
  • Monitor crash dumps and kdump output for stack traces involving XFS recovery functions
  • Inspect host telemetry for unexpected reboots or kernel panics correlated with mount operations on XFS filesystems

Monitoring Recommendations

  • Forward kernel ring buffer (dmesg) and journalctl -k output to a central logging platform for pattern analysis
  • Alert on repeated mount failures of XFS volumes, particularly those involving external media or untrusted images
  • Track kernel build versions through configuration management to confirm patch deployment status

How to Mitigate CVE-2026-43063

Immediate Actions Required

  • Apply the upstream Linux kernel patch or distribution-provided update that includes the XFS attri recovery fix
  • Restrict the ability of unprivileged users to mount untrusted XFS filesystem images, including via removable media policies
  • Validate XFS filesystem integrity using xfs_repair before remounting volumes that experienced unclean shutdowns

Patch Information

The fix is committed upstream and backported to stable trees. Reference the following commits: a1a5df10, 40082d08, 70685c29, and b5c5a50c. Rebuild and reboot affected hosts after installing the updated kernel package.

Workarounds

  • Avoid mounting XFS filesystems originating from untrusted sources until the patched kernel is installed
  • Use udev rules or mount policies to block automatic mounting of removable XFS volumes on multi-user systems
  • Where feasible, run xfs_repair -L on quiesced volumes to clear dirty logs before remounting on unpatched kernels
bash
# Verify running kernel and check for the fix
uname -r

# On Debian/Ubuntu, update the kernel package
sudo apt-get update && sudo apt-get install --only-upgrade linux-image-$(uname -r)

# On RHEL/Rocky/Alma, update via dnf
sudo dnf update kernel

# Reboot to load the patched kernel
sudo systemctl reboot

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43500: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43333: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43335: Linux Kernel Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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