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

CVE-2026-43241: Linux Kernel Array Index Vulnerability

CVE-2026-43241 is an array-index-out-of-bounds flaw in the Linux kernel's ntb_hw_switchtec driver that can cause invalid memory access. This post explains its impact, affected versions, and mitigation steps.

Published: May 7, 2026

CVE-2026-43241 Overview

CVE-2026-43241 is an array-index-out-of-bounds vulnerability in the Linux kernel's ntb_hw_switchtec driver. The flaw resides in the Non-Transparent Bridge (NTB) hardware driver for Microsemi Switchtec PCIe switches. The number of Memory Window (MW) Lookup Tables (LUTs) depends on the NTB configuration and can be set up to MAX_MWS. Without proper bounds enforcement, the driver could index past the end of the mw_sizes array. The upstream patch adds validation to reject invalid indices and prints a message to the user when the configuration is not valid.

Critical Impact

An invalid NTB configuration could trigger out-of-bounds memory access in kernel space, potentially leading to memory corruption or kernel instability.

Affected Products

  • Linux kernel ntb_hw_switchtec driver
  • Systems using Microsemi Switchtec PCIe NTB hardware
  • Multiple stable Linux kernel branches (per upstream stable commits)

Discovery Timeline

  • 2026-05-06 - CVE-2026-43241 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43241

Vulnerability Analysis

The vulnerability resides in the ntb_hw_switchtec driver, which exposes Non-Transparent Bridge functionality between PCIe hosts using Microsemi Switchtec switches. Memory Windows (MWs) are mapped regions that allow one host to access another host's memory across the NTB. Each MW has an associated size stored in the mw_sizes array. The number of MW LUTs depends on the runtime NTB configuration and can reach MAX_MWS. The driver did not validate the LUT index against the actual configuration before indexing into mw_sizes. An invalid index therefore reached the array, producing an out-of-bounds access in kernel memory.

Root Cause

The root cause is missing bounds validation in code paths that access mw_sizes using a configuration-dependent LUT index. The driver assumed the index would always fall within the valid range. When the NTB configuration produced an index beyond the configured number of MW LUTs, the access read or referenced memory adjacent to the array.

Attack Vector

The vulnerability is reachable through configurations that produce an invalid MW LUT index for the ntb_hw_switchtec driver. Triggering the condition requires the affected hardware and an invalid or unexpected NTB configuration on a system using Switchtec PCIe NTB. The patch replaces unchecked indexing with a guard that rejects invalid access and emits a diagnostic message indicating the configuration is not valid. Refer to the upstream fixes such as Linux Kernel Commit 0e93042 and Linux Kernel Commit 47ce292 for the implementation details.

Detection Methods for CVE-2026-43241

Indicators of Compromise

  • Kernel log messages from the ntb_hw_switchtec driver indicating an invalid NTB configuration after patching.
  • KASAN or slab-out-of-bounds reports referencing mw_sizes or functions in ntb_hw_switchtec.c on unpatched kernels.
  • Unexpected kernel oops or panic traces originating from Switchtec NTB code paths.

Detection Strategies

  • Inventory hosts running kernels with ntb_hw_switchtec loaded using lsmod | grep switchtec and correlate with kernel version data.
  • Compare running kernel build identifiers against the fixed commits listed in the CVE references to identify unpatched systems.
  • Enable KASAN in test environments to surface out-of-bounds accesses during NTB configuration validation.

Monitoring Recommendations

  • Forward dmesg and /var/log/kern.log to a central log platform and alert on warnings from the switchtec and ntb subsystems.
  • Track kernel package versions across the fleet and flag deviations from approved patched builds.
  • Monitor systems with PCIe NTB hardware more closely, since exposure is limited to that hardware class.

How to Mitigate CVE-2026-43241

Immediate Actions Required

  • Update affected Linux systems to a kernel build that includes the upstream fix for the ntb_hw_switchtec out-of-bounds access.
  • Identify hosts using Microsemi Switchtec PCIe NTB hardware and prioritize those for patching.
  • Validate NTB configuration parameters against the documented number of MW LUTs supported by the deployed hardware.

Patch Information

The fix has been merged across multiple stable kernel branches. Reference commits include Linux Kernel Commit 0e93042, Linux Kernel Commit 2346856, Linux Kernel Commit 348e1ac, Linux Kernel Commit 47ce292, Linux Kernel Commit 740945d, Linux Kernel Commit 85c9daa, Linux Kernel Commit c8ba7ad, and Linux Kernel Commit ee02c4f. Apply the corresponding distribution kernel updates as they become available.

Workarounds

  • If patching is not immediately possible and the hardware is not required, unload the module with modprobe -r ntb_hw_switchtec to remove the vulnerable code path.
  • Restrict configuration of NTB MW LUT counts to values within the documented hardware limits.
  • Restrict local administrative access to systems with Switchtec NTB hardware until the kernel is updated.
bash
# Configuration example: verify kernel version and module status
uname -r
lsmod | grep ntb_hw_switchtec
# If unused, remove the vulnerable module until patched
sudo modprobe -r ntb_hw_switchtec

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

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Linux Kernel Commit 0e93042

  • Linux Kernel Commit 2346856

  • Linux Kernel Commit 348e1ac

  • Linux Kernel Commit 47ce292

  • Linux Kernel Commit 740945d

  • Linux Kernel Commit 85c9daa

  • Linux Kernel Commit c8ba7ad

  • Linux Kernel Commit ee02c4f
  • Related CVEs
  • CVE-2026-31744: Linux Kernel NULL Pointer Vulnerability

  • CVE-2026-31746: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31752: Linux Kernel ND Option Vulnerability

  • CVE-2026-31738: Linux Kernel VXLAN Option Validation 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