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

CVE-2026-31632: Linux Kernel Information Disclosure Flaw

CVE-2026-31632 is an information disclosure vulnerability in the Linux Kernel caused by a leak of rxgk context in rxgk_verify_response(). This article covers the technical details, affected versions, and mitigation.

Published: April 30, 2026

CVE-2026-31632 Overview

CVE-2026-31632 is a memory leak vulnerability in the Linux kernel's rxrpc subsystem. Specifically, the rxgk_verify_response() function fails to properly clean up the rxgk context it creates, leading to memory resource exhaustion over time. This vulnerability affects the RxRPC protocol implementation used for secure network communications, particularly in AFS (Andrew File System) environments.

Critical Impact

Local attackers with low privileges can exploit this memory leak to cause denial of service conditions by exhausting system memory resources through repeated triggering of the vulnerable code path.

Affected Products

  • Linux Kernel versions 6.15.x through 6.16
  • Linux Kernel 7.0 Release Candidates (rc1 through rc7)
  • Linux Kernel systems using rxrpc/rxgk authentication

Discovery Timeline

  • 2026-04-24 - CVE-2026-31632 published to NVD
  • 2026-04-27 - Last updated in NVD database

Technical Details for CVE-2026-31632

Vulnerability Analysis

This vulnerability is classified as CWE-401 (Missing Release of Memory after Effective Lifetime). The rxgk_verify_response() function in the Linux kernel's rxrpc subsystem creates an rxgk security context during the authentication response verification process. However, under certain error conditions or normal execution paths, this context is not properly freed before the function returns.

The rxgk (RxRPC GSS-API) security mechanism is used to provide authenticated and encrypted communications for services like AFS. When the verification function allocates memory for the context structure but fails to release it, this memory becomes unreachable and cannot be reclaimed by the system.

Root Cause

The root cause is a missing cleanup routine in the rxgk_verify_response() function. When the function creates an rxgk context to verify an incoming authentication response, it allocates kernel memory. If the verification process encounters an error or completes without properly deallocating this context, the memory remains allocated indefinitely. This represents a classic resource leak pattern where memory allocation is not paired with corresponding deallocation in all code paths.

Attack Vector

The vulnerability requires local access to the system with low privileges. An attacker can exploit this by repeatedly triggering the rxgk verification process, causing incremental memory consumption that eventually leads to system instability or denial of service.

The attack does not require user interaction and does not affect the confidentiality or integrity of the system—the impact is limited to availability. A local user or process that can initiate rxrpc connections could systematically trigger the memory leak by forcing authentication verification attempts, gradually depleting available kernel memory.

Detection Methods for CVE-2026-31632

Indicators of Compromise

  • Gradual increase in kernel memory usage without corresponding process activity
  • System logs showing memory allocation failures or out-of-memory conditions
  • Degraded system performance correlating with rxrpc/AFS authentication activity
  • Elevated MemFree depletion in /proc/meminfo over extended periods

Detection Strategies

  • Monitor kernel slab allocator statistics for growing unreclaimable memory allocations
  • Implement memory usage trending alerts for systems running AFS or rxrpc-dependent services
  • Use kernel debugging tools like kmemleak to identify memory leaks in the rxgk subsystem
  • Review system logs for rxrpc-related error messages or authentication failures

Monitoring Recommendations

  • Configure alerting thresholds for abnormal kernel memory growth patterns
  • Deploy continuous monitoring of systems using rxrpc authentication mechanisms
  • Implement baseline memory usage metrics to detect gradual resource exhaustion
  • Schedule periodic system reboots as a temporary mitigation for systems awaiting patches

How to Mitigate CVE-2026-31632

Immediate Actions Required

  • Apply the official kernel patches from the Linux kernel stable tree immediately
  • Prioritize patching systems that rely heavily on AFS or rxrpc communications
  • Consider temporarily disabling rxgk authentication if not critical to operations
  • Monitor affected systems for memory exhaustion symptoms until patches are applied

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix ensures proper cleanup of the rxgk context in all code paths within rxgk_verify_response().

Available patches:

  • Kernel Patch 1bd3d01
  • Kernel Patch 4b5e836
  • Kernel Patch 7e1876ca

Workarounds

  • Implement scheduled system reboots to reclaim leaked memory on critical systems
  • Limit access to rxrpc services to trusted users and networks only
  • Monitor and alert on memory consumption thresholds to detect exploitation attempts
  • Consider disabling the rxgk security mechanism if alternative authentication methods are available
bash
# Check current kernel version for vulnerability status
uname -r

# Monitor kernel memory usage for leak detection
watch -n 60 'cat /proc/meminfo | grep -E "MemFree|Slab|SUnreclaim"'

# Check if rxrpc module is loaded
lsmod | grep rxrpc

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLinux

  • 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-401
  • Vendor Resources
  • Kernel Patch 1bd3d01

  • Kernel Patch 4b5e836

  • Kernel Patch 7e1876ca
  • Related CVEs
  • CVE-2026-31461: Linux Kernel Information Disclosure

  • CVE-2026-23418: Linux Kernel Information Disclosure Flaw

  • CVE-2025-59105: Flash Memory Information Disclosure Flaw

  • CVE-2024-50302: Android HID Core Information Disclosure
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