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

CVE-2026-36355: Realtek rtl819x Information Disclosure

CVE-2026-36355 is an information disclosure vulnerability in the Realtek rtl819x Jungle SDK Wi-Fi driver that exposes debug handlers without access controls. This article covers technical details, affected versions, and mitigation.

Published: May 7, 2026

CVE-2026-36355 Overview

CVE-2026-36355 affects the rtl8192cd Wi-Fi kernel driver shipped in the Realtek rtl819x Jungle Software Development Kit (SDK), including all known versions through v3.4.14B. The driver exposes two debug ioctl handlers, write_mem (0x89F5) and read_mem (0x89F6), without performing any access control checks. These handlers are compiled into production builds because the _IOCTL_DEBUG_CMD_ macro in 8192cd_cfg.h is unconditionally defined. A local attacker can read from and write to arbitrary kernel memory through these ioctls, breaking confidentiality and integrity of the device.

Critical Impact

Local users on affected devices can read and write arbitrary kernel memory through unprivileged ioctl calls, enabling credential theft and privilege escalation on Realtek-based Wi-Fi routers and access points.

Affected Products

  • Realtek rtl8192cd Wi-Fi kernel driver
  • Realtek rtl819x Jungle SDK, all versions through v3.4.14B
  • Network devices and consumer routers built on the Realtek rtl819x platform

Discovery Timeline

  • 2026-05-05 - CVE-2026-36355 published to the National Vulnerability Database (NVD)
  • 2026-05-07 - Last updated in NVD

Technical Details for CVE-2026-36355

Vulnerability Analysis

The rtl8192cd driver registers debug ioctl handlers intended for development and validation. The write_mem handler at ioctl number 0x89F5 accepts a kernel address and writes attacker-supplied bytes to that address. The read_mem handler at 0x89F6 returns kernel memory contents from any address provided by the caller. Neither handler validates the caller's privilege level, capabilities, or namespace. The handlers also accept arbitrary pointers without bounds checking against valid kernel mappings.

This behavior is classified as exposure of sensitive information to an unauthorized actor [CWE-200], although the practical impact extends to arbitrary kernel write primitives. The vulnerability requires local access to the device, such as a shell session on the router or an unprivileged process on systems that bridge user input to the driver.

Root Cause

The root cause is the unconditional definition of the _IOCTL_DEBUG_CMD_ preprocessor macro in 8192cd_cfg.h. This macro gates the inclusion of the debug ioctl handlers at compile time. Because the macro is always defined, every production build of the SDK ships with the debug interface enabled. The handlers themselves omit calls to capable(), CAP_SYS_RAWIO, or any equivalent access control check before performing the requested memory operation.

Attack Vector

An attacker with local access opens the Wi-Fi network device, for example through socket(AF_INET, SOCK_DGRAM, 0), and issues ioctl() with command 0x89F6 to read kernel memory or 0x89F5 to write to it. The attacker can locate kernel structures such as cred objects, overwrite uid fields, and elevate privileges. The same primitive enables extraction of cryptographic keys, configuration secrets, and Wi-Fi Protected Access (WPA) passphrases from kernel memory. Public proof-of-concept material is available in the GitHub CVE-2026-36355 repository.

Detection Methods for CVE-2026-36355

Indicators of Compromise

  • Unexpected ioctl() syscalls with command numbers 0x89F5 or 0x89F6 issued against rtl8192cd interface names such as wlan0 or rai0
  • Unprivileged processes opening raw network sockets and immediately issuing device-specific ioctls
  • Anomalous changes to process credentials or sudden privilege transitions on embedded Realtek-based devices

Detection Strategies

  • Audit ioctl syscalls on Linux-based router firmware using auditd or eBPF probes filtering on commands 0x89F5 and 0x89F6
  • Inspect firmware images for the _IOCTL_DEBUG_CMD_ build artifact and the write_mem and read_mem symbols in the rtl8192cd module
  • Monitor for unexpected kernel module loads and integrity changes on production routers

Monitoring Recommendations

  • Forward router and access point logs to a central data lake and alert on local shell access from non-administrative accounts
  • Track failed and successful authentication attempts on management interfaces of Realtek-based devices
  • Establish baselines for ioctl activity on managed embedded devices and alert on deviation

How to Mitigate CVE-2026-36355

Immediate Actions Required

  • Identify all network devices using the Realtek rtl819x Jungle SDK and the rtl8192cd driver in inventory
  • Restrict local and shell access to affected devices to administrators only
  • Disable serial, Telnet, and SSH services on routers exposed to untrusted users
  • Segment vulnerable devices on isolated management networks until a vendor patch is available

Patch Information

No vendor patch is referenced in the NVD entry at the time of publication. Device integrators should rebuild the SDK with the _IOCTL_DEBUG_CMD_ macro removed from 8192cd_cfg.h or add a capable(CAP_SYS_RAWIO) check to the write_mem and read_mem handlers. Consult the Realtek official website for SDK updates and contact the device manufacturer for firmware revisions.

Workarounds

  • Rebuild the rtl8192cd driver without the _IOCTL_DEBUG_CMD_ macro to remove the debug ioctl handlers entirely
  • Add a privilege check requiring CAP_SYS_RAWIO at the entry of write_mem and read_mem if rebuilding without the macro is not feasible
  • Restrict access to the Wi-Fi network interface device nodes through filesystem permissions where the platform allows
bash
# Configuration example: rebuild guidance for integrators
# In drivers/net/wireless/rtl8192cd/8192cd_cfg.h, remove or guard:
# #define _IOCTL_DEBUG_CMD_
# Then rebuild the kernel module:
make -C /path/to/kernel M=$(pwd)/rtl8192cd clean
make -C /path/to/kernel M=$(pwd)/rtl8192cd modules

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechRealtek

  • SeverityHIGH

  • CVSS Score7.7

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-200
  • Technical References
  • Realtek Official Website

  • GitHub CVE-2026-36355 Repository
  • Related CVEs
  • CVE-2019-25345: Realtek IIS Codec Privilege Escalation

  • CVE-2020-36974: Realtek Andrea RT Filters Privilege Escalation

  • CVE-2021-35394: Realtek Jungle SDK RCE Vulnerability

  • CVE-2021-35395: Realtek Jungle SDK RCE 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