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

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

CVE-2026-43295 is a use-after-free vulnerability in the Linux kernel's RapidIO subsystem that can lead to memory corruption. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 18, 2026

CVE-2026-43295 Overview

CVE-2026-43295 is a medium-severity vulnerability in the Linux kernel's RapidIO subsystem. The flaw resides in the rio_scan_alloc_net() function within the kernel's RapidIO network allocation path. When idtab allocation fails, the original error handling called rio_free_net() on a network structure that had not yet been registered via rio_add_net(). This mismatch could leave a dangling pointer in mport->net, leading to memory corruption and availability impact on the local system.

The vulnerability affects local attackers with low privileges and requires no user interaction. Successful exploitation results in high availability impact, typically manifesting as a kernel crash or unstable system state.

Critical Impact

A local low-privileged user can trigger a kernel-level dangling pointer condition in the RapidIO subsystem, resulting in denial of service on affected Linux systems.

Affected Products

  • Linux Kernel (multiple stable branches as referenced by upstream commits)
  • Distributions shipping vulnerable RapidIO subsystem code
  • Systems with CONFIG_RAPIDIO enabled and RapidIO hardware or emulation present

Discovery Timeline

  • 2026-05-08 - CVE-2026-43295 published to NVD
  • 2026-05-14 - Last updated in NVD database

Technical Details for CVE-2026-43295

Vulnerability Analysis

The vulnerability exists in the RapidIO scanning code path responsible for allocating a new RapidIO network structure. The function rio_scan_alloc_net() allocates a net object and then attempts to allocate the associated idtab. When the idtab allocation fails, the cleanup logic incorrectly invoked rio_free_net(), which is intended to release networks already registered with rio_add_net().

Because the network object was not yet registered at this point, calling rio_free_net() operated on partially initialized state. This left mport->net referencing freed or invalid memory, producing a dangling pointer condition. Subsequent code paths dereferencing mport->net could trigger memory corruption or kernel oops.

The fix replaces rio_free_net() with a direct kfree(net) call appropriate for the unregistered state and explicitly sets mport->net to NULL to eliminate the dangling reference.

Root Cause

The root cause is incorrect error-path cleanup. The original code applied a teardown routine designed for fully registered network objects to an object that had only been allocated. This mismatch between object lifecycle state and the cleanup function caused improper memory release semantics and left a stale pointer in mport->net.

Attack Vector

Exploitation requires local access with low privileges. An attacker must be able to trigger the RapidIO scan path, typically by interacting with RapidIO devices or driver interfaces that invoke rio_scan_alloc_net(). Forcing allocation failure on idtab—through memory pressure or fault injection—causes the vulnerable error path to execute, resulting in availability impact through kernel instability.

No proof-of-concept code is publicly available. The vulnerability is not listed in the CISA Known Exploited Vulnerabilities catalog and has not been observed exploited in the wild.

Detection Methods for CVE-2026-43295

Indicators of Compromise

  • Kernel oops or panic messages referencing rio_scan_alloc_net, rio_free_net, or the RapidIO subsystem in dmesg or /var/log/kern.log
  • Unexpected system crashes or hangs on hosts with RapidIO hardware or drivers loaded
  • Allocation failure warnings in kernel logs immediately preceding RapidIO subsystem errors

Detection Strategies

  • Inventory hosts with CONFIG_RAPIDIO enabled and identify kernel versions that predate the upstream fix commits referenced by git.kernel.org
  • Compare running kernel versions against the patched commits (34a4f23, 649c2e8, 666183d, 78812c4, 83e579c, 87272e3, e5a732b, fecf292)
  • Monitor kernel ring buffer for RapidIO-related warnings and stack traces involving net allocation

Monitoring Recommendations

  • Forward kernel logs to a centralized log platform and alert on rapidio or rio_ symbol references in oops traces
  • Track kernel crash dumps for repeated faults in the RapidIO code path, which may indicate exploitation attempts or stability issues
  • Audit loaded kernel modules to confirm whether rapidio is required; remove the module on systems that do not need it

How to Mitigate CVE-2026-43295

Immediate Actions Required

  • Apply the latest stable kernel update from your Linux distribution vendor that incorporates the upstream RapidIO fix
  • Verify the running kernel version against the patched commits listed in the Linux Kernel git repository
  • Restrict local access to systems with RapidIO subsystems enabled, particularly multi-tenant or shared hosts

Patch Information

The vulnerability is resolved across multiple stable branches. Reference patches:

  • Linux Kernel Commit 34a4f23
  • Linux Kernel Commit 649c2e8
  • Linux Kernel Commit 666183d
  • Linux Kernel Commit 78812c4
  • Linux Kernel Commit 83e579c
  • Linux Kernel Commit 87272e3
  • Linux Kernel Commit e5a732b
  • Linux Kernel Commit fecf292

The fix replaces the inappropriate rio_free_net() call with kfree(net) and assigns NULL to mport->net to prevent dangling pointer dereference.

Workarounds

  • Disable the RapidIO subsystem on systems that do not require it by blacklisting the rapidio module or building kernels without CONFIG_RAPIDIO
  • Limit local shell access on affected systems to trusted administrators until patches are deployed
  • Apply strict resource limits to reduce the likelihood of induced allocation failures that trigger the vulnerable error path
bash
# Blacklist the RapidIO module to prevent loading
echo "blacklist rapidio" | sudo tee /etc/modprobe.d/blacklist-rapidio.conf
sudo update-initramfs -u

# Verify the module is not loaded
lsmod | grep rapidio

# Check current kernel version against patched commits
uname -r

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Vendor Resources
  • Linux Kernel Commit 34a4f23

  • Linux Kernel Commit 649c2e8

  • Linux Kernel Commit 666183d

  • Linux Kernel Commit 78812c4

  • Linux Kernel Commit 83e579c

  • Linux Kernel Commit 87272e3

  • Linux Kernel Commit e5a732b

  • Linux Kernel Commit fecf292
  • 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