Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-31491

CVE-2026-31491: Linux Kernel RDMA Integer Overflow Flaw

CVE-2026-31491 is an integer overflow vulnerability in the Linux kernel RDMA/irdma component that can cause improper depth calculations for SQ/RQ/SRQ sizes. This article covers technical details, affected systems, and patches.

Published: April 23, 2026

CVE-2026-31491 Overview

A vulnerability has been identified in the Linux kernel's RDMA/irdma driver where integer overflow and truncation can occur in depth calculation functions. When the operating system passes U32_MAX values for SQ (Send Queue), RQ (Receive Queue), or SRQ (Shared Receive Queue) sizes, the affected functions may return success when they should have failed, potentially leading to memory corruption or unexpected system behavior.

Critical Impact

Integer overflow in RDMA queue depth calculations can lead to memory corruption, system instability, and potential privilege escalation in systems utilizing Intel RDMA-capable network adapters.

Affected Products

  • Linux Kernel (irdma driver)
  • Systems using Intel RDMA-capable Ethernet adapters
  • RDMA/InfiniBand deployments with affected kernel versions

Discovery Timeline

  • 2026-04-22 - CVE CVE-2026-31491 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-31491

Vulnerability Analysis

The vulnerability resides in the RDMA/irdma kernel driver, specifically within functions responsible for calculating queue depths for Send Queues (SQ), Receive Queues (RQ), and Shared Receive Queues (SRQ). When these functions receive U32_MAX (4,294,967,295) as input for queue size parameters, an integer overflow occurs during depth calculations.

The core issue stems from performing arithmetic operations on 32-bit unsigned integers without proper bounds checking. When the calculation results exceed the maximum representable value in a 32-bit integer, the value wraps around (truncates), causing the function to incorrectly report success for invalid configurations. This can result in undersized queue allocations that may be exploited through subsequent RDMA operations.

Root Cause

The root cause is insufficient input validation and the use of 32-bit integer arithmetic for queue depth calculations where 64-bit arithmetic is required. The depth calculation functions lacked proper boundary checking, allowing integer overflow conditions when processing maximally-sized input values. The fix hardens these functions to perform all depth calculations and boundary checking using u64 (64-bit unsigned integer) sizes, preventing overflow and ensuring accurate validation of queue size requests.

Attack Vector

An attacker with local access and the ability to interact with the RDMA subsystem could exploit this vulnerability by submitting RDMA queue creation requests with specially crafted size parameters (specifically U32_MAX values). This could lead to:

  1. Memory corruption due to undersized queue allocations
  2. Denial of service through kernel crashes or hangs
  3. Potential privilege escalation if corrupted memory regions can be controlled

The vulnerability requires local access to systems with Intel RDMA-capable network adapters and appropriate permissions to interact with the RDMA subsystem. While exploitation requires specific conditions, RDMA is commonly used in high-performance computing and data center environments where such access may be available.

Detection Methods for CVE-2026-31491

Indicators of Compromise

  • Unexpected kernel panics or crashes related to the irdma driver
  • Abnormal RDMA queue creation requests with unusually large size parameters
  • Memory corruption signatures in kernel logs referencing irdma or RDMA subsystems
  • System instability on hosts with Intel RDMA-capable network adapters

Detection Strategies

  • Monitor kernel logs for irdma driver errors or warnings related to queue depth calculations
  • Implement system call auditing for RDMA-related operations with boundary value parameters
  • Deploy kernel integrity monitoring to detect signs of memory corruption
  • Use SentinelOne Singularity Platform to detect anomalous kernel behavior patterns

Monitoring Recommendations

  • Enable verbose logging for the irdma driver module during security investigations
  • Configure alerting for kernel oops or panic events involving RDMA subsystems
  • Monitor for unusual patterns in RDMA device access from non-privileged processes
  • Implement baseline monitoring for RDMA queue creation frequencies and sizes

How to Mitigate CVE-2026-31491

Immediate Actions Required

  • Apply the latest Linux kernel patches that include the hardened depth calculation functions
  • If patching is not immediately possible, consider temporarily disabling the irdma driver on non-critical systems
  • Review and restrict access to RDMA interfaces to authorized users and processes only
  • Monitor affected systems for signs of exploitation until patches can be applied

Patch Information

The vulnerability has been addressed through kernel commits that harden the depth calculation functions to use 64-bit arithmetic. The following commits contain the fix:

  • Kernel Git Commit 3f08351d
  • Kernel Git Commit cbd852f5
  • Kernel Git Commit e37afcb5

Update to a kernel version that includes these commits to remediate the vulnerability.

Workarounds

  • Restrict access to RDMA devices using Linux access controls and device cgroups
  • Unload the irdma kernel module if RDMA functionality is not required: modprobe -r irdma
  • Implement network segmentation to limit exposure of RDMA-capable systems
  • Use SELinux or AppArmor policies to restrict processes that can interact with RDMA interfaces
bash
# Configuration example
# Temporarily disable the irdma driver if RDMA is not required
sudo modprobe -r irdma

# Blacklist the module to prevent automatic loading
echo "blacklist irdma" | sudo tee /etc/modprobe.d/blacklist-irdma.conf

# Verify module is not loaded
lsmod | grep irdma

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit 3f08351d

  • Kernel Git Commit cbd852f5

  • Kernel Git Commit e37afcb5
  • Related CVEs
  • CVE-2026-31439: Linux Kernel XDMA Error Handling Flaw

  • CVE-2026-31441: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31434: Linux Kernel Memory Leak Vulnerability

  • CVE-2026-31435: Linux Kernel Read Abandonment 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