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

CVE-2026-43408: Linux Kernel Privilege Escalation Flaw

CVE-2026-43408 is a privilege escalation vulnerability in the Linux kernel's Ceph filesystem that may allow attackers to elevate privileges. This post explains its impact, affected versions, and mitigation steps.

Published: May 18, 2026

CVE-2026-43408 Overview

CVE-2026-43408 is a kernel vulnerability in the Linux Ceph distributed filesystem client. Several callers of ceph_mdsc_build_path() pass a ceph_path_info structure that is not zero-initialized. When the build function fails, the subsequent call to ceph_mdsc_free_path_info() operates on uninitialized stack memory and triggers slab allocator corruption.

Observed crashes on Linux 6.18.12 include virt_to_cache: Object is not a Slab page! warnings, kmem_cache_free failures, and a kernel BUG at mm/slub.c:634 invalid opcode oops in __slab_free. The upstream commit message notes the bug may be exploitable for local privilege escalation.

Critical Impact

Local users on systems mounting Ceph filesystems can trigger kernel slab corruption through filesystem operations such as open(), leading to denial of service and potential privilege escalation.

Affected Products

  • Linux kernel Ceph client (fs/ceph)
  • Confirmed crash reproduction on Linux 6.18.12
  • Stable branches receiving backports per commits 43323a59, 453df1f4, 644b47f0, and 8be8911f

Discovery Timeline

  • 2026-05-08 - CVE-2026-43408 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43408

Vulnerability Analysis

The Ceph client uses ceph_mdsc_build_path() to construct a path string for the metadata server. The function takes a pointer to a ceph_path_info structure that it populates with allocated memory and length fields. On success the structure is fully initialized, but on error paths the function returns without touching the structure.

Callers consistently invoke ceph_mdsc_free_path_info() even when ceph_mdsc_build_path() fails. The free routine reads pointer and cache fields from the structure to determine what to release. When those fields contain uninitialized stack data, the kernel attempts to free arbitrary addresses through kmem_cache_free().

The crash trace shows the freed object passing through cache_from_obj, which detects a slab cache mismatch (names_cache but object is from ceph_inode_info) before the slab allocator aborts with a BUG. An attacker who controls stack contents prior to the failed call may direct the free at an address of their choosing.

Root Cause

The regression originated in commit 15f519e9f883 ("ceph: fix race condition validating r_parent before applying state"), which added ceph_path_info parameters to several call sites. Some call sites declared the structure with an initializer; others did not. The fixed callers include paths reachable from ceph_open() and do_dentry_open(), which any local user can invoke by opening a file on a mounted Ceph volume.

Attack Vector

Exploitation requires local access and the ability to perform filesystem operations against a Ceph mount. The attacker triggers an error in ceph_mdsc_build_path(), after which the caller invokes ceph_mdsc_free_path_info() against a stack-resident structure containing attacker-influenced residual values. The result is a controlled call into the slab freelist machinery, which can corrupt kernel memory state.

No public proof-of-concept is associated with this CVE. The upstream patch series adds explicit {} initializers at every affected call site, eliminating the uninitialized read.

Detection Methods for CVE-2026-43408

Indicators of Compromise

  • Kernel log entries containing virt_to_cache: Object is not a Slab page! originating from a ceph_open or path_openat call chain
  • cache_from_obj: Wrong slab cache warnings referencing names_cache and ceph_inode_info
  • kernel BUG at mm/slub.c:634 or invalid opcode oops at __slab_free+0x1a4/0x350 on hosts that mount Ceph
  • Unexpected process termination or kernel panic when user workloads open files on a Ceph filesystem

Detection Strategies

  • Collect kernel ring buffer output (dmesg, journalctl -k) from Ceph clients and alert on slab allocator warnings and BUG conditions
  • Inventory hosts running affected kernel versions with the in-tree Ceph client loaded (lsmod | grep ceph)
  • Correlate kernel oops events with the user identity and process performing filesystem operations to surface possible exploitation attempts

Monitoring Recommendations

  • Forward kernel logs from Ceph client hosts to a centralized logging or SIEM pipeline for retention and pattern matching
  • Track kernel package versions through configuration management to identify hosts still running pre-patch builds
  • Monitor for repeated ceph_open failures from non-administrative users, which may indicate probing of the error path

How to Mitigate CVE-2026-43408

Immediate Actions Required

  • Install the stable kernel update that includes commits 43323a5934b6, 453df1f45358, 644b47f0574f, or 8be8911f5908 for your branch
  • Reboot Ceph client hosts after upgrade so the patched fs/ceph module is loaded
  • Restrict shell and container access on Ceph clients to trusted users until patches are deployed

Patch Information

The fix adds zero initializers (struct ceph_path_info path_info = {};) at every call site that invokes ceph_mdsc_build_path() followed by ceph_mdsc_free_path_info(). Apply the kernel update from your distribution that backports the upstream commits referenced in the Kernel git Commit 43323a5, Kernel git Commit 453df1f4, Kernel git Commit 644b47f0, and Kernel git Commit 8be8911f.

Workarounds

  • Unmount Ceph filesystems on hosts that cannot be patched immediately and serve workloads through user-space alternatives such as libcephfs or rbd-nbd until the kernel is updated
  • Limit CAP_SYS_ADMIN-less local users from accessing Ceph mounts by restricting mount points with noexec, container policies, or namespace isolation
  • Enable kernel hardening options such as slab_nomerge and init_on_free=1 to reduce the predictability of uninitialized stack content and slab reuse
bash
# Verify kernel version and confirm the patched fs/ceph is loaded
uname -r
modinfo ceph | grep -E '^(filename|version|srcversion):'

# Restrict access to Ceph mount points pending patch deployment
mount | grep ' type ceph '
chmod 0750 /mnt/cephfs

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechCeph

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Kernel git Commit 43323a5

  • Kernel git Commit 453df1f4

  • Kernel git Commit 644b47f0

  • Kernel git Commit 8be8911f
  • Related CVEs
  • CVE-2026-23189: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43420: Linux Kernel Race Condition Vulnerability

  • CVE-2026-43273: Linux Kernel Information Disclosure Flaw

  • CVE-2024-48916: Ceph RadosGW Authentication Bypass 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