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

CVE-2026-43184: Linux Kernel Information Leak Vulnerability

CVE-2026-43184 is an information disclosure flaw in the Linux kernel's rnbd-srv component that could expose sensitive data through uninitialized memory. This article covers the technical details, affected systems, and patches.

Published: May 7, 2026

CVE-2026-43184 Overview

CVE-2026-43184 is a Linux kernel vulnerability in the rnbd-srv (Remote Network Block Device server) component. The flaw allows uninitialized memory contents to leak across the wire when the server constructs response messages. Before the fix, the server reused a response buffer without zeroing it, so stray bytes from previous kernel memory could be transmitted to the client. The issue is most observable when client and server negotiate different protocol versions, where unused fields in the response structure may be read by the peer. Maintainers resolved the issue by zeroing the response buffer completely before populating it.

Critical Impact

Uninitialized kernel memory may be transmitted from an rnbd-srv host to connected clients, enabling cross-version protocol information disclosure.

Affected Products

  • Linux kernel builds that compile and load the rnbd-srv module
  • Storage hosts exporting block devices over RDMA via RNBD
  • Distributions tracking linux-stable prior to the listed fix commits

Discovery Timeline

  • 2026-05-06 - CVE-2026-43184 published to NVD
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43184

Vulnerability Analysis

The RDMA Network Block Device server (rnbd-srv) responds to client requests by writing structured messages into a response buffer and shipping them back over an RDMA transport. The server allocated or reused this buffer without first clearing its contents. As a result, any field the server did not explicitly populate retained whatever bytes were previously resident in that memory region. When the client parsed the response, those stray bytes were interpreted as legitimate protocol fields. The patch enforces a full zeroing of the response buffer prior to use, which guarantees that unset fields default to zero and removes the cross-message data carryover.

Root Cause

The defect is an instance of uninitialized memory use in a kernel-to-client data path [CWE-908]. The response structure contains fields whose presence depends on the negotiated protocol version. When a server running a newer protocol responded to a client speaking an older version, fields the older client did not understand were left untouched but still serialized into the on-wire buffer.

Attack Vector

A client connected to a vulnerable rnbd-srv instance receives response messages whose unused regions contain fragments of kernel slab memory. Exploitation requires an established RNBD session, so the attacker must have network reachability and the credentials or configuration needed to attach to an exported device. The leaked content is non-deterministic and depends on prior kernel allocator activity.

No public proof-of-concept code or exploitation in the wild has been reported. See the upstream commits (30868a6, 69d2669, 7aac0a3, 8524752, b646e54, c94ede3, e2cacec, e427275) for the implemented fix.

Detection Methods for CVE-2026-43184

Indicators of Compromise

  • Loaded rnbd_server kernel module on hosts exporting block storage over RDMA without the upstream fix applied
  • RNBD client logs reporting unexpected or non-zero values in reserved or version-dependent response fields
  • Mixed protocol versions between rnbd-srv and rnbd-clt peers in the same deployment

Detection Strategies

  • Inventory hosts that load rnbd_server and compare running kernel versions against the patched stable releases referenced by the upstream commits
  • Audit RDMA fabric participants to identify any system running rnbd-srv whose uname -r predates distribution backports of this fix
  • Correlate dmesg and module load events with security telemetry to flag unpatched RNBD servers in production

Monitoring Recommendations

  • Track kernel package versions across the fleet and alert on hosts that fall behind the vendor-supplied patched release
  • Monitor RNBD session establishment for unusual client-server version mismatches that would maximize exposure of unset response fields
  • Forward kernel and module telemetry to a centralized data lake to support retrospective hunts once patches are deployed

How to Mitigate CVE-2026-43184

Immediate Actions Required

  • Apply the kernel update from your Linux distribution that incorporates the upstream rnbd-srv zeroing fix
  • Restrict RNBD exports to trusted RDMA fabrics and authenticated peers until patching is complete
  • Where RNBD is not in use, unload the rnbd_server module and blacklist it to remove the attack surface entirely

Patch Information

The fix zeros the response buffer before the server populates it, eliminating the cross-version data carryover. The change has been merged across multiple stable branches. Refer to the upstream commits listed under Attack Vector for the exact patch content and to determine which stable kernel series contain the backport.

Workarounds

  • Unload rnbd_server with modprobe -r rnbd_server on hosts that do not require remote block export
  • Limit RDMA reachability to the storage server using fabric-level access controls or network segmentation
  • Align client and server protocol versions to reduce the size of unused response regions exposed during the window before patching
bash
# Verify whether the rnbd-srv module is loaded and disable it if unused
lsmod | grep rnbd_server
modprobe -r rnbd_server
echo "blacklist rnbd_server" | sudo tee /etc/modprobe.d/blacklist-rnbd.conf

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

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

  • Kernel Git Commit 69d2669

  • Kernel Git Commit 7aac0a3

  • Kernel Git Commit 8524752

  • Kernel Git Commit b646e54

  • Kernel Git Commit c94ede3

  • Kernel Git Commit e2cacec

  • Kernel Git Commit e427275
  • Related CVEs
  • CVE-2026-31744: Linux Kernel NULL Pointer Vulnerability

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

  • CVE-2026-31752: Linux Kernel ND Option Vulnerability

  • CVE-2026-31738: Linux Kernel VXLAN Option Validation Flaw
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