Skip to main content
A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Find Out Why
  • Experiencing a breach?
  • Blog
  • Careers
  • Platform & Products

    • Singularity™ Platform

      Unified Enterprise Security. Machine-Speed Protection, Intelligence, and Response.

    • XDR

      Native and Open Protection, Detection, and Response.

    • Integrations and Partners

      One-Click Integrations to Unlock the Power of SentinelOne.

    Product Tours
    Pricing & Packages
    Get a Demo
  • Solutions & Use Cases

    SentinelOne for Industries

    Security Tuned for Your Industry.

    See All Industries
    • Healthcare

      Protect Patient Data. Keep Clinical Systems Online.

    • Financial Services

      Stop Fraud and Ransomware. Stay Audit-Ready.

    • Federal Government

      FedRAMP and IL5-Ready Defense for Federal Missions.

    • Manufacturing

      Defend OT, IT, IIOT, and Supply Chains at Scale.

    • Energy

      Secure OT Systems and Critical Infrastructure.

    • Transportation and Logistics

      Defend Operations Across Fleet, Port, and Rail.

    • Higher Education

      Protect Open Networks Without Slowing Research.

    • K-12 Education

      Stop Ransomware. Protect Students, Staff, and Data.

    • Retail and Hospitality

      Defend Your Brand, Customer Data, and Bottom Line.

    • SMB & Startups

      Enterprise-Grade Defense for Fast Teams.

    See all solutions
  • Services

    Managed Services

    Wayfinder Threat Detection and Response.

    Learn More
    • Threat Hunting

      World-Class Expertise and Threat Intelligence.

    • Managed Detection and Response

      24/7 Expert MDR Across Your Entire Environment.

    • Incident Readiness and Response

      DFIR, Breach Readiness, and Compromise Assessments.

    Experiencing a breach?

    Our experts are here to help 24/7.

    1-855-868-3733
    Get Help Now
  • Partners

    Become a Partner

    • Become a SentinelOne Partner

      Join the Global SentinelOne Ecosystem

    • Explore MSSP Solutions

      Services Succeed Faster with SentinelOne

    • Form a Technology Alliance

      Integrated, Enterprise-Scale Solutions

    Find a Partner

    • Enlist a Response or Advisory Team

      Enlist Pro Response and Advisory Teams

    • SentinelOne for AWS

      Hosted Across AWS Regions Worldwide

    • SentinelOne for Google

      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale

    • Partner Locator

      Your Go-to Source for Our Top Partners in Your Region

    • Singularity Marketplace

      One-Click Integrations for Unified Prevention, Detection, and Response

      Explore integrations
    Partner Portal Login
  • Why SentinelOne

    • Why Choose SentinelOne

      AI-Powered Cybersecurity Built to Secure What’s Next.

    • Our Customers

      Trusted by the World’s Leading Companies.

    • Industry Awards & Recognition

      Tested and Proven by the Experts.

  • Resources & Support

    Resources

    • Resource Center
    • Webinars
    • Cybersecurity Blog
    • Events
    • Newsroom

    Company

    • About SentinelOne
    • Careers
    • S Ventures
    • S Foundation
    • Dataset
    • FAQ
    • Investors Relations

    Customer Success & Support

    • Live and On-Demand Training
    • Guided Onboarding & Deployment
    • Technical Account Management
    • Support Services
    • Customer Portal
    • Get Support Now

    Explore

    • Vulnerability Database
    • SentinelLABS Threat Research
    • Ransomeware Anthology
    • Cybersecurity 101
    EventJoin us at OneCon (Oct. 20–22, 2026)
    CompetitionThreat Hunting World Championship 2026
    ReportThe SentinelOne Annual Threat Report
  • Pricing
Get StartedContact us

Explore SentinelOne

  • Pricing
Events
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-52907: Linux Kernel Rockchip Buffer Overflow

  • CVE-2026-52905: Linux Kernel DAMON Region Vulnerability

  • CVE-2026-46329: Linux Kernel EROFS I/O Handling Flaw

  • CVE-2026-46326: Linux Kernel IIO Pressure 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 a DemoContact Us
  • Product Tours
  • Why SentinelOne
  • Pricing & Packages
  • FAQ
  • SentinelOne Status

Key Products & Solutions

  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Prompt Security
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Explore Solutions

Services

  • Wayfinder TDR
  • Managed Detection and Response
  • Threat Hunting
  • Incident Readiness
& Response
  • Technical Account Management
  • Guided Onboarding 
& Deployment
  • Support Services

Company

  • About Us
  • Our Customers
  • Careers
  • Partners
  • S1 Foundation
  • S1 Ventures
  • Legal Information
  • Security & Compliance
  • Investor Relations

Quick Links

  • Customer Portal
  • Partner Portal
  • Become a Partner
  • Resource Center
  • SentinelLABS Threat Research
  • Blog
  • Press Center
  • Cybersecurity 101
  • Events
  • Ransomware Anthology
©2026 SentinelOne, All Rights Reserved
Privacy NoticeTerms of Use
English
English