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

CVE-2026-31642: Linux Kernel Privilege Escalation Flaw

CVE-2026-31642 is a privilege escalation vulnerability in the Linux Kernel affecting the rxrpc call removal mechanism. This flaw could allow attackers to elevate privileges. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: April 30, 2026

CVE-2026-31642 Overview

CVE-2026-31642 is an Infinite Loop vulnerability in the Linux kernel's rxrpc (Rx Remote Procedure Call) subsystem. The flaw exists in the call removal mechanism from the rxnet->calls list, where improper use of list_del_init() instead of list_del_rcu() can cause reading /proc/net/rxrpc/calls to enter an infinite loop. This vulnerability allows a local attacker with low privileges to cause a denial of service condition by triggering the infinite loop, effectively hanging the system or exhausting CPU resources.

Critical Impact

Local attackers can exploit improper RCU list handling in the Linux kernel rxrpc subsystem to trigger an infinite loop, causing denial of service through CPU exhaustion.

Affected Products

  • Linux Kernel version 4.13
  • Linux Kernel versions 7.0-rc1 through 7.0-rc7
  • Linux Kernel (various versions prior to the patch)

Discovery Timeline

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

Technical Details for CVE-2026-31642

Vulnerability Analysis

This vulnerability stems from incorrect list manipulation in the rxrpc network subsystem. The rxrpc protocol implementation maintains a list of active calls in rxnet->calls. When removing entries from this list, the code originally used list_del_init(), which is not safe for RCU (Read-Copy-Update) protected data structures. RCU is a synchronization mechanism used extensively in the Linux kernel to allow concurrent read access without locks.

When list_del_init() is used instead of list_del_rcu(), a reader traversing the list through /proc/net/rxrpc/calls can encounter a corrupted list state. This happens because list_del_init() reinitializes the removed entry's pointers to point to itself, which can create a circular reference that causes an infinite loop when the list is being read concurrently.

The impact is primarily availability-focused, allowing local users to trigger a denial of service condition. No authentication bypass, code execution, or data exfiltration is possible through this vulnerability alone.

Root Cause

The root cause is the use of list_del_init() for removing rxrpc call entries from a RCU-protected list structure. This function is not RCU-safe and can corrupt the list traversal for concurrent readers. The fix involves:

  1. Replacing list_del_init() with list_del_rcu() for proper RCU semantics
  2. Modifying rxrpc_destroy_all_calls() to limit dumping to the first ten unexpected calls, eliminating the need for cond_resched() or list removal during cleanup
  3. Updating rxrpc_put_call() to unconditionally delete calls from the list since it becomes the sole deletion point

Attack Vector

The attack requires local access to the system. An attacker with low-level user privileges can trigger the vulnerability by accessing /proc/net/rxrpc/calls while rxrpc calls are being removed from the list. The timing window where the race condition can be exploited depends on system load and rxrpc activity.

The exploitation scenario involves:

  1. Establishing rxrpc connections to generate call entries in the kernel's call list
  2. Initiating concurrent reads of /proc/net/rxrpc/calls while calls are being terminated
  3. The race condition between list removal and list traversal triggers the infinite loop
  4. The kernel thread reading the proc file becomes stuck, consuming CPU resources

No public exploit code is currently available for this vulnerability.

Detection Methods for CVE-2026-31642

Indicators of Compromise

  • Processes stuck in kernel space when reading /proc/net/rxrpc/calls
  • Unexplained high CPU utilization by kernel threads related to proc filesystem access
  • System hangs or unresponsiveness when rxrpc network activity occurs
  • Kernel log messages indicating issues with rxrpc call cleanup

Detection Strategies

  • Monitor for processes with excessive CPU time in kernel space, particularly those accessing proc filesystem entries
  • Implement kernel auditing to track access patterns to /proc/net/rxrpc/calls
  • Use kernel debugging tools like ftrace to monitor rxrpc subsystem activity for anomalous behavior
  • Deploy endpoint detection solutions capable of identifying denial of service patterns

Monitoring Recommendations

  • Enable kernel soft lockup detection to identify infinite loop conditions early
  • Monitor system CPU metrics for unusual kernel-mode CPU consumption
  • Configure alerts for processes that remain in uninterruptible sleep states for extended periods
  • Review audit logs for repeated access attempts to rxrpc proc entries

How to Mitigate CVE-2026-31642

Immediate Actions Required

  • Apply the kernel patches from the official stable kernel branches immediately
  • Restrict access to /proc/net/rxrpc/calls if rxrpc functionality is not required
  • Consider disabling the rxrpc kernel module (CONFIG_AF_RXRPC) if not needed for your workload
  • Monitor systems for signs of exploitation until patches can be applied

Patch Information

Linux kernel maintainers have released patches across multiple stable branches. The following commits address this vulnerability:

  • Kernel Git Commit 146d4ab94cf1
  • Kernel Git Commit 3be718f65968
  • Kernel Git Commit 93fc15be44a3
  • Kernel Git Commit ac5f54691be0
  • Kernel Git Commit c63abf25203b

Update to the latest stable kernel version that includes these patches. Verify the patch status by checking the commit history of your kernel source or consulting your distribution's security advisories.

Workarounds

  • Disable the rxrpc kernel module if AFS (Andrew File System) functionality is not required: modprobe -r rxrpc
  • Restrict read access to /proc/net/rxrpc/calls using file permissions or SELinux/AppArmor policies
  • Implement resource limits to prevent CPU exhaustion from affecting critical system services
  • Use containerization with restricted capabilities to limit access to kernel proc interfaces
bash
# Disable rxrpc module if not needed
echo "blacklist rxrpc" >> /etc/modprobe.d/blacklist-rxrpc.conf
modprobe -r rxrpc

# Restrict proc access (if module cannot be removed)
chmod 400 /proc/net/rxrpc/calls

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • 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
  • CWE-835
  • Vendor Resources
  • Kernel Git Commit Update 1

  • Kernel Git Commit Update 2

  • Kernel Git Commit Update 3

  • Kernel Git Commit Update 4

  • Kernel Git Commit Update 5
  • Related CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43332: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43344: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43306: Linux Kernel Privilege Escalation Flaw
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 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