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
    • 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-23073

CVE-2026-23073: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-23073 is a buffer overflow vulnerability in the Linux kernel RSI911x WiFi driver caused by missing vif driver data size allocation. This memory corruption issue can lead to system crashes and instability.

Published: February 6, 2026

CVE-2026-23073 Overview

A memory corruption vulnerability has been identified in the Linux kernel's RSI911x WiFi driver (wifi: rsi). The vulnerability occurs because the driver fails to properly set the virtual interface (vif) driver data size when allocating the ieee80211_vif structure. This results in out-of-bounds memory access when the driver attempts to use the vif driver private data area, leading to memory corruption that can cause system crashes.

Critical Impact

This vulnerability allows local users to trigger kernel memory corruption, potentially causing denial of service through system crashes. The vulnerability is easily triggered by simple network interface operations.

Affected Products

  • Linux Kernel with RSI911x WiFi driver enabled
  • Systems using RedPine Signals RSI911x WiFi chipsets
  • Linux distributions with CONFIG_RSI_91X kernel configuration enabled

Discovery Timeline

  • 2026-02-04 - CVE CVE-2026-23073 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-23073

Vulnerability Analysis

The vulnerability resides in the RSI911x WiFi driver's handling of the ieee80211_vif structure allocation. In the Linux WiFi subsystem, the struct ieee80211_vif contains trailing space for driver-specific private data. When this structure is allocated, the total memory size should be sizeof(struct ieee80211_vif) plus the size of the driver's private data structure, which each WiFi driver must specify according to its needs.

The RSI911x driver neglects to set this vif driver data size, meaning no trailing space is allocated beyond the base ieee80211_vif structure. However, the driver still attempts to use vif->drv_priv to store its private data structure struct vif_priv. This results in out-of-bounds writes that corrupt adjacent memory.

Root Cause

The root cause is a missing initialization of the vif driver data size in the RSI911x driver. When the driver calls into the mac80211 subsystem, the ieee80211_vif structure is allocated without accounting for the space needed by struct vif_priv. The driver then writes to vif->drv_priv as if that memory had been properly allocated, corrupting whatever memory happens to follow the ieee80211_vif structure.

In observed crashes, the memory corruption specifically affects struct fq_tin member struct list_head new_flows. When fq_tin_reset() subsequently iterates over this corrupted list, it encounters a bogus non-NULL address, and accessing this corrupted pointer causes a kernel crash.

Attack Vector

The vulnerability can be triggered through basic network interface management operations. The attack sequence is straightforward:

  1. Bring up the WiFi interface (ip link set wlan0 up)
  2. Wait briefly for initialization
  3. Bring down the WiFi interface (ip link set wlan0 down)

This triggers the memory corruption in rsi_mac80211_add_interface() when the driver writes vif_info->vap_id = vap_idx to the unallocated memory region. The crash occurs during interface teardown when the corrupted fq_tin list is processed.

The vulnerability requires local access to the system and the ability to manage network interfaces, which typically requires root privileges or CAP_NET_ADMIN capability.

Detection Methods for CVE-2026-23073

Indicators of Compromise

  • Kernel panic or oops messages referencing fq_tin_reset() or rsi_mac80211_add_interface()
  • System crashes during WiFi interface up/down operations on systems with RSI911x chipsets
  • Memory corruption indicators in kernel logs related to list corruption in the WiFi subsystem
  • Unexpected system instability when managing wlan0 interfaces using RSI911x driver

Detection Strategies

  • Monitor kernel logs for oops or panic traces involving rsi_91x module functions
  • Implement runtime kernel memory debugging features such as KASAN (Kernel Address Sanitizer) to detect out-of-bounds accesses
  • Track kernel module loading for rsi_91x and correlate with system stability issues
  • Use system auditing to log network interface state changes on affected systems

Monitoring Recommendations

  • Enable kernel crash dump collection (kdump) to capture diagnostic information if the vulnerability is triggered
  • Monitor for unexpected system reboots or kernel panic events on systems with RSI911x WiFi hardware
  • Set up alerting on kernel log patterns matching RSI driver errors or list corruption messages
  • Regularly audit system logs for signs of memory corruption in network subsystems

How to Mitigate CVE-2026-23073

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix for CVE-2026-23073
  • If immediate patching is not possible, consider blacklisting or unloading the rsi_91x kernel module
  • Restrict CAP_NET_ADMIN capability to trusted users only to limit who can trigger the vulnerability
  • Monitor affected systems closely for signs of exploitation or crashes

Patch Information

The fix involves setting the correct size of vif driver data to match sizeof(struct vif_priv). This ensures that when ieee80211_vif is allocated, sufficient trailing space is reserved for the driver's private data structure, preventing the out-of-bounds writes.

Multiple kernel commits address this vulnerability across different stable kernel branches:

  • Kernel Commit 31efbcff9088
  • Kernel Commit 4f431d88ea80
  • Kernel Commit 7761d7801f40
  • Kernel Commit 99129d80a5d4

Workarounds

  • Blacklist the rsi_91x module by adding blacklist rsi_91x to /etc/modprobe.d/blacklist.conf if the WiFi hardware is not needed
  • Use an alternative WiFi adapter with a different driver if RSI911x functionality is not essential
  • Restrict physical access and administrative privileges on affected systems until patches can be applied
  • Consider using a USB WiFi adapter with a different chipset as a temporary replacement
bash
# Blacklist the vulnerable RSI911x driver module
echo "blacklist rsi_91x" | sudo tee /etc/modprobe.d/blacklist-rsi.conf
echo "blacklist rsi_sdio" | sudo tee -a /etc/modprobe.d/blacklist-rsi.conf
echo "blacklist rsi_usb" | sudo tee -a /etc/modprobe.d/blacklist-rsi.conf

# Unload the module if currently loaded
sudo modprobe -r rsi_91x 2>/dev/null || true
sudo modprobe -r rsi_sdio 2>/dev/null || true
sudo modprobe -r rsi_usb 2>/dev/null || true

# Update initramfs to persist the blacklist
sudo update-initramfs -u

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

  • Linux Kernel Commit Log

  • Linux Kernel Commit Log

  • Linux Kernel Commit Log
  • Related CVEs
  • CVE-2026-23448: Linux Kernel Buffer Overflow Vulnerability

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

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

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