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-2021-47786

CVE-2021-47786: Redragon Gaming Mouse Driver DoS Flaw

CVE-2021-47786 is a denial of service vulnerability in Redragon Gaming Mouse driver caused by malformed IOCTL requests. Attackers can crash the kernel driver with crafted buffers. This article covers technical details, impact, and fixes.

Published: January 23, 2026

CVE-2021-47786 Overview

CVE-2021-47786 is an out-of-bounds write vulnerability (CWE-787) affecting the Redragon Gaming Mouse kernel driver. This kernel-level vulnerability allows local attackers to trigger a denial of service condition by sending malformed IOCTL requests to the REDRAGON_MOUSE device. Attackers can craft a 2000-byte buffer with specific byte patterns that causes the kernel driver to crash, resulting in system instability or a complete system failure.

Critical Impact

Local attackers with low privileges can crash the kernel driver, causing denial of service on affected Windows systems running vulnerable Redragon Gaming Mouse drivers.

Affected Products

  • Redragon Gaming Mouse Driver (REDRAGONMOUSE.sys)
  • Windows systems with Redragon gaming mouse software installed

Discovery Timeline

  • 2026-01-16 - CVE-2021-47786 published to NVD
  • 2026-01-16 - Last updated in NVD database

Technical Details for CVE-2021-47786

Vulnerability Analysis

This vulnerability exists in the Redragon Gaming Mouse kernel driver, specifically in how it processes IOCTL (Input/Output Control) requests. The driver fails to properly validate the size and content of input buffers before processing them, leading to an out-of-bounds write condition. When a malicious local user sends a specially crafted IOCTL request with a 2000-byte buffer containing specific byte patterns to the REDRAGON_MOUSE device, the driver writes data beyond the intended memory boundaries.

The exploitation requires local access and low privileges, making this an attack that could be leveraged by malware or malicious local users. While this vulnerability does not allow for code execution or information disclosure, the denial of service impact can disrupt system operations and potentially cause data loss if the system crashes during critical operations.

Root Cause

The root cause of CVE-2021-47786 is improper input validation in the kernel driver's IOCTL handler. The REDRAGONMOUSE.sys driver does not adequately verify the bounds of user-supplied input buffers before performing memory operations. This lack of boundary checking allows attackers to supply oversized or malformed data that triggers an out-of-bounds write condition, corrupting kernel memory and causing a system crash.

Attack Vector

The attack vector is local, requiring the attacker to have authenticated access to the target system. The attacker must be able to open a handle to the REDRAGON_MOUSE device and send IOCTL requests. The exploitation process involves:

  1. Opening a handle to the vulnerable device (\\.\REDRAGON_MOUSE)
  2. Crafting a malicious 2000-byte buffer with specific byte patterns
  3. Sending the crafted buffer via a DeviceIoControl call with a specific IOCTL code
  4. The driver processes the malformed input without proper validation
  5. An out-of-bounds write occurs, causing kernel memory corruption
  6. The system crashes or becomes unstable

For technical details and proof-of-concept information, refer to the GitHub Kernel Driver Bugs repository and Exploit-DB #50322.

Detection Methods for CVE-2021-47786

Indicators of Compromise

  • Unexpected system crashes or blue screens (BSOD) associated with REDRAGONMOUSE.sys
  • Crash dumps indicating memory corruption in the Redragon driver namespace
  • Unusual IOCTL request patterns to the REDRAGON_MOUSE device
  • Evidence of DeviceIoControl calls with large buffers targeting gaming peripheral drivers

Detection Strategies

  • Monitor for system crash events (Event ID 1001, BugCheck) mentioning REDRAGONMOUSE.sys in crash dump analysis
  • Deploy endpoint detection rules to identify suspicious IOCTL requests to \\.\REDRAGON_MOUSE device
  • Use kernel driver integrity monitoring to detect exploitation attempts against vulnerable drivers
  • Implement application whitelisting to prevent unauthorized processes from interacting with peripheral device drivers

Monitoring Recommendations

  • Enable Windows Error Reporting and crash dump collection to capture driver crash events
  • Monitor for repeated system instability on endpoints with Redragon gaming peripherals installed
  • Use SentinelOne Singularity platform to detect kernel-level anomalies and driver exploitation attempts
  • Review driver installation logs for outdated or vulnerable versions of Redragon software

How to Mitigate CVE-2021-47786

Immediate Actions Required

  • Audit systems for the presence of vulnerable Redragon Gaming Mouse drivers
  • Consider temporarily removing or disabling the Redragon driver if not critical to operations
  • Restrict device access permissions to limit which users can send IOCTL requests
  • Implement endpoint protection solutions capable of detecting kernel driver exploitation

Patch Information

Check the Redragon Official Website for updated driver versions that address this vulnerability. Review the Vulncheck Advisory for additional remediation guidance. Organizations should prioritize driver updates on systems where gaming peripherals are used in enterprise environments.

Workarounds

  • Remove or disable the vulnerable REDRAGONMOUSE.sys driver if it is not required for operations
  • Restrict local user access to systems with vulnerable drivers to reduce the attack surface
  • Use Windows Device Installation policies to prevent installation of unauthorized or vulnerable drivers
  • Deploy endpoint protection that monitors kernel driver activity and can block malicious IOCTL requests
bash
# Check for presence of vulnerable driver
sc query REDRAGONMOUSE
# If present and not needed, disable the driver
sc config REDRAGONMOUSE start= disabled
# Stop the driver service
sc stop REDRAGONMOUSE

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechRedragon

  • SeverityMEDIUM

  • CVSS Score6.8

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-787
  • Technical References
  • GitHub Kernel Driver Bugs

  • Exploit-DB #50322

  • Redragon Official Website

  • Vulncheck Advisory on Redragon Mouse
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS 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