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-2026-23335

CVE-2026-23335: Linux Kernel Information Disclosure Bug

CVE-2026-23335 is an information disclosure vulnerability in the Linux kernel RDMA/irdma driver that leaks 4 bytes of kernel stack memory. This article covers the technical details, affected versions, and mitigation strategies.

Published: March 27, 2026

CVE-2026-23335 Overview

A kernel stack memory leak vulnerability has been identified in the Linux kernel's RDMA/irdma driver within the irdma_create_user_ah() function. The vulnerability stems from uninitialized reserved memory fields in the irdma_create_ah_resp structure being leaked to userspace when responding to Address Handle creation requests.

Critical Impact

Kernel stack memory information disclosure that could leak sensitive kernel data to unprivileged userspace applications, potentially exposing memory layout information useful for further exploitation.

Affected Products

  • Linux Kernel with RDMA/irdma driver enabled
  • Systems using Intel Ethernet Connection E810 or similar devices with RDMA support
  • Multiple Linux kernel stable branches (patches available across several versions)

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23335 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23335

Vulnerability Analysis

The vulnerability exists in the irdma_create_user_ah() function within the Linux kernel's RDMA/irdma driver. The irdma_create_ah_resp structure is an 8-byte structure containing a 4-byte ah_id field at offset 0 and a 4-byte reserved field rsvd[4] at offset 4.

When creating a user Address Handle, the code properly initializes the ah_id field with uresp.ah_id = ah->sc_ah.ah_info.ah_idx, but fails to initialize or zero the reserved rsvd[4] bytes before calling ib_respond_udata(). This results in 4 bytes of uninitialized kernel stack memory being unconditionally leaked to userspace with every Address Handle creation request.

Root Cause

The root cause is a failure to properly initialize all members of the response structure before copying it to userspace. The irdma_create_ah_resp structure contains reserved padding bytes that were intended for future use or alignment purposes, but were never zeroed before transmission. This is a common class of information disclosure bug in kernel code where response structures contain gaps or reserved fields that aren't explicitly initialized.

Attack Vector

An attacker with local access and the ability to interact with the RDMA subsystem (typically requiring appropriate permissions or membership in the rdma group) can repeatedly trigger Address Handle creation operations to harvest leaked kernel stack memory. The leaked data could potentially contain:

  • Kernel pointer values useful for defeating KASLR (Kernel Address Space Layout Randomization)
  • Residual data from previous kernel operations
  • Sensitive information that happened to reside on the stack

The vulnerability requires local access to systems with RDMA/irdma driver loaded and enabled, limiting the attack surface to systems with Intel RDMA-capable network hardware.

Detection Methods for CVE-2026-23335

Indicators of Compromise

  • Unusual patterns of RDMA Address Handle creation requests from userspace applications
  • High-frequency calls to irdma_create_user_ah() from non-standard applications
  • Processes attempting to read or analyze RDMA response data that don't typically use RDMA functionality

Detection Strategies

  • Monitor for unexpected RDMA subsystem activity on systems not designated for RDMA workloads
  • Implement kernel auditing to track ib_respond_udata() calls and associated processes
  • Use kernel tracing (ftrace/eBPF) to detect anomalous patterns in irdma driver function calls
  • Review system logs for RDMA-related errors or unexpected Address Handle operations

Monitoring Recommendations

  • Enable RDMA subsystem logging and audit trails on affected systems
  • Deploy endpoint detection solutions capable of monitoring kernel driver interactions
  • Establish baseline RDMA usage patterns to identify anomalous behavior
  • Consider implementing SentinelOne's Singularity platform for real-time kernel-level threat detection

How to Mitigate CVE-2026-23335

Immediate Actions Required

  • Apply the available kernel patches from the Linux kernel stable repositories
  • If patching is not immediately possible, consider disabling the irdma driver on systems not requiring RDMA functionality
  • Review system access controls to limit which users can interact with the RDMA subsystem
  • Monitor affected systems for any signs of exploitation attempts

Patch Information

Multiple patches have been released to address this vulnerability across different Linux kernel stable branches. The fix involves properly zeroing the response structure before populating and transmitting it to userspace. The following patches are available:

  • Kernel Patch 14b47c07
  • Kernel Patch 1b1fac4c
  • Kernel Patch 2fd37450
  • Kernel Patch 74586c6d
  • Kernel Patch c9bd0007
  • Kernel Patch cfe96221

Workarounds

  • Unload or blacklist the irdma kernel module on systems not requiring RDMA functionality
  • Restrict access to the RDMA subsystem using appropriate user permissions and group membership controls
  • Implement network segmentation to limit exposure of RDMA-enabled systems
  • Use kernel lockdown mode where supported to limit kernel memory exposure
bash
# Disable irdma driver if not required
sudo modprobe -r irdma
# Blacklist the module to prevent automatic loading
echo "blacklist irdma" | sudo tee /etc/modprobe.d/blacklist-irdma.conf
# Update initramfs to apply blacklist
sudo update-initramfs -u

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 Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Patch 14b47c07

  • Kernel Patch 1b1fac4c

  • Kernel Patch 2fd37450

  • Kernel Patch 74586c6d

  • Kernel Patch c9bd0007

  • Kernel Patch cfe96221
  • Related CVEs
  • CVE-2026-23303: Linux Kernel Information Disclosure Flaw

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

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

  • CVE-2026-23289: Linux Kernel Information Disclosure Flaw
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