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

CVE-2026-23373: Linux Kernel RSI WiFi Driver Vulnerability

CVE-2026-23373 is a configuration handling flaw in the Linux kernel's RSI WiFi driver that triggers unexpected WARN_ON behavior. This article covers the technical details, affected kernel versions, and mitigation.

Published: March 27, 2026

CVE-2026-23373 Overview

A vulnerability has been resolved in the Linux kernel's WiFi RSI driver. The issue occurs in the rsi_mac80211_config function where the default return value of -EOPNOTSUPP triggers a WARN_ON in ieee80211_hw_conf_init. This behavior deviates from the expected driver implementation, as other drivers default to returning 0 for successful operation.

Critical Impact

This vulnerability affects Linux kernel WiFi subsystem stability, potentially causing unexpected warnings during wireless hardware configuration initialization that could impact system reliability.

Affected Products

  • Linux kernel with RSI WiFi driver enabled
  • Systems using Redpine Signals WiFi chipsets
  • Linux distributions with affected kernel versions

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23373 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23373

Vulnerability Analysis

The vulnerability resides in the RSI (Redpine Signals Inc.) WiFi driver's mac80211 configuration function within the Linux kernel. When the rsi_mac80211_config function is called, it incorrectly defaults to returning -EOPNOTSUPP (Operation Not Supported) even in cases where no specific configuration error occurs. This return value propagates to the ieee80211_hw_conf_init function in the kernel's WiFi subsystem, which interprets this as an unexpected failure condition and triggers a WARN_ON macro. This warning mechanism is designed to alert developers and administrators to abnormal kernel behavior, but in this case, it creates false positives during normal driver initialization.

Root Cause

The root cause stems from improper default return value handling in the rsi_mac80211_config function. The function was designed to return -EOPNOTSUPP as a fallback, but this contradicts the expected behavior of mac80211 configuration callbacks. Other WiFi drivers in the Linux kernel correctly default to returning 0 (success) when no error condition exists, which is the semantically correct approach for configuration functions that may not need to perform any action.

Attack Vector

This is a software defect rather than a traditionally exploitable security vulnerability. The attack vector is local and requires no special privileges beyond normal system access with WiFi hardware present. The impact is limited to triggering kernel warnings and potentially causing system instability in environments with strict kernel warning policies. The vulnerability cannot be remotely exploited and does not provide privilege escalation capabilities.

The fix modifies the default return value in rsi_mac80211_config from -EOPNOTSUPP to 0, aligning the RSI driver's behavior with other WiFi drivers and eliminating the spurious WARN_ON triggers.

Detection Methods for CVE-2026-23373

Indicators of Compromise

  • Presence of WARN_ON messages in kernel logs (dmesg) related to ieee80211_hw_conf_init
  • WiFi driver initialization warnings specifically referencing the RSI driver module
  • System stability issues during wireless network configuration on systems with Redpine Signals chipsets

Detection Strategies

  • Monitor system logs for kernel warnings containing ieee80211_hw_conf_init or rsi_mac80211_config function references
  • Review dmesg output after WiFi driver loading for any WARN_ON stack traces
  • Implement kernel log parsing to detect anomalous WiFi subsystem warnings

Monitoring Recommendations

  • Configure centralized log collection to capture kernel warnings across affected systems
  • Set up alerts for repeated kernel warnings in the WiFi subsystem stack
  • Monitor system uptime metrics for unexpected reboots that may be related to kernel warning policies

How to Mitigate CVE-2026-23373

Immediate Actions Required

  • Apply the available kernel patches from the Linux kernel stable tree
  • Update to a kernel version containing the fix for the RSI driver
  • Consider disabling the RSI driver module if not required until patching is complete

Patch Information

Multiple kernel patches are available addressing this vulnerability:

  • Kernel Patch - Commit 67d10e8d
  • Kernel Patch - Commit 95ed0764
  • Kernel Patch - Commit b64fbd71
  • Kernel Patch - Commit d973b103

The patches modify the default return behavior in rsi_mac80211_config to return 0 instead of -EOPNOTSUPP, consistent with other WiFi driver implementations.

Workarounds

  • Temporarily blacklist the rsi_91x kernel module if RSI WiFi hardware is not in use
  • Configure kernel boot parameters to suppress WARN_ON panics if applicable to your environment
  • Use alternative WiFi hardware or drivers until the kernel can be updated
bash
# Temporarily disable RSI WiFi driver module
echo "blacklist rsi_91x" | sudo tee /etc/modprobe.d/disable-rsi.conf
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
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch Proposal

  • Kernel Patch Proposal

  • Kernel Patch Proposal

  • Kernel Patch Proposal
  • Related CVEs
  • CVE-2026-23324: Linux Kernel USB URB Anchor Vulnerability

  • CVE-2026-23308: Linux Kernel pinctrl IRQ Vulnerability

  • CVE-2026-23360: Linux Kernel NVMe Admin Queue Leak Bug

  • CVE-2026-23366: Linux Kernel NULL Pointer Vulnerability
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