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

CVE-2026-43308: Linux Kernel BUG Error Vulnerability

CVE-2026-43308 is a BUG error handling flaw in the Linux Kernel btrfs filesystem that affects delayed reference processing. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 18, 2026

CVE-2026-43308 Overview

CVE-2026-43308 affects the Linux kernel's btrfs filesystem implementation. The vulnerability resides in the run_one_delayed_ref() function, which invokes BUG() when it encounters an unexpected delayed reference type. Triggering this code path crashes the kernel instead of returning a recoverable error to the caller. The upstream fix replaces the BUG() call with an error return and a logged error message. The issue requires local access with low privileges and produces a high availability impact through kernel panic.

Critical Impact

A local authenticated user can trigger a kernel BUG() in the btrfs delayed reference handler, causing a system crash and denial of service on affected Linux hosts.

Affected Products

  • Linux kernel (btrfs filesystem subsystem)
  • Distributions shipping vulnerable mainline and stable kernel versions
  • Systems mounting btrfs volumes accessible to local users

Discovery Timeline

  • 2026-05-08 - CVE-2026-43308 published to NVD
  • 2026-05-15 - Last updated in NVD database

Technical Details for CVE-2026-43308

Vulnerability Analysis

The btrfs filesystem maintains delayed references that are processed by run_one_delayed_ref() during transaction commits and reference counting operations. The function previously invoked BUG() when the delayed reference type did not match an expected value. BUG() triggers an immediate kernel panic on configurations where panic_on_oops is enabled, and otherwise produces an oops that leaves the kernel in an unrecoverable state for that task.

The upstream patches at commits 5549743e11c06da23cfa7712a994b9f1e69064c6 and c7d1d4ff56744074e005771aff193b927392d51f convert the unconditional BUG() into an error return paired with an error log message. The caller chain in btrfs transaction handling can then propagate the failure rather than halting the kernel.

This is a kernel availability defect [NVD-CWE-noinfo] rather than a memory corruption or privilege escalation flaw. Confidentiality and integrity are not impacted under the published CVSS vector.

Root Cause

The root cause is defensive use of BUG() for an unexpected runtime condition that is reachable from filesystem state. Any code path that produces a delayed reference structure with an unrecognized type reaches the BUG() site and crashes the kernel instead of failing gracefully.

Attack Vector

The attack vector is local. A user able to influence btrfs metadata or operate on a crafted btrfs image, for example through mounting or filesystem operations on a controlled volume, can drive the delayed reference handler into the unexpected type path. Successful exploitation produces a kernel crash and terminates all workloads on the affected host.

No public exploit code or proof-of-concept is listed for CVE-2026-43308, and CISA has not added it to the Known Exploited Vulnerabilities catalog.

Detection Methods for CVE-2026-43308

Indicators of Compromise

  • Kernel panic or oops messages referencing run_one_delayed_ref in dmesg or /var/log/kern.log
  • Unexpected reboots on hosts mounting btrfs volumes from untrusted sources
  • Crash dumps showing btrfs transaction commit paths on the panicking CPU

Detection Strategies

  • Compare running kernel version against vendor advisories that reference commits 5549743e11c06da23cfa7712a994b9f1e69064c6 and c7d1d4ff56744074e005771aff193b927392d51f.
  • Inventory hosts that mount btrfs filesystems, particularly those exposing mount or loop device operations to non-root users.
  • Audit recent kernel crash artifacts under /var/crash for stack traces involving btrfs delayed reference processing.

Monitoring Recommendations

  • Forward kern.log and journald kernel facility events to a central log store and alert on BUG: or Oops: entries containing btrfs.
  • Monitor uptime regressions and unscheduled reboots on Linux fleet members running btrfs root or data volumes.
  • Track btrfs mount events involving removable media or user-supplied images.

How to Mitigate CVE-2026-43308

Immediate Actions Required

  • Apply the stable kernel update containing commits 5549743e11c06da23cfa7712a994b9f1e69064c6 and c7d1d4ff56744074e005771aff193b927392d51f from your distribution.
  • Restrict mounting of btrfs filesystems from untrusted sources to administrators only.
  • Disable automatic mounting of removable media on multi-user Linux systems where btrfs is supported.

Patch Information

The fix is published in the upstream Linux stable tree. Reference the Linux stable commit 5549743e and the Linux stable commit c7d1d4ff for the exact source changes. Distribution vendors will ship the corrected behavior in their next kernel security update; install vendor-provided kernel packages and reboot affected hosts.

Workarounds

  • Avoid mounting btrfs images from untrusted users until the patched kernel is deployed.
  • Use mount option restrictions and udev rules to block non-administrative users from invoking mount on btrfs volumes.
  • Where btrfs is not required, prefer ext4 or xfs for workloads that accept user-supplied disk images.
bash
# Verify running kernel and check for the fixed commits in your distribution changelog
uname -r
rpm -q --changelog kernel | grep -E '5549743e|c7d1d4ff'   # RHEL/Fedora
apt changelog linux-image-$(uname -r) | grep -E '5549743e|c7d1d4ff'  # Debian/Ubuntu

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Git Commit Log

  • Kernel Git Commit Log
  • Related CVEs
  • CVE-2026-43343: Linux Kernel USB Gadget Vulnerability

  • CVE-2026-43307: Linux Kernel FIFO Read Overflow Vulnerability

  • CVE-2026-43352: Linux Kernel DMA Ring Abort Vulnerability

  • CVE-2026-43348: Linux Kernel Memory Mapping 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