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

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

CVE-2026-43163 is a use-after-free flaw in the Linux kernel's md/bitmap component that causes a General Protection Fault during array resize. This article covers the technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43163 Overview

CVE-2026-43163 is a use-after-free race condition in the Linux kernel's md/bitmap subsystem. The flaw triggers a General Protection Fault (GPF) in write_page() during MD array resize operations. The race occurs between bitmap_daemon_work() and __bitmap_resize(), where the daemon iterates over bitmap->storage.filemap without locking while the resize path frees that storage via md_bitmap_file_unmap(). Because quiesce() does not stop the md thread, concurrent access to freed pages becomes possible. The upstream fix holds mddev->bitmap_info.mutex during the bitmap update to serialize access. The vulnerability impacts kernel stability and integrity for systems using MD software RAID with bitmap support.

Critical Impact

Concurrent execution of the bitmap daemon and array resize paths leads to a kernel use-after-free, causing a General Protection Fault and a system crash on affected MD RAID configurations.

Affected Products

  • Linux kernel md_mod driver (MD software RAID with bitmap support)
  • Multiple stable kernel branches receiving backports across the eight referenced commits
  • Distributions shipping unpatched Linux kernels with the affected MD bitmap code

Discovery Timeline

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

Technical Details for CVE-2026-43163

Vulnerability Analysis

The vulnerability is a kernel-mode use-after-free triggered by a race between two MD bitmap code paths. The bitmap daemon thread calls bitmap_daemon_work(), which walks bitmap->storage.filemap to flush dirty bitmap pages. In parallel, an administrator-initiated array resize calls __bitmap_resize(), which invokes md_bitmap_file_unmap() to free the previous filemap storage before installing a new one.

The daemon takes no lock that protects against this teardown. As a result, it can dereference page pointers that the resize path has already freed. The faulting instruction is reported at RIP: 0010:write_page+0x22b/0x3c0 [md_mod], indicating the fault occurs while the daemon is writing a stale page reference.

The expectation that quiesce() would prevent this race does not hold, because quiesce() does not stop the md thread that runs the daemon work. The kernel therefore allows two concurrent writers and readers of the same data structure with no synchronization barrier between free and use.

Root Cause

The root cause is missing mutual exclusion on bitmap->storage.filemap. The resize path frees and replaces the filemap without holding a lock that the daemon also respects. This is a classic Race Condition leading to Use-After-Free in shared kernel state.

Attack Vector

Triggering the fault requires the ability to initiate an MD array resize concurrent with normal bitmap daemon activity. The condition is reachable on systems running MD RAID with a bitmap, typically by a privileged local operator running mdadm --grow while the array is active. The fix serializes both paths under mddev->bitmap_info.mutex.

The vulnerability manifests in the bitmap daemon and resize functions. See the upstream commits referenced below for the exact synchronization changes.

Detection Methods for CVE-2026-43163

Indicators of Compromise

  • Kernel oops or General Protection Fault with RIP pointing to write_page+0x22b/0x3c0 [md_mod] in dmesg or /var/log/kern.log.
  • System crash or hang correlated with MD array resize activity (mdadm --grow, --size, or component count changes).
  • Stack traces referencing bitmap_daemon_work, __bitmap_resize, or md_bitmap_file_unmap.

Detection Strategies

  • Monitor kernel ring buffer events for md_mod faults and correlate with concurrent administrative changes to MD arrays.
  • Inventory hosts running MD RAID with bitmap enabled and compare running kernel versions against the patched stable branches.
  • Track invocations of mdadm --grow in audit logs to identify systems exposed to the race window.

Monitoring Recommendations

  • Forward kern.log and dmesg to a centralized log platform and alert on general protection fault strings tagged with [md_mod].
  • Alert on unexpected reboots or kernel panics on storage-tier hosts using software RAID.
  • Track kernel package versions across the fleet and flag hosts that have not received the fix from the referenced stable commits.

How to Mitigate CVE-2026-43163

Immediate Actions Required

  • Identify hosts running MD software RAID with bitmap support and prioritize them for kernel updates.
  • Apply vendor kernel updates that include the upstream fix locking mddev->bitmap_info.mutex during bitmap updates.
  • Avoid running array resize operations on unpatched kernels; schedule resizes only after the patched kernel is in place.

Patch Information

The fix is upstream in the Linux kernel and has been backported across multiple stable branches. The relevant commits are Kernel Git Commit 140cc83, Kernel Git Commit 46ef85f, Kernel Git Commit 5f73c8b, Kernel Git Commit 9a6f8cd, Kernel Git Commit a437e3b, Kernel Git Commit d3af624, Kernel Git Commit d92b8fa, and Kernel Git Commit ebcacc7. Apply the kernel update from your distribution that contains the corresponding backport.

Workarounds

  • Defer MD array resize operations until the patched kernel is deployed.
  • Where feasible, stop the array or unmount filesystems before changing array geometry to remove concurrency with the bitmap daemon.
  • Restrict privileged access so that only authorized administrators can invoke mdadm resize operations on production storage.
bash
# Verify running kernel and MD bitmap status before changes
uname -r
cat /proc/mdstat
mdadm --detail /dev/md0 | grep -i bitmap

# After patching, confirm the kernel package version reflects the fix
rpm -q kernel   # RHEL/CentOS
dpkg -l | grep linux-image   # Debian/Ubuntu

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 46ef85f

  • Kernel Git Commit 5f73c8b

  • Kernel Git Commit 9a6f8cd

  • Kernel Git Commit a437e3b

  • Kernel Git Commit d3af624

  • Kernel Git Commit d92b8fa

  • Kernel Git Commit ebcacc7
  • Related CVEs
  • CVE-2026-31749: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-43126: Linux Kernel 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