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

CVE-2026-43273: Linux Kernel Information Disclosure Flaw

CVE-2026-43273 is an information disclosure vulnerability in the Linux kernel's Ceph filesystem that causes data inconsistencies in snapshots. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-43273 Overview

CVE-2026-43273 is a Linux kernel vulnerability in the CephFS client. The ceph_zero_partial_object() function failed to supply a snapshot context when issuing Object Storage Daemon (OSD) write operations. This omission allowed punch-hole operations on a live file to alter data already captured in a prior snapshot, breaking snapshot immutability guarantees.

The defect surfaces during operations such as fallocate -p (punch hole) on files that already exist in a CephFS snapshot. Without the correct SnapContext, the OSD treats the zeroing write as part of the head object rather than creating a clone, which corrupts the snapshot view of the file.

Critical Impact

Reading a file from a CephFS snapshot can return data that differs from the snapshot's original contents, undermining backup integrity and point-in-time recovery.

Affected Products

  • Linux kernel CephFS client (fs/ceph)
  • Distributions shipping affected stable kernels prior to the fix commits
  • Workloads mounting CephFS with snapshots enabled (.snap directories)

Discovery Timeline

  • 2026-05-06 - CVE-2026-43273 published to the National Vulnerability Database (NVD)
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43273

Vulnerability Analysis

The vulnerability resides in the CephFS kernel client function ceph_zero_partial_object(), which is invoked when userspace requests a partial-object zero through paths such as fallocate(FALLOC_FL_PUNCH_HOLE). The function constructs an OSD write request to zero a byte range but omits the file's current snapshot context (ceph_snap_context).

In Ceph, every write must carry a SnapContext so the OSD can decide whether to clone the existing object before applying the mutation. When the context is missing or incorrect, the OSD performs the write directly against the head object and never preserves the prior content for snapshots that should still reference it. The result is silent divergence between the snapshot's expected contents and what the OSD returns when the snapshot is read.

The kernel commit log includes a deterministic reproducer using vstart.sh, dd, mkdir /mnt/mycephfs/.snap/snap1, and fallocate -p. After dropping caches, md5sum of the file inside the snapshot changes, confirming snapshot data has been mutated.

Root Cause

The root cause is a missing parameter: ceph_zero_partial_object() did not pass the inode's active ceph_snap_context to the OSD request builder. Other CephFS write paths correctly attach the snapshot context, but this code path was overlooked, classifying the issue as a state-handling defect in snapshot-aware I/O.

Attack Vector

Exploitation requires a local user with write access to a CephFS mount where snapshots exist. Issuing a punch-hole fallocate against a file that has been captured in a snapshot causes the snapshot's copy of that file to be silently corrupted. The vulnerability does not yield code execution or privilege escalation; the impact is integrity loss for snapshot data and any backup or compliance workflow that relies on it.

The vulnerability manifests through standard filesystem syscalls and requires no special tooling. See the upstream fix in Linux Kernel Commit 9efa1546 and related stable backports for the precise code change.

Detection Methods for CVE-2026-43273

Indicators of Compromise

  • Checksum mismatches between a CephFS snapshot file and a known-good baseline of the same snapshot
  • fallocate or hole-punching activity against files that are also present under .snap/ directories on vulnerable kernels
  • Backup verification jobs reporting unexpected differences in files that should be immutable within a snapshot

Detection Strategies

  • Compare file hashes inside .snap/<snapname>/ against externally stored reference hashes captured at snapshot creation time
  • Audit running kernel versions across CephFS clients and flag hosts that lack the fix commits referenced in the NVD entry
  • Correlate Ceph OSD logs for write operations on objects belonging to snapshotted inodes from clients running vulnerable kernels

Monitoring Recommendations

  • Enable kernel version inventory collection on all CephFS clients and alert on hosts running pre-patch builds
  • Monitor fallocate syscall telemetry on CephFS mounts using auditd or eBPF-based observability
  • Track snapshot integrity by scheduling periodic checksum verification of files within .snap/ directories

How to Mitigate CVE-2026-43273

Immediate Actions Required

  • Apply the upstream Linux kernel patch series referenced in the NVD entry to all CephFS client hosts
  • Reboot affected systems after kernel update so the fixed ceph module is loaded
  • Validate existing snapshots against external checksums and recreate any snapshots taken on vulnerable kernels if integrity is required

Patch Information

The fix has been merged across multiple stable trees. Reference commits include Linux Kernel Commit 36673344, Linux Kernel Commit 4097e70f, Linux Kernel Commit 531a76c5, Linux Kernel Commit 5788b742, Linux Kernel Commit 69e59a87, Linux Kernel Commit 757873ab, Linux Kernel Commit 9efa1546, and Linux Kernel Commit f16bd3fa. Confirm with your distribution vendor that backports are present in the kernel package you deploy.

Workarounds

  • Avoid hole-punching operations (fallocate -p, FALLOC_FL_PUNCH_HOLE) on CephFS files that participate in snapshots until kernels are patched
  • Restrict CephFS client capabilities so untrusted users cannot issue punch-hole operations against snapshotted datasets
  • Use the userspace Ceph client (ceph-fuse) on hosts where the kernel client cannot be updated promptly, after confirming the userspace client is unaffected
bash
# Verify the running kernel includes the ceph_zero_partial_object() snapshot-context fix
uname -r

# Identify CephFS mounts on the host
mount -t ceph

# Inventory client kernel versions across a fleet (example using SSH)
for host in $(cat cephfs_clients.txt); do
  ssh "$host" 'echo $(hostname): $(uname -r)'
done

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechCeph

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Linux Kernel Commit 4097e70f

  • Linux Kernel Commit 531a76c5

  • Linux Kernel Commit 5788b742

  • Linux Kernel Commit 69e59a87

  • Linux Kernel Commit 757873ab

  • Linux Kernel Commit 9efa1546

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

  • CVE-2025-71116: Linux Kernel Libceph OOB Vulnerability

  • CVE-2024-48916: Ceph RadosGW Authentication Bypass Flaw

  • CVE-2020-1716: Ceph-ansible Auth Bypass Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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