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

CVE-2026-43413: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-43413 is a buffer overflow vulnerability in the Linux kernel's hisi_sas SCSI driver that causes NULL pointer exceptions during user_scan operations. This article covers technical details, affected versions, and mitigation.

Published: May 18, 2026

CVE-2026-43413 Overview

CVE-2026-43413 is a NULL pointer dereference vulnerability in the Linux kernel's hisi_sas SCSI driver. The flaw occurs in the user_scan() function path when scanning channels beyond the driver's supported range. After commit 37c4e72b0651 updated sas_user_scan() to iterate across multiple channels, hisi_sas — which supports only one channel — triggers a kernel oops when scanning channel 1. The dereference occurs inside sas_find_dev_by_rphy() during target allocation, resulting in a kernel crash.

Critical Impact

A local user with write access to the SCSI scan sysfs attribute can trigger a kernel NULL pointer dereference, causing a denial of service on systems using HiSilicon SAS controllers.

Affected Products

  • Linux kernel versions containing commit 37c4e72b0651 ("scsi: Fix sas_user_scan() to handle wildcard and multi-channel scans")
  • Systems using the hisi_sas_v3_hw and hisi_sas_main drivers
  • HiSilicon SAS controller deployments on ARM64 server platforms

Discovery Timeline

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

Technical Details for CVE-2026-43413

Vulnerability Analysis

The vulnerability resides in the SCSI mid-layer scan path invoked through the /sys/class/scsi_host/hostX/scan sysfs interface. When a user writes to this attribute, store_scan() calls sas_user_scan(), which then iterates from channel 0 through shost->max_channel. For the hisi_sas driver, max_channel equals 1, so the loop attempts to scan channel 1 even though the hardware supports only channel 0.

During the channel 1 scan, scsi_scan_host_selected() reaches sas_target_alloc(), which calls sas_find_dev_by_rphy(). Because no remote PHY structure exists for the unsupported channel, the lookup returns a NULL pointer that is subsequently dereferenced. The crash trace shows a level 0 translation fault at virtual address 0x00000000000008b0, characteristic of NULL pointer arithmetic.

Root Cause

The root cause is a mismatch between the generic sas_user_scan() multi-channel iteration logic introduced in commit 37c4e72b0651 and the single-channel capability of the hisi_sas driver. The generic SCSI layer does not validate whether the underlying SAS driver can service requests for channels above 0 before invoking target allocation routines that assume a valid remote PHY exists.

Attack Vector

Exploitation requires local access with privileges sufficient to write to SCSI host sysfs attributes, typically root. An attacker writes a wildcard or multi-channel scan specification to /sys/class/scsi_host/hostN/scan on a system using hisi_sas hardware. The resulting NULL pointer dereference produces a kernel oops. The vulnerability cannot be exploited remotely and does not yield code execution; the impact is limited to availability.

The vulnerability is classified as a Null Pointer Dereference [CWE-476] in the kernel driver layer. The truncated upstream commit message indicates the fix restricts the scan iteration so that hisi_sas no longer processes channels beyond its supported range. Refer to the kernel commit 21a13db8 for the corrected logic.

Detection Methods for CVE-2026-43413

Indicators of Compromise

  • Kernel oops messages referencing sas_find_dev_by_rphy+0x44/0x118 in dmesg or system logs
  • Call traces involving sas_user_scan, scsi_scan_host_selected, and sas_target_alloc followed by a NULL pointer dereference
  • Unexpected host crashes or kdump captures on ARM64 systems with hisi_sas_v3_hw loaded

Detection Strategies

  • Inventory Linux hosts running kernels that include commit 37c4e72b0651 and the hisi_sas driver to identify exposure.
  • Monitor writes to /sys/class/scsi_host/host*/scan for wildcard or multi-channel patterns issued by non-administrative workflows.
  • Correlate kernel panic events with preceding sysfs write activity to detect attempted exploitation.

Monitoring Recommendations

  • Forward kernel ring buffer messages and kdump artifacts to a centralized logging platform for retention and alerting.
  • Alert on kernel oops or panic events containing the strings sas_find_dev_by_rphy or sas_user_scan.
  • Track loaded kernel modules to flag systems where hisi_sas_main is active on vulnerable kernel versions.

How to Mitigate CVE-2026-43413

Immediate Actions Required

  • Apply the upstream kernel patches referenced by commits 21a13db8, 40119a2, 70c7842, 8ddc0c2, and beadac1 to all affected systems.
  • Restrict write access to /sys/class/scsi_host/host*/scan to trusted administrative accounts and tooling.
  • Schedule controlled reboots for HiSilicon SAS-equipped servers after patch installation to load the corrected driver.

Patch Information

The fix is distributed across multiple stable Linux kernel branches. Authoritative patches are available at the kernel commit 21a13db8, kernel commit 40119a2, kernel commit 70c7842, kernel commit 8ddc0c2, and kernel commit beadac1. Consult your Linux distribution vendor for backported builds.

Workarounds

  • Avoid issuing wildcard SCSI host rescans (for example, echo "- - -" > /sys/class/scsi_host/hostN/scan) on systems with hisi_sas hardware until patches are applied.
  • Limit shell and sysfs access on affected hosts using mandatory access control policies such as SELinux or AppArmor.
  • If patching is not immediately possible, consider unloading the hisi_sas_v3_hw module on test systems where SAS storage is not in active use.

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 40119a2

  • Kernel Git Commit 70c7842

  • Kernel Git Commit 8ddc0c2

  • Kernel Git Commit beadac1
  • 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