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

CVE-2026-43490: Linux Kernel ksmbd Buffer Overflow Flaw

CVE-2026-43490 is a buffer overflow vulnerability in the Linux kernel's ksmbd component involving improper ACE SID validation. Attackers can exploit malformed inheritable ACEs to trigger memory corruption. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: May 21, 2026

CVE-2026-43490 Overview

CVE-2026-43490 is a high-severity vulnerability in the Linux kernel's ksmbd in-kernel SMB server. The flaw resides in smb_inherit_dacl(), which fails to validate the variable-length Security Identifier (SID) inside inheritable Access Control Entries (ACEs) loaded from a parent directory's security descriptor extended attribute. A malformed ACE can advertise more subauthorities than it actually contains, causing compare_sids() to read past the ACE buffer and smb_set_ace() to advance accounting pointers beyond the allocated buffer.

Critical Impact

An authenticated remote attacker with SMB write access can trigger out-of-bounds memory access in the kernel, leading to information disclosure, denial of service, or potential memory corruption.

Affected Products

  • Linux kernel ksmbd SMB server component
  • Linux distributions shipping vulnerable ksmbd versions prior to the fix commits
  • Systems exposing SMB shares via ksmbd with DACL inheritance enabled

Discovery Timeline

  • 2026-05-15 - CVE-2026-43490 published to NVD
  • 2026-05-20 - Last updated in NVD database

Technical Details for CVE-2026-43490

Vulnerability Analysis

The vulnerability exists in the ksmbd DACL inheritance logic. When smb_inherit_dacl() walks the parent directory DACL loaded from the security descriptor xattr, it verifies only the fixed ACE header before processing each entry. The function does not confirm that the variable-length SID described by sid.num_subauth fits within the ACE boundaries.

Downstream, compare_sids() reads subauthority values based on the unchecked num_subauth counter. This results in an out-of-bounds read past the ACE buffer. Separately, smb_set_ace() clamps the destination SID copy but computes the inherited ACE size using the unchecked source SID count. The inflated size advances the temporary inherited ACE buffer pointer and the nt_size accumulator past the allocated buffer.

The patches validate the parent ACE SID count and SID length before consumption, compute the inherited ACE size from the bounded destination SID, and reject inherited DACLs when size accumulation would overflow smb_acl.size or the security descriptor allocation.

Root Cause

The root cause is missing input validation on attacker-controlled num_subauth and SID length fields parsed from a stored security descriptor xattr [CWE-125, CWE-787]. The kernel trusted bounds derived from on-disk metadata without verifying that they fit within the containing ACE structure.

Attack Vector

An authenticated SMB user who can write extended attributes or place a crafted security descriptor on a parent directory can trigger inheritance processing on child object creation. The malformed inheritable ACE then drives the out-of-bounds access during DACL propagation inside the kernel.

No verified public proof-of-concept code is available. Refer to the upstream commits for the exact validation logic added by the maintainers: Linux Kernel Commit 1aa60fe and Linux Kernel Commit 47c6e37.

Detection Methods for CVE-2026-43490

Indicators of Compromise

  • Unexpected ksmbd kernel oops, panic, or KASAN reports referencing smb_inherit_dacl, compare_sids, or smb_set_ace.
  • SMB clients writing unusual security.NTACL or related security descriptor extended attributes on shared directories.
  • Crash loops or service restarts of the ksmbd kernel thread following file or directory creation operations.

Detection Strategies

  • Enable KASAN on test kernels to catch out-of-bounds reads triggered by malformed inherited ACEs.
  • Inventory hosts running ksmbd and verify kernel build identifiers against the fixed commits.
  • Correlate SMB authentication events with subsequent kernel log anomalies to identify attacker sessions.

Monitoring Recommendations

  • Forward dmesg and /var/log/kern.log to a central log pipeline and alert on ksmbd stack traces.
  • Audit SMB share configurations to identify directories with custom DACL inheritance and limit write access.
  • Track creation of files and directories on ksmbd shares from low-privileged accounts for anomalous patterns.

How to Mitigate CVE-2026-43490

Immediate Actions Required

  • Apply the upstream kernel patches or vendor-supplied stable kernel updates that include the four referenced commits.
  • Restrict SMB share write access to trusted, authenticated users until the patched kernel is deployed.
  • Disable ksmbd on hosts that do not require an in-kernel SMB server and use a userspace alternative if available.

Patch Information

The fix is distributed across four upstream commits that add SID length validation, recompute inherited ACE sizes from the bounded destination SID, and reject DACLs that would overflow smb_acl.size. Reference commits: Linux Kernel Commit 1aa60fe, Linux Kernel Commit 47c6e37, Linux Kernel Commit 996454b, and Linux Kernel Commit c1d95c9.

Workarounds

  • Unload the ksmbd kernel module on systems where SMB serving is not required: modprobe -r ksmbd.
  • Block inbound SMB ports (TCP 445) at the network perimeter and restrict access to authenticated management networks.
  • Remove inheritable ACEs from shared directories and disable DACL inheritance where business requirements permit.
bash
# Verify ksmbd module status and disable if unused
lsmod | grep ksmbd
systemctl stop ksmbd.service
systemctl disable ksmbd.service
modprobe -r ksmbd

# Restrict SMB exposure at the host firewall
ufw deny 445/tcp

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • Technical References
  • Linux Kernel Commit 1aa60fe

  • Linux Kernel Commit 47c6e37

  • Linux Kernel Commit 996454b

  • Linux Kernel Commit c1d95c9
  • Related CVEs
  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43337: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43341: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43350: Linux Kernel Buffer Overflow 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