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

CVE-2026-43378: Linux Kernel Use-After-Free Vulnerability

CVE-2026-43378 is a use-after-free flaw in the Linux kernel SMB server's smb2_open() function that creates a memory corruption risk. This post explains its technical details, affected versions, and mitigation steps.

Published: May 18, 2026

CVE-2026-43378 Overview

CVE-2026-43378 is a use-after-free vulnerability in the Linux kernel's in-kernel SMB server (ksmbd). The flaw resides in the smb2_open() function within the smb/server subsystem. The opinfo pointer obtained via rcu_dereference(fp->f_opinfo) is dereferenced after rcu_read_unlock(), creating a use-after-free window. An attacker capable of reaching the SMB service can trigger the race and access freed memory. The Linux kernel maintainers resolved the issue across multiple stable branches via the referenced git commits.

Critical Impact

Use-after-free in ksmbdsmb2_open() may allow memory corruption or kernel-level disruption on systems exposing SMB.

Affected Products

  • Linux kernel smb/server (ksmbd) subsystem
  • Stable kernel branches referenced in the upstream fix commits
  • Systems exposing ksmbd to network clients

Discovery Timeline

  • 2026-05-08 - CVE-2026-43378 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43378

Vulnerability Analysis

The vulnerability exists in the smb2_open() handler of ksmbd, the Linux kernel SMB3 server. During SMB2 open processing, the code retrieves an opinfo (oplock info) pointer using rcu_dereference(fp->f_opinfo) inside an RCU read-side critical section. The pointer is then dereferenced after rcu_read_unlock() has been called. Once the RCU read lock is released, the underlying opinfo object may be reclaimed by a concurrent path, leaving the original pointer dangling. Subsequent dereference reads or modifies freed kernel memory, classified as use-after-free [CWE-416].

Root Cause

The defect is an RCU usage error. RCU guarantees only that a referenced object remains valid while the read-side critical section is held. By extending pointer access beyond rcu_read_unlock() without taking an explicit reference (for example via a refcount on opinfo), the code violates RCU's lifetime contract. The upstream patches restructure the access pattern so that either the pointer is consumed inside the RCU section or a stable reference is acquired before unlocking.

Attack Vector

Exploitation requires the target to run ksmbd and accept SMB2 connections from the attacker. A client issues crafted SMB2 OPEN requests, potentially in parallel with operations that release the associated opinfo, to race the unlock and free. Successful triggering can corrupt kernel memory, crash the host, or, depending on heap layout, be leveraged for further memory-safety exploitation in kernel context. Authentication requirements depend on the share configuration of the target ksmbd instance.

No public proof-of-concept is referenced for CVE-2026-43378. Technical detail is available in the upstream fix commits, including kernel.org commit 1e689a5 and kernel.org commit 54b48ae.

Detection Methods for CVE-2026-43378

Indicators of Compromise

  • Kernel oops or KASAN: use-after-free reports referencing smb2_open or ksmbd symbols in dmesg.
  • Unexpected ksmbd.mountd or kernel thread crashes correlated with active SMB sessions.
  • Repeated SMB2 CREATE/OPEN bursts from a single client preceding kernel instability.

Detection Strategies

  • Enable KASAN on test or canary kernels to surface the use-after-free condition during fuzzing or production replay.
  • Monitor kernel logs for stack traces containing smb2_open, rcu_dereference, or opinfo references.
  • Inventory hosts running ksmbd and verify their kernel build against the patched stable commits.

Monitoring Recommendations

  • Forward kernel ring buffer and journald events to a centralized log platform for crash correlation.
  • Alert on anomalous SMB2 OPEN request rates and repeated session resets against Linux SMB servers.
  • Track kernel package versions across the fleet to confirm patch deployment status.

How to Mitigate CVE-2026-43378

Immediate Actions Required

  • Upgrade affected systems to a Linux kernel release that incorporates the upstream ksmbd fix commits.
  • Restrict network exposure of ksmbd to trusted management networks until patches are applied.
  • Disable ksmbd on hosts that do not require an in-kernel SMB server and use a user-space alternative if necessary.

Patch Information

The vulnerability is resolved in the Linux stable tree by the commits referenced in the NVD entry, including 190e5f8, 1e689a5, 54b48ae, 8f5b1a7, b720c84, and e1b21e6. Apply the distribution kernel update aligned with your stable branch.

Workarounds

  • Unload the ksmbd module (modprobe -r ksmbd) on hosts where the service is not required.
  • Block inbound TCP/445 at the host firewall for untrusted networks until the kernel is updated.
  • Limit SMB share access to authenticated users and disable guest access to reduce the unauthenticated attack surface.
bash
# Verify ksmbd status and block SMB at the host firewall until patched
lsmod | grep ksmbd
sudo systemctl stop ksmbd.service 2>/dev/null
sudo modprobe -r ksmbd
sudo iptables -I INPUT -p tcp --dport 445 -j DROP

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

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

  • Kernel Git Commit Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43500: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43333: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43335: Linux Kernel Use-After-Free 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