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-2025-71100

CVE-2025-71100: Linux Kernel rtlwifi Array Overflow Flaw

CVE-2025-71100 is an array index out-of-bounds vulnerability in the Linux kernel rtlwifi 8192cu driver that can cause TID range errors. This article covers the technical details, affected versions, and available fixes.

Updated: January 22, 2026

CVE-2025-71100 Overview

A vulnerability has been discovered in the Linux kernel's rtlwifi driver for Realtek 8192CU wireless network adapters. The issue exists in the rtl92cu_tx_fill_desc() function where the Traffic Identifier (TID) value obtained from ieee80211_get_tid() may exceed the bounds of the sta_entry->tids[] array, leading to an out-of-bounds array access. This vulnerability was identified through UBSAN (Undefined Behavior Sanitizer) warnings indicating that index 10 is out of range for an array of type rtl_tid_data [9].

Critical Impact

Out-of-bounds array access in the Linux kernel wireless driver can lead to undefined behavior, potential information disclosure, or system instability when using Realtek 8192CU USB wireless adapters.

Affected Products

  • Linux kernel with rtlwifi module (rtl8192cu driver)
  • Systems using Realtek RTL8192CU USB wireless adapters
  • Various Linux distributions running affected kernel versions

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-71100 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-71100

Vulnerability Analysis

The vulnerability resides in the transmission path of the rtl8192cu wireless driver within the Linux kernel. The rtl92cu_tx_fill_desc() function retrieves a TID value using the ieee80211_get_tid() function from incoming network frames. This TID is then used to index into the sta_entry->tids[] array, which has a fixed size defined by MAX_TID_COUNT.

The issue occurs because the code does not validate that the returned TID value falls within the valid range of array indices. IEEE 802.11 TID values can range from 0-15, but the rtl_tid_data array only accommodates 9 entries (indices 0-8). When a TID value of 10 or higher is encountered, it results in an out-of-bounds array access at drivers/net/wireless/realtek/rtlwifi/rtl8192cu/trx.c:514:30.

Root Cause

The root cause is a missing bounds check in the rtl92cu_tx_fill_desc() function. The code directly uses the TID value returned by ieee80211_get_tid() as an array index without first verifying that it is less than MAX_TID_COUNT. This is a classic input validation error where an external value is used without proper boundary validation.

Attack Vector

The vulnerability is triggered through normal wireless network operations when the driver processes frames with high TID values. While the attack vector is not clearly defined in the available data, the vulnerability could potentially be exploited by:

Crafted wireless frames containing TID values outside the expected range could trigger the out-of-bounds access. An attacker within wireless range could potentially send specially crafted 802.11 frames to a system using the vulnerable driver, causing undefined behavior in the kernel. The practical exploitability depends on the specific memory layout and what data resides adjacent to the tids[] array.

Detection Methods for CVE-2025-71100

Indicators of Compromise

  • UBSAN warnings in kernel logs containing "array-index-out-of-bounds" referencing rtl8192cu/trx.c
  • Kernel log messages indicating issues with the rtlwifi or rtl8192cu modules
  • Unexpected system crashes or instability when using Realtek 8192CU wireless adapters

Detection Strategies

  • Monitor kernel logs (dmesg) for UBSAN sanitizer warnings related to the rtlwifi driver
  • Enable kernel address sanitizer (KASAN) and undefined behavior sanitizer (UBSAN) for enhanced runtime detection
  • Review system crash dumps for stack traces originating from the rtl92cu_tx_fill_desc() function

Monitoring Recommendations

  • Configure centralized logging to capture kernel-level warnings and errors across affected systems
  • Implement automated alerting for UBSAN or KASAN warnings in production environments
  • Monitor network interface stability on systems using Realtek 8192CU adapters

How to Mitigate CVE-2025-71100

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the TID bounds check fix
  • If updates are not immediately available, consider temporarily disabling or replacing Realtek 8192CU wireless adapters
  • Monitor affected systems for signs of exploitation or instability

Patch Information

The Linux kernel development team has released patches to address this vulnerability. The fix adds a bounds check to ensure the TID value is less than MAX_TID_COUNT before using it as an array index. The patches are available in the stable kernel tree:

  • Kernel Git Commit Log 90a15ff
  • Kernel Git Commit Log 9765d6e
  • Kernel Git Commit Log dd39edb

Workarounds

  • Use an alternative wireless adapter with a different driver until the system can be patched
  • Blacklist the rtl8192cu module if the adapter is not required for operations
  • Limit wireless network exposure by connecting affected systems via wired Ethernet when possible
bash
# Temporarily blacklist the vulnerable driver module
echo "blacklist rtl8192cu" | sudo tee /etc/modprobe.d/blacklist-rtl8192cu.conf
sudo modprobe -r rtl8192cu

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
  • Kernel Git Commit Log 90a15ff

  • Kernel Git Commit Log 9765d6e

  • Kernel Git Commit Log dd39edb
  • Related CVEs
  • CVE-2026-31421: Linux Kernel cls_fw NULL Pointer Vulnerability

  • CVE-2026-31416: Linux Kernel Netfilter Header Vulnerability

  • CVE-2026-31417: Linux Kernel X.25 Overflow Vulnerability

  • CVE-2026-23457: Linux Kernel Integer Truncation 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