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

CVE-2026-31410: Linux Kernel ksmbd UUID Vulnerability

CVE-2026-31410 affects the Linux kernel ksmbd component, involving improper volume UUID handling in FS_OBJECT_ID_INFORMATION. This article covers the technical details, affected kernel versions, and mitigation steps.

Published: April 10, 2026

CVE-2026-31410 Overview

CVE-2026-31410 is a vulnerability in the Linux kernel's ksmbd (in-kernel SMB3 server) component that affects how volume identifiers are handled in FS_OBJECT_ID_INFORMATION requests. The vulnerability involves improper volume identifier management where the kernel module did not properly use the filesystem's UUID (sb->s_uuid) as the primary identifier, potentially leading to information handling issues in SMB3 file sharing operations.

Critical Impact

Improper volume identification in ksmbd could affect SMB3 file sharing integrity and potentially expose filesystem metadata to connected clients.

Affected Products

  • Linux Kernel (ksmbd module)
  • Linux systems running in-kernel SMB3 server

Discovery Timeline

  • 2026-04-06 - CVE CVE-2026-31410 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-31410

Vulnerability Analysis

This vulnerability exists in the Linux kernel's ksmbd module, which provides an in-kernel SMB3 server implementation. The issue stems from how the module handles FS_OBJECT_ID_INFORMATION requests from SMB clients. Prior to the fix, the volume identifier was not being properly populated using the filesystem's native UUID (sb->s_uuid), which could result in inconsistent or improper volume identification responses to SMB3 clients.

The patch introduces a two-tier approach for volume identification: it primarily uses sb->s_uuid (the superblock's UUID) for filesystems that provide this value, and falls back to stfs.f_fsid obtained from vfs_statfs() for filesystems that do not supply a UUID.

Root Cause

The root cause of this vulnerability is the improper handling of volume identifiers in the ksmbd module's FS_OBJECT_ID_INFORMATION implementation. The module was not leveraging the filesystem's superblock UUID (sb->s_uuid) as the primary source for volume identification, which could lead to inconsistent behavior when responding to SMB3 client queries for filesystem object information.

Attack Vector

The attack vector for this vulnerability is through the SMB3 protocol. An authenticated client connecting to a ksmbd-hosted share could send FS_OBJECT_ID_INFORMATION requests and receive improper volume identifier responses. While the direct security impact requires further analysis, improper volume identification could affect filesystem tracking, caching behavior, or metadata handling in networked environments.

The vulnerability is addressed by ensuring that the filesystem's native UUID is used as the authoritative volume identifier, with a fallback mechanism for filesystems that don't provide UUIDs.

Detection Methods for CVE-2026-31410

Indicators of Compromise

  • Unusual FS_OBJECT_ID_INFORMATION query patterns from SMB3 clients
  • Inconsistent volume identifier responses logged in ksmbd debug output
  • SMB3 clients reporting volume identification mismatches or errors

Detection Strategies

  • Monitor ksmbd logs for abnormal filesystem information request patterns
  • Review SMB3 audit logs for FS_OBJECT_ID_INFORMATION queries
  • Implement kernel module version tracking to identify unpatched ksmbd instances

Monitoring Recommendations

  • Enable ksmbd debugging to capture FS_OBJECT_ID_INFORMATION handling details
  • Monitor SMB3 connection logs for suspicious client behavior
  • Track kernel version and ksmbd module updates across Linux systems

How to Mitigate CVE-2026-31410

Immediate Actions Required

  • Update the Linux kernel to a version containing the fix commits
  • Review ksmbd configuration and consider disabling the service if not required
  • Monitor SMB3 access logs for any unusual activity

Patch Information

The vulnerability has been addressed through multiple commits to the Linux kernel stable branches. The fixes ensure proper use of sb->s_uuid for volume identification in FS_OBJECT_ID_INFORMATION responses.

Relevant patch commits are available in the kernel Git repository:

  • Kernel Git Commit 3a64125730ca
  • Kernel Git Commit 3d80ebe6d1b7
  • Kernel Git Commit c283a6ffe6d5
  • Kernel Git Commit ce00616bc1df

Workarounds

  • Disable the ksmbd kernel module if in-kernel SMB3 functionality is not required
  • Use user-space Samba implementation as an alternative to ksmbd
  • Implement network-level access controls to restrict SMB3 access to trusted clients
  • Consider isolating systems running ksmbd to dedicated network segments
bash
# Disable ksmbd module if not required
sudo modprobe -r ksmbd

# Prevent ksmbd from loading on boot
echo "blacklist ksmbd" | sudo tee /etc/modprobe.d/blacklist-ksmbd.conf

# Check current kernel version for patch status
uname -r

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.01%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Overview

  • Kernel Git Commit Overview

  • Kernel Git Commit Overview

  • Kernel Git Commit Overview
  • 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-43308: Linux Kernel BUG Error 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