A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-46251

CVE-2026-46251: Linux Kernel Privilege Escalation Flaw

CVE-2026-46251 is a privilege escalation vulnerability in the Linux kernel affecting btrfs block_group_tree dirty_list handling. This article covers technical details, affected versions, impact, and mitigation.

Published: June 4, 2026

CVE-2026-46251 Overview

CVE-2026-46251 is a list corruption vulnerability in the Linux kernel btrfs filesystem. The flaw exists in the block group tree commit path when the EXTENT_TREE_V2 incompatible feature flag is enabled. The kernel unconditionally adds the block group tree to the switch_commits list before calling switch_commit_roots, even when the root is already linked via its dirty_list field. This double-linking corrupts the prev/next pointers of block_group_root->dirty_list, leading to a subsequent list_del failure and an eventual btrfs transaction abort with error -117.

Critical Impact

List corruption in the btrfs commit path causes transaction aborts, filesystem unavailability, and potential filesystem inconsistency on kernels using the EXTENT_TREE_V2 layout.

Affected Products

  • Linux kernel builds containing the btrfs block group tree commit logic
  • Linux kernel 6.18.0 (explicitly referenced in the upstream report)
  • Stable kernel branches receiving the backported fix commits

Discovery Timeline

  • 2026-06-03 - CVE-2026-46251 published to NVD
  • 2026-06-03 - Last updated in NVD database

Technical Details for CVE-2026-46251

Vulnerability Analysis

The defect resides in the btrfs transaction commit path. When EXTENT_TREE_V2 is enabled, btrfs treats the block group tree like the tree root and chunk root by adding it to the switch_commits list before calling switch_commit_roots. However, the block group tree uses normal root dirty tracking. Any transaction that performs an allocation and dirties a block group already links the block group root through its dirty_list field. The unconditional list_add_tail() on an already-linked list head overwrites the prev/next pointers and corrupts the list structure.

With CONFIG_DEBUG_LIST enabled, the corruption surfaces in __list_del_entry_valid_or_report as a warning indicating next->prev mismatch. Without debugging enabled, the corruption silently propagates. When a new block group is added later, the switch_commits and dirty_cowonly_roots lists become entangled, causing update_root to be invoked on the tree root with a key that cannot be found. The transaction is then aborted with error -117 (-ENOENT).

Root Cause

The root cause is improper list membership handling [CWE-besides general data structure misuse]. The btrfs commit logic assumes the block group tree is not already on a tracking list, but the normal dirty-root tracking path has already inserted it. The duplicate insertion via list_add_tail() corrupts adjacent list nodes.

Attack Vector

Triggering the condition requires the filesystem to be formatted with the EXTENT_TREE_V2 incompatible flag and an active transaction that allocates and dirties a block group. A local user issuing standard filesystem operations such as sync can reproduce the abort. The reported trace shows the failure occurring in switch_commit_roots invoked from btrfs_commit_transaction during a ksys_sync call. No specific exploitation primitive is described in the upstream report; the documented impact is filesystem-level denial of service through transaction abort.

No verified proof-of-concept code is published for this issue. Refer to the upstream patch commits for the exact code change that conditionally adds the block group tree to switch_commits only when it is not already on the dirty list.

Detection Methods for CVE-2026-46251

Indicators of Compromise

  • Kernel warnings from __list_del_entry_valid_or_report referencing switch_commit_roots+0x82 in the btrfs module.
  • BTRFS critical log entry: unable to find root key (1 0 0) in tree 1 followed by Transaction aborted (error -117).
  • Unexpected btrfs filesystem remounts to read-only after sync or other commit-triggering operations.

Detection Strategies

  • Monitor dmesg and the systemd journal for BTRFS critical messages and list_del corruption warnings on hosts using btrfs with EXTENT_TREE_V2.
  • Query running kernels with uname -r and audit btrfs superblock features via btrfs inspect-internal dump-super to identify filesystems with EXTENT_TREE_V2 enabled.
  • Correlate filesystem read-only transitions with prior kernel list corruption warnings to confirm the root cause.

Monitoring Recommendations

  • Forward kernel logs to a centralized log platform and alert on the strings Transaction aborted, list_del corruption, and switch_commit_roots.
  • Track btrfs filesystem health metrics, including read-only remount events and transaction abort counters.
  • Maintain an inventory of Linux hosts running kernel 6.18.x to prioritize patch validation.

How to Mitigate CVE-2026-46251

Immediate Actions Required

  • Apply the upstream btrfs fix from the kernel.org stable tree to all affected Linux builds.
  • Schedule maintenance windows to reboot hosts onto patched kernels, prioritizing systems with btrfs EXTENT_TREE_V2 filesystems.
  • Back up any btrfs volume formatted with EXTENT_TREE_V2 before further write activity to limit exposure to transaction aborts.

Patch Information

The fix is available in the Linux kernel stable tree across multiple branches. Reference commits: 201091da34c4, 3a1f4264daed, 4eb830847d84, 6e10283b5519, 80e1fda9c084, and e3d1fd084319.

Workarounds

  • Avoid creating new btrfs filesystems with the EXTENT_TREE_V2 incompatible feature until patched kernels are deployed.
  • For existing volumes, reduce allocation churn that dirties block groups during commit windows when an unpatched kernel must remain in production.
  • Enable CONFIG_DEBUG_LIST in test environments to surface list corruption early during pre-production kernel validation.

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit

  • Linux Kernel Commit
  • Related CVEs
  • CVE-2026-46268: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-46254: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-46248: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-46247: Linux Kernel Privilege Escalation Flaw
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