A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection Platforms. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Read More
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-43405

CVE-2026-43405: Linux Kernel libceph DoS Vulnerability

CVE-2026-43405 is a denial of service vulnerability in Linux kernel's libceph component caused by improper signedness handling in ceph_monmap_decode(). This post covers the technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-43405 Overview

CVE-2026-43405 is a Linux kernel vulnerability in the libceph subsystem, specifically within the ceph_monmap_decode() function. The flaw stems from implicit signedness conversions of the blob_len and num_mon variables, which are declared as signed int but receive u32 values from ceph_decode_32_safe(). When a crafted Ceph monitor message contains a very large value, the signed interpretation causes the num_mon > CEPH_MAX_MON bounds check to be bypassed. The kernel then attempts an oversized memory allocation, returning -ENOMEM instead of rejecting the malformed input with -EINVAL.

Critical Impact

A remote attacker controlling Ceph monitor traffic can trigger excessive kernel memory allocation attempts, leading to denial of service on systems using libceph clients.

Affected Products

  • Linux kernel libceph subsystem (multiple stable branches receiving backports)
  • Systems using Ceph distributed storage clients (CephFS, RBD, RADOS)
  • Linux distributions shipping affected kernel versions

Discovery Timeline

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

Technical Details for CVE-2026-43405

Vulnerability Analysis

The vulnerability resides in ceph_monmap_decode(), which parses monitor map (monmap) messages received from Ceph monitors. The function declares blob_len and num_mon as signed int, yet assigns them values produced by ceph_decode_32_safe(), a helper that decodes unsigned 32-bit integers from the wire protocol [CWE-195: Signed to Unsigned Conversion Error].

When num_mon receives a value with the high bit set (greater than 0x7FFFFFFF), the signed interpretation produces a negative number. The validation check num_mon > CEPH_MAX_MON then evaluates to false because a negative signed integer is less than the positive CEPH_MAX_MON constant. Execution continues into the allocation path, where num_mon is implicitly converted back to unsigned for monmap->num_mon and the allocation size calculation, producing a request for several gigabytes of kernel memory.

Root Cause

The root cause is a type mismatch between the protocol decoding helpers and the local variables holding decoded values. Both blob_len and num_mon should be declared as u32 to match the unsigned semantics of ceph_decode_32_safe() and the destination field monmap->num_mon. The fix changes both variable declarations to u32, ensuring the bounds check operates on unsigned values and correctly rejects attacker-controlled large counts.

Attack Vector

Exploitation requires the attacker to deliver a crafted monitor map message to a Linux client that uses libceph. This typically requires network access to inject or substitute Ceph monitor traffic, for example through a malicious or compromised monitor endpoint. No authentication or user interaction is required once the malicious message reaches the vulnerable decode path. The result is a failed large allocation and an -ENOMEM return, consuming kernel memory pressure and producing client-side denial of service.

No verified public exploit code is available. See the upstream fix in Linux Kernel Commit 86f7060 and related stable backports for technical details.

Detection Methods for CVE-2026-43405

Indicators of Compromise

  • Kernel log entries showing failed large-order memory allocations originating from ceph_monmap_decode or libceph call paths.
  • Repeated -ENOMEM return values from Ceph client mount or connection attempts coinciding with monitor traffic.
  • Unexpected disconnections or remounts of CephFS, RBD, or RADOS clients without corresponding monitor-side faults.

Detection Strategies

  • Monitor dmesg and /var/log/kern.log for allocation failure warnings referencing libceph or ceph_monmap_decode.
  • Inspect network traffic to Ceph monitor ports (6789/tcp, 3300/tcp) for malformed monmap messages or unexpected monitor endpoints.
  • Audit kernel versions across the fleet to identify hosts running pre-patch builds with active libceph modules loaded.

Monitoring Recommendations

  • Alert on kernel out-of-memory events on hosts running Ceph clients, correlating with monitor session activity.
  • Track Ceph client connection failures and unexpected reconnect storms in storage telemetry.
  • Capture and review monitor map message sizes at the network layer to identify anomalous protocol values.

How to Mitigate CVE-2026-43405

Immediate Actions Required

  • Apply the upstream Linux kernel patches that change blob_len and num_mon to u32 in ceph_monmap_decode().
  • Update to a stable kernel release that includes the fix commits referenced in the NVD entry for CVE-2026-43405.
  • Restrict network reachability of Ceph monitor endpoints to trusted storage networks and authenticated clients.

Patch Information

The fix has been merged into multiple stable kernel branches. Relevant commits include Linux Kernel Commit 86f7060, Linux Kernel Commit 08bc617, Linux Kernel Commit 5f28066, Linux Kernel Commit 7704446, Linux Kernel Commit b268984, Linux Kernel Commit ba0a4df, and Linux Kernel Commit ee5588e. Consult your distribution's security tracker for backported package versions.

Workarounds

  • Isolate Ceph monitor traffic on dedicated storage VLANs with strict firewall rules limiting source addresses to known monitors.
  • Enable CephX authentication and verify monitor identities to reduce the risk of malicious monmap injection.
  • Unload the libceph and dependent modules (ceph, rbd) on systems that do not require Ceph connectivity until patches are deployed.
bash
# Configuration example: restrict Ceph monitor traffic and verify kernel version
uname -r
modinfo libceph | grep -E 'version|filename'

# Block untrusted sources from reaching Ceph monitor ports
iptables -A INPUT -p tcp -m multiport --dports 3300,6789 \
    -s 10.0.0.0/24 -j ACCEPT
iptables -A INPUT -p tcp -m multiport --dports 3300,6789 -j DROP

# Unload libceph on hosts that do not require Ceph clients
modprobe -r rbd ceph libceph

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.07%

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

  • Linux Kernel Commit 5f28066

  • Linux Kernel Commit 7704446

  • Linux Kernel Commit 86f7060

  • Linux Kernel Commit b268984

  • Linux Kernel Commit ba0a4df

  • Linux Kernel Commit ee5588e
  • Related CVEs
  • CVE-2026-43492: Linux Kernel MPI Integer Underflow DoS

  • CVE-2026-43491: Linux Kernel QRTR NS DoS Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

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