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

CVE-2026-43304: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-43304 is a buffer overflow vulnerability in the Linux Kernel's libceph component that affects key decoding in process_auth_done(). This article covers the technical details, affected versions, and mitigation steps.

Published: May 18, 2026

CVE-2026-43304 Overview

CVE-2026-43304 is a vulnerability in the Linux kernel's libceph subsystem. The flaw resides in process_auth_done(), where the kernel decodes authentication key material without enforcing a maximum length. An attacker can send crafted authentication data that exceeds the fixed-size buffer used during key processing. The upstream fix introduces a new CEPH_MAX_KEY_LEN constant and enforces it during decoding. The patch also removes the prior check that only rejected zero-length keys, which was incomplete because it required excluding CEPH_CRYPTO_NONE and ignored undersized key material.

Critical Impact

A network-accessible attacker can supply oversized key material to a Ceph client, triggering memory corruption in kernel space with potential for code execution or denial of service.

Affected Products

  • Linux Kernel (libceph module) — multiple stable branches
  • Distributions shipping vulnerable kernels with Ceph client support enabled
  • Systems mounting CephFS or using RBD via the in-kernel Ceph client

Discovery Timeline

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

Technical Details for CVE-2026-43304

Vulnerability Analysis

The vulnerability sits inside process_auth_done() in the kernel's Ceph client library. When the client negotiates authentication with a Ceph monitor, it decodes server-supplied key material into a fixed-size buffer. The pre-patch code only checked whether the key was empty. It did not validate the upper bound of the key length before copying bytes into the destination buffer.

An attacker positioned to respond to the client's authentication exchange can supply key material larger than the buffer can hold. The decoding routine then writes past the buffer boundary, corrupting adjacent kernel memory. Because the attack reaches kernel context, successful exploitation can lead to privilege escalation, kernel panic, or arbitrary code execution.

The condition is classified under [NVD-CWE-noinfo], but the behavior maps to a classic missing input validation issue producing an out-of-bounds write. The fix replaces the empty-key check with a strict CEPH_MAX_KEY_LEN boundary enforced before any copy occurs.

Root Cause

The root cause is missing input validation in the Ceph authentication decode path. The kernel trusted the length field from the peer and copied key bytes into a fixed buffer without verifying that the declared size would fit. The prior sanity check only rejected zero-length keys and excluded the CEPH_CRYPTO_NONE case, leaving oversized keys unchecked.

Attack Vector

Exploitation requires the target system to initiate or maintain a Ceph client connection. An attacker who controls or impersonates a Ceph monitor — or who can perform a man-in-the-middle on unauthenticated traffic — supplies a malformed authentication reply containing an oversized key. No user interaction or local privileges are required. The vulnerability is reachable over the network wherever the Ceph client trusts the peer during the initial handshake.

No public proof-of-concept exploit code is available. Readers should consult the upstream kernel commits for the precise code-level details of the decoding flow and the fix.

Detection Methods for CVE-2026-43304

Indicators of Compromise

  • Unexpected kernel oops, panic, or BUG: messages referencing libceph, process_auth_done, or ceph_x_decrypt in dmesg and /var/log/kern.log.
  • Ceph client sessions repeatedly failing authentication against unknown or unexpected monitor endpoints.
  • Connections from Ceph clients to monitor IPs outside the documented storage cluster CIDR.

Detection Strategies

  • Inventory hosts where CONFIG_CEPH_LIB is enabled and the libceph, ceph, or rbd modules are loaded; treat these as in scope.
  • Monitor kernel ring buffer telemetry for crashes or warnings originating in the Ceph client path and correlate with network activity to TCP/6789 and TCP/3300.
  • Inspect netflow or eBPF telemetry for Ceph client traffic terminating at endpoints not on the approved monitor list.

Monitoring Recommendations

  • Forward kernel logs and crash dumps to a centralized logging or SIEM platform and alert on libceph panics.
  • Baseline expected Ceph monitor destinations and alert on deviation, particularly outbound traffic to unmanaged hosts.
  • Track kernel package versions across the fleet and flag any host still running a pre-patch build.

How to Mitigate CVE-2026-43304

Immediate Actions Required

  • Apply the kernel updates from your Linux distribution that include the CEPH_MAX_KEY_LEN fix and reboot affected hosts.
  • On systems that do not use Ceph, unload and blacklist the ceph, libceph, and rbd modules to remove the attack surface.
  • Restrict egress so Ceph clients can only reach known monitor IP addresses on TCP/6789 and TCP/3300.

Patch Information

The upstream fix is distributed across multiple stable branches. See the relevant commits: 1b275bd, 6405e8c, 8d745d3, ac431d5, c1a0f5f, d82467c, and e1dc45d. Consult your distribution's security tracker for the corresponding package release.

Workarounds

  • Disable in-kernel Ceph access on hosts that do not require it and rely on userspace clients where feasible.
  • Enforce cephx authentication and require ms_client_mode=secure and ms_cluster_mode=secure so all traffic is mutually authenticated and encrypted.
  • Use network segmentation or firewall rules to ensure Ceph traffic is confined to a trusted storage VLAN.
bash
# Block the libceph module on hosts that do not use Ceph
echo 'blacklist ceph'    | sudo tee /etc/modprobe.d/disable-ceph.conf
echo 'blacklist libceph' | sudo tee -a /etc/modprobe.d/disable-ceph.conf
echo 'blacklist rbd'     | sudo tee -a /etc/modprobe.d/disable-ceph.conf
sudo update-initramfs -u

# Verify the running kernel version after patching
uname -r

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.07%

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

  • Kernel Git Commit 6405e8c

  • Kernel Git Commit 8d745d3

  • Kernel Git Commit ac431d5

  • Kernel Git Commit c1a0f5f

  • Kernel Git Commit d82467c

  • Kernel Git Commit e1dc45d
  • Related CVEs
  • CVE-2026-43490: Linux Kernel ksmbd Buffer Overflow Flaw

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43337: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43341: Linux Kernel Buffer Overflow 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