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-2025-71133

CVE-2025-71133: Linux Kernel Buffer Overflow Vulnerability

CVE-2025-71133 is a buffer overflow flaw in the Linux kernel's RDMA/irdma module that causes invalid memory reads. This post covers the technical details, affected kernel versions, security impact, and mitigation steps.

Published: January 23, 2026

CVE-2025-71133 Overview

CVE-2025-71133 is an out-of-bounds read vulnerability in the Linux kernel's RDMA/irdma driver. The vulnerability exists in the irdma_net_event() function, which improperly dereferences the neigh pointer before verifying the event type. When network events other than NETEVENT_NEIGH_UPDATE are received, the pointer may reference smaller structures, leading to invalid memory reads.

The flaw was identified through KASAN (Kernel Address SANitizer) on debug kernels, which flagged a stack-out-of-bounds read at irdma_net_event+0x32e/0x3b0. While the vulnerability is described as "mostly harmless" in the kernel patch notes, it represents improper memory access that could potentially be leveraged in more sophisticated attack chains.

Critical Impact

Improper memory access in the Linux kernel's RDMA/irdma driver could trigger kernel crashes on debug systems and may expose sensitive kernel memory information under specific conditions.

Affected Products

  • Linux kernel with RDMA/irdma driver enabled
  • Systems running kernel version 5.14.0-630.el9.x86_64+debug (confirmed affected)
  • Enterprise Linux distributions with irdma module loaded

Discovery Timeline

  • 2026-01-14 - CVE-2025-71133 published to NVD
  • 2026-01-19 - Last updated in NVD database

Technical Details for CVE-2025-71133

Vulnerability Analysis

The vulnerability stems from a failure to validate the event type before dereferencing the ptr parameter in the irdma_net_event() network event callback function. In the Linux kernel's network notifier system, different event types pass different structures through the generic ptr parameter. The NETEVENT_NEIGH_UPDATE event passes a struct neighbour, while other events may pass smaller structures or entirely different data types.

The problematic code accessed neigh->dev (where neigh is cast from ptr) before confirming the event was NETEVENT_NEIGH_UPDATE. When events such as rt6_do_redirect trigger the notifier chain, smaller structures are passed, and the read of neigh->dev extends beyond the actual structure boundaries, resulting in a stack-out-of-bounds read.

The KASAN report shows this occurs during IPv6 route operations, specifically in the rt6_probe_deferred workqueue when processing ICMPv6 redirect messages through the ndisc_redirect_rcv path.

Root Cause

The root cause is improper input validation in the irdma_net_event() function. The function assumes the ptr parameter always points to a struct neighbour and immediately dereferences it to access the dev member. However, the network event notifier system uses this same callback for multiple event types, each with its own data structure format.

The fix involves moving the neigh->dev dereference inside the NETEVENT_NEIGH_UPDATE case block, ensuring the pointer is only treated as a struct neighbour when the event type guarantees that structure is being passed.

Attack Vector

This vulnerability is triggered locally through the kernel's network event notification system. The attack vector involves:

  1. The system receives an ICMPv6 packet that triggers an IPv6 route redirect
  2. The ndisc_redirect_rcv() function processes the redirect
  3. The redirect handling triggers rt6_do_redirect() which calls the network event notifier chain
  4. The irdma_net_event() callback receives an event with a structure smaller than struct neighbour
  5. The premature dereference of ptr as neigh->dev reads beyond the actual structure's memory bounds

While exploitability for privilege escalation or code execution is limited, the memory disclosure implications on production systems should be evaluated. The vulnerability requires the irdma kernel module to be loaded and active network traffic involving IPv6 routing.

The vulnerability manifests in the network event handling path within the irdma driver. The fix relocates the dereference of neigh->dev to occur only after event type validation. See the kernel git commit for technical implementation details.

Detection Methods for CVE-2025-71133

Indicators of Compromise

  • KASAN reports in kernel logs indicating stack-out-of-bounds reads in irdma_net_event
  • Kernel warning messages referencing irdma_net_event+0x32e/0x3b0 or similar offsets
  • System instability during IPv6 route operations or ICMPv6 redirect processing
  • Unexpected kernel oops or panics when RDMA operations coincide with network routing changes

Detection Strategies

  • Monitor kernel logs for KASAN violations referencing the irdma module
  • Deploy kernel debugging tools to capture memory access violations in RDMA subsystems
  • Use runtime kernel integrity checking to detect anomalous memory access patterns
  • Implement audit logging for irdma module operations and network event callbacks

Monitoring Recommendations

  • Enable KASAN on test/staging systems to proactively detect similar memory access issues
  • Monitor dmesg output for stack traces involving irdma_net_event and network notifier chains
  • Track ICMPv6 redirect activity rates that could indicate exploitation attempts
  • Implement alerting on kernel module crash events involving the irdma driver

How to Mitigate CVE-2025-71133

Immediate Actions Required

  • Update to a patched Linux kernel version that includes the irdma fix
  • If immediate patching is not possible, consider temporarily unloading the irdma module on non-RDMA systems
  • Review systems for evidence of exploitation using the detection methods above
  • Prioritize patching on systems with RDMA workloads and IPv6 networking enabled

Patch Information

Multiple kernel git commits address this vulnerability. The fix moves the neigh->dev read operation under the NETEVENT_NEIGH_UPDATE case statement to ensure proper event type validation before dereferencing.

Relevant patches are available from the kernel git repository:

  • Kernel Git Commit Fix
  • Kernel Git Commit Patch
  • Kernel Git Commit Update
  • Kernel Git Commit Improvement
  • Kernel Git Commit Change
  • Kernel Git Commit Revision

Workarounds

  • Unload the irdma kernel module if RDMA functionality is not required: modprobe -r irdma
  • Blacklist the irdma module to prevent automatic loading on systems not using RDMA
  • Implement network segmentation to limit exposure of affected systems to untrusted IPv6 traffic
  • Monitor and restrict ICMPv6 redirect messages at the network perimeter
bash
# Temporary workaround: Unload irdma module if not in use
sudo modprobe -r irdma

# Blacklist irdma module to prevent automatic loading
echo "blacklist irdma" | sudo tee /etc/modprobe.d/blacklist-irdma.conf
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
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.03%

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

  • Kernel Git Commit Fix

  • Kernel Git Commit Patch

  • Kernel Git Commit Improvement

  • Kernel Git Commit Change

  • Kernel Git Commit Revision
  • Related CVEs
  • CVE-2026-31449: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31512: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31438: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31450: Linux Kernel Buffer Overflow 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