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

CVE-2026-23093: Linux Kernel ksmbd DMA Mapping Vulnerability

CVE-2026-23093 is a DMA mapping flaw in the Linux kernel ksmbd smbd component that incorrectly handles dma_unmap_sg() function calls. This post explains its technical details, affected versions, impact, and mitigation steps.

Published: February 6, 2026

CVE-2026-23093 Overview

A vulnerability has been identified and resolved in the Linux kernel's ksmbd (kernel SMB server) module. The issue relates to incorrect handling of DMA (Direct Memory Access) scatter-gather list operations in the SMB Direct (SMBD) implementation. Specifically, the dma_unmap_sg() function was being called with an incorrect number of entries (nents), using the return value from dma_map_sg() instead of the original nents value that was passed to the mapping function.

Critical Impact

This memory management flaw in the kernel's SMB server implementation could lead to memory corruption, system instability, or potential denial of service conditions when handling SMB Direct connections.

Affected Products

  • Linux kernel with ksmbd module enabled
  • Systems using SMB Direct (SMBD) functionality
  • Kernel versions prior to the security patches

Discovery Timeline

  • 2026-02-04 - CVE CVE-2026-23093 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-23093

Vulnerability Analysis

This vulnerability exists in the ksmbd subsystem of the Linux kernel, which provides in-kernel SMB3 server functionality. The flaw occurs in the SMB Direct (SMBD) component, which handles RDMA (Remote Direct Memory Access) operations for high-performance SMB connections.

The DMA API in the Linux kernel requires careful management of scatter-gather lists. When dma_map_sg() is called, it may coalesce multiple scatter-gather entries, returning a potentially smaller number than was originally passed. However, when unmapping, dma_unmap_sg() must be called with the original number of entries, not the coalesced count returned by the mapping function. The ksmbd SMBD code was incorrectly using the return value from dma_map_sg() when calling dma_unmap_sg(), violating the DMA API contract.

Root Cause

The root cause is a misunderstanding of the Linux DMA API semantics. The dma_map_sg() function returns the number of DMA-mapped segments after potential coalescing, which can be less than the original nents parameter. However, dma_unmap_sg() expects the original nents value to properly unmap all memory regions. Using the wrong value leads to incomplete unmapping operations, which can result in memory leaks, corruption of DMA mappings, or kernel memory management issues.

Attack Vector

While the attack vector is not fully documented, this vulnerability could potentially be triggered by:

  1. An attacker with network access to a system running ksmbd with SMB Direct enabled
  2. Sending specially crafted SMB3 RDMA requests that exercise the vulnerable code path
  3. Repeatedly triggering the incorrect DMA unmap operations to cause memory exhaustion or corruption

The vulnerability affects the kernel's memory management subsystem, which could lead to system instability or create conditions exploitable for further attacks.

Detection Methods for CVE-2026-23093

Indicators of Compromise

  • Unexpected kernel warnings or errors related to DMA operations in system logs
  • Memory corruption indicators or kernel panics when using SMB Direct functionality
  • Abnormal memory usage patterns on systems running ksmbd with RDMA enabled

Detection Strategies

  • Monitor kernel logs for DMA-related warnings or errors from the ksmbd module
  • Use kernel debugging tools to detect DMA API violations
  • Implement system monitoring for unexpected ksmbd crashes or restarts

Monitoring Recommendations

  • Enable kernel DMA debugging (CONFIG_DMA_API_DEBUG) in development environments
  • Monitor system memory usage for anomalies when ksmbd SMBD is active
  • Review kernel logs regularly for ksmbd-related error messages

How to Mitigate CVE-2026-23093

Immediate Actions Required

  • Update to a patched Linux kernel version containing the fix
  • If immediate patching is not possible, consider disabling SMB Direct (SMBD) functionality in ksmbd
  • Monitor systems running ksmbd for any signs of exploitation or instability

Patch Information

The vulnerability has been resolved through kernel patches that correct the dma_unmap_sg() call to use the original nents value. The fixes are available in the following commits:

  • Kernel Git Commit 98e3e2b5
  • Kernel Git Commit d1943bc9

Administrators should update to kernel versions containing these patches through their distribution's package management system.

Workarounds

  • Disable ksmbd if not required, or use userspace Samba instead
  • Disable SMB Direct functionality by not loading RDMA-related kernel modules
  • Restrict network access to SMB services to trusted networks only
  • Consider using firewall rules to limit access to SMB ports (445/TCP)

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.02%

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

  • Kernel Git Commit Details
  • Related CVEs
  • CVE-2026-31421: Linux Kernel cls_fw NULL Pointer Vulnerability

  • CVE-2026-31416: Linux Kernel Netfilter Header Vulnerability

  • CVE-2026-31417: Linux Kernel X.25 Overflow Vulnerability

  • CVE-2026-23457: Linux Kernel Integer Truncation 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