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

CVE-2026-31670: Linux Kernel rfkill DOS Vulnerability

CVE-2026-31670 is a denial of service vulnerability in Linux Kernel rfkill that allows unlimited event creation leading to memory exhaustion. This article covers technical details, affected versions, and mitigation.

Published: April 30, 2026

CVE-2026-31670 Overview

CVE-2026-31670 is a resource exhaustion vulnerability in the Linux kernel's rfkill subsystem. The vulnerability allows local users to create an unlimited number of rfkill events when the system is appropriately configured, without consuming them from the rfkill file descriptor. This behavior can lead to memory exhaustion and denial of service conditions on affected systems.

Critical Impact

Local attackers can cause system-wide denial of service by exhausting available memory through unbounded rfkill event creation, potentially causing system instability or crashes.

Affected Products

  • Linux Kernel versions 2.6.31 and later
  • Linux Kernel 7.0 release candidates (rc1 through rc7)
  • Various Linux Kernel stable branches prior to patched versions

Discovery Timeline

  • April 24, 2026 - CVE-2026-31670 published to NVD
  • April 27, 2026 - Last updated in NVD database

Technical Details for CVE-2026-31670

Vulnerability Analysis

The rfkill subsystem in the Linux kernel provides a generic interface for disabling radio transmitters (such as WiFi, Bluetooth, and cellular modems). This vulnerability exists in the event handling mechanism of the rfkill subsystem, where userspace processes can generate events that are queued for consumption via the rfkill file descriptor.

The core issue stems from the lack of bounds checking on the number of pending rfkill events that can accumulate in the kernel. When a userspace process opens the rfkill device but fails to read (consume) the events from the file descriptor, the kernel continues to queue new events without limit. This unbounded queue growth directly consumes kernel memory, which cannot be reclaimed until the events are either consumed or the file descriptor is closed.

The attack requires local access with low privileges, and no user interaction is necessary to trigger the condition. The vulnerability impacts system availability without affecting confidentiality or integrity of data.

Root Cause

The root cause of this vulnerability is the absence of a maximum limit on the number of pending rfkill events that can be queued in the kernel. The rfkill event queue was implemented without considering the scenario where a malicious or misbehaving userspace application would intentionally or accidentally create events faster than they are consumed, leading to unbounded memory allocation.

Attack Vector

The attack requires local access to the system with the ability to interact with the rfkill subsystem. An attacker can exploit this vulnerability by:

  1. Opening the /dev/rfkill device or using the rfkill netlink interface
  2. Triggering rfkill state changes to generate events (e.g., toggling airplane mode, enabling/disabling wireless interfaces)
  3. Intentionally not reading from the rfkill file descriptor to prevent event consumption
  4. Continuously generating new events until kernel memory is exhausted

The vulnerability is particularly concerning on systems where unprivileged users have access to the rfkill interface, such as laptops or mobile devices with user-accessible wireless controls.

The fix implemented by the kernel developers bounds the number of pending rfkill events to a maximum of 1000 events, preventing memory exhaustion attacks while still allowing legitimate high-volume rfkill operations.

Detection Methods for CVE-2026-31670

Indicators of Compromise

  • Abnormally high memory consumption by kernel processes without corresponding userspace activity
  • Rapid increase in /proc/meminfo MemFree values decreasing while no heavy applications are running
  • Processes with open file descriptors to /dev/rfkill that are not actively reading from the device

Detection Strategies

  • Monitor for unusual patterns of rfkill event generation using dmesg or kernel logging facilities
  • Implement memory usage monitoring with alerts for unexpected kernel memory consumption
  • Use kernel auditing (auditd) to track access to /dev/rfkill and rfkill-related syscalls

Monitoring Recommendations

  • Deploy SentinelOne agents configured to monitor kernel memory allocation patterns and detect anomalous resource consumption
  • Set up alerting thresholds for system memory exhaustion conditions on affected Linux systems
  • Monitor for repeated rfkill state transitions that may indicate exploitation attempts

How to Mitigate CVE-2026-31670

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the event limit fix
  • Review and restrict access to /dev/rfkill to only necessary users and processes
  • Implement resource limits (ulimits) for processes that interact with the rfkill subsystem

Patch Information

The Linux kernel maintainers have released patches across multiple stable branches to address this vulnerability. The fix introduces a limit of 1000 pending rfkill events to prevent unbounded memory consumption. Patched commits are available in the kernel git repository:

  • Kernel Git Commit 4bcd1615
  • Kernel Git Commit 673d2a3e
  • Kernel Git Commit 80ce4cb0
  • Kernel Git Commit 82843afc
  • Kernel Git Commit a8c26800
  • Kernel Git Commit b1e0c8d3
  • Kernel Git Commit e3842779
  • Kernel Git Commit ea245d78

Workarounds

  • Restrict access to /dev/rfkill using filesystem permissions (chmod 600 /dev/rfkill) to limit access to root only
  • Use udev rules to control which users and groups can access rfkill devices
  • Implement systemd resource controls (MemoryMax) for services that interact with rfkill to limit potential impact
bash
# Restrict rfkill device access to root only
chmod 600 /dev/rfkill

# Create udev rule to limit rfkill access (save to /etc/udev/rules.d/99-rfkill-security.rules)
KERNEL=="rfkill", MODE="0600", GROUP="root"

# Reload udev rules
udevadm control --reload-rules
udevadm trigger

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Git Commit Details

  • Kernel Git Commit Details

  • Kernel Git Commit Details

  • Kernel Git Commit Details

  • Kernel Git Commit Details

  • Kernel Git Commit Details

  • Kernel Git Commit Details

  • Kernel Git Commit Details
  • Related CVEs
  • CVE-2026-31739: Linux Kernel Tegra Crypto DoS Vulnerability

  • CVE-2026-43054: Linux Kernel tcm_loop DOS Vulnerability

  • CVE-2026-31736: Linux Kernel MTK PPE DoS Vulnerability

  • CVE-2026-31727: Linux Kernel USB Gadget DoS 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