Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2025-71220

CVE-2025-71220: Linux Kernel Privilege Escalation Flaw

CVE-2025-71220 is a privilege escalation vulnerability in the Linux kernel's SMB server component that affects error handling in ksmbd. This article covers the technical details, affected versions, and mitigation strategies.

Published: February 20, 2026

CVE-2025-71220 Overview

CVE-2025-71220 is a vulnerability in the Linux kernel's KSMBD (Kernel SMB Server) component affecting the error handling path in the create_smb2_pipe() function. When the ksmbd_iov_pin_rsp() function fails, the code fails to properly call ksmbd_session_rpc_close(), resulting in improper resource cleanup that could lead to resource leaks or inconsistent system state.

Critical Impact

Missing error path cleanup in the Linux kernel's SMB server implementation could result in resource leaks and potential system instability when handling SMB2 pipe creation failures.

Affected Products

  • Linux Kernel (KSMBD module)
  • Linux systems with ksmbd SMB server enabled

Discovery Timeline

  • 2026-02-14 - CVE CVE-2025-71220 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2025-71220

Vulnerability Analysis

This vulnerability exists within the Linux kernel's in-kernel SMB server implementation (KSMBD). The issue is classified as a resource management error where proper cleanup procedures are not followed when an error occurs during SMB2 pipe creation. Specifically, when the create_smb2_pipe() function encounters a failure in ksmbd_iov_pin_rsp(), the code path does not properly close the RPC session by calling ksmbd_session_rpc_close().

The KSMBD module provides native SMB3 server functionality directly in the Linux kernel, enabling high-performance file sharing. The vulnerability affects the IPC (Inter-Process Communication) pipe handling mechanism used for RPC communications over SMB.

Root Cause

The root cause is an incomplete error handling path in the create_smb2_pipe() function. When ksmbd_iov_pin_rsp() returns an error, the function exits without properly cleaning up the RPC session resources that were allocated earlier in the function. This results in orphaned RPC session objects that are not properly released.

The missing ksmbd_session_rpc_close() call on the error path means that any RPC session resources opened before the ksmbd_iov_pin_rsp() failure remain allocated, potentially causing memory leaks or resource exhaustion over time.

Attack Vector

The attack vector for this vulnerability is currently unknown. However, the vulnerability is triggered when an error condition occurs in ksmbd_iov_pin_rsp() during SMB2 pipe creation. An attacker with network access to a vulnerable KSMBD server could potentially trigger this condition by:

  1. Establishing an SMB session with the target server
  2. Initiating SMB2 pipe creation requests that cause ksmbd_iov_pin_rsp() to fail
  3. Repeatedly triggering this condition to cause resource exhaustion

The practical exploitability depends on the conditions under which ksmbd_iov_pin_rsp() can fail and whether an attacker can reliably trigger those conditions.

Detection Methods for CVE-2025-71220

Indicators of Compromise

  • Unusual memory growth in kernel space associated with the KSMBD module
  • Increasing number of orphaned RPC session objects
  • System instability or performance degradation on systems running the KSMBD SMB server

Detection Strategies

  • Monitor kernel memory usage patterns for gradual increases in KSMBD-related allocations
  • Implement kernel tracing to detect repeated failures in ksmbd_iov_pin_rsp() function calls
  • Review system logs for SMB server errors or warnings related to pipe creation failures

Monitoring Recommendations

  • Enable ksmbd debug logging to capture detailed error information during SMB operations
  • Implement memory leak detection tools to identify resource accumulation in kernel space
  • Set up alerts for abnormal SMB connection patterns or repeated pipe creation failures

How to Mitigate CVE-2025-71220

Immediate Actions Required

  • Apply the latest kernel patches that include the fix for this vulnerability
  • Consider disabling KSMBD if not required for system operation
  • Monitor systems for signs of resource exhaustion until patches can be applied

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix ensures that ksmbd_session_rpc_close() is properly called when ksmbd_iov_pin_rsp() fails in the create_smb2_pipe() function. Multiple stable kernel branches have received this fix:

  • Kernel Git Commit Update 1
  • Kernel Git Commit Update 2
  • Kernel Git Commit Update 3
  • Kernel Git Commit Update 4
  • Kernel Git Commit Update 5
  • Kernel Git Commit Update 6

Workarounds

  • Disable the KSMBD kernel module if in-kernel SMB server functionality is not required: modprobe -r ksmbd
  • Use Samba userspace SMB server as an alternative if SMB services are needed
  • Implement network-level access controls to restrict SMB access to trusted clients only
  • Consider firewall rules to limit exposure of SMB ports (445/TCP) to untrusted networks
bash
# Disable ksmbd module
modprobe -r ksmbd

# Blacklist ksmbd to prevent automatic loading
echo "blacklist ksmbd" >> /etc/modprobe.d/blacklist.conf

# Verify module is not loaded
lsmod | grep ksmbd

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Update 2

  • Kernel Git Commit Update 3

  • Kernel Git Commit Update 4

  • Kernel Git Commit Update 5

  • Kernel Git Commit Update 6
  • Related CVEs
  • CVE-2026-31430: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31443: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31463: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31459: Linux Kernel Privilege Escalation Flaw
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