A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-43125

CVE-2026-43125: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-43125 is a buffer overflow vulnerability in the Linux kernel's DLM component that allows out-of-bounds writes through unvalidated network messages. This article covers technical details, affected versions, and mitigations.

Published: May 7, 2026

CVE-2026-43125 Overview

CVE-2026-43125 is a Linux kernel vulnerability in the Distributed Lock Manager (DLM) subsystem. The flaw resides in the dlm_search_rsb_tree() function, where the len parameter passed to dlm_dump_rsb_name() is not validated. The length value originates from network messages, allowing a remote source to control it. When the supplied length exceeds DLM_RESNAME_MAXLEN, the kernel performs an out-of-bounds write. The upstream fix introduces explicit length validation before the buffer write occurs.

Critical Impact

Network-supplied length values can trigger an out-of-bounds write in kernel memory, leading to potential memory corruption, kernel panics, or denial of service in clustered Linux environments using DLM.

Affected Products

  • Linux kernel versions containing the unpatched dlm_search_rsb_tree() implementation
  • Distributions deploying DLM for clustered file systems such as GFS2 and OCFS2
  • Server clusters that exchange DLM messages over the network

Discovery Timeline

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

Technical Details for CVE-2026-43125

Vulnerability Analysis

The Linux kernel DLM subsystem coordinates locking across nodes in a cluster. Nodes exchange resource state through network messages that include a resource name and its length. The function dlm_dump_rsb_name() accepts a len parameter sourced from these network messages and passes it into dlm_search_rsb_tree() without bounds checking.

When len exceeds the constant DLM_RESNAME_MAXLEN, the downstream code writes past the end of the destination buffer. This produces an out-of-bounds write [CWE-787] in kernel space. Successful exploitation can corrupt adjacent kernel data structures, destabilize the cluster node, or create conditions for further memory-safety abuse.

The upstream patch resolves the issue by validating the length before the buffer write, rejecting any value greater than DLM_RESNAME_MAXLEN. Fix commits include 080e5563f878, 082083c9fbd9, 5f053a2e7209, and 67288113c5e6.

Root Cause

The root cause is missing input validation on a length field that crosses a trust boundary. Network-derived data is treated as bounded without any check that it actually fits inside the kernel buffer. The DLM message handler must enforce that lock resource names cannot exceed DLM_RESNAME_MAXLEN.

Attack Vector

An attacker capable of sending DLM protocol messages to a target cluster node can craft a packet containing an oversized length field. Because DLM communication occurs between trusted cluster peers, the practical attack surface depends on network segmentation. A compromised cluster member, a host with access to the cluster interconnect, or a misconfigured network exposing DLM ports can deliver the malicious message. See the Linux kernel patch commit for technical details on the fix path.

Detection Methods for CVE-2026-43125

Indicators of Compromise

  • Unexpected kernel oops or panic messages referencing dlm_search_rsb_tree or dlm_dump_rsb_name in dmesg or /var/log/messages
  • Cluster node reboots or fencing events correlated with inbound DLM traffic on TCP/SCTP port 21064
  • Malformed DLM protocol messages observed by network monitoring on cluster interconnects

Detection Strategies

  • Inspect kernel crash dumps and stack traces for fault addresses inside the DLM subsystem
  • Compare running kernel versions against distribution advisories that reference the listed fix commits
  • Use eBPF or audit tracing on dlm_dump_rsb_name() entry to flag length values exceeding DLM_RESNAME_MAXLEN

Monitoring Recommendations

  • Capture and review DLM traffic on cluster networks to identify oversized resource name fields
  • Centralize kernel logs from all cluster members and alert on DLM-related warnings or backtraces
  • Track patch state across the cluster, ensuring all nodes run a kernel that includes the validation fix

How to Mitigate CVE-2026-43125

Immediate Actions Required

  • Apply the latest stable kernel update from your Linux distribution that incorporates the DLM length validation fix
  • Restrict DLM communication to trusted cluster interconnects using firewall rules or dedicated VLANs
  • Audit which hosts have network reachability to DLM ports and remove unnecessary access

Patch Information

The fix is delivered through the upstream Linux kernel commits 080e5563f878, 082083c9fbd9, 5f053a2e7209, and 67288113c5e6. The patch adds a length validation check so that values larger than DLM_RESNAME_MAXLEN are rejected before the buffer write. Consult your distribution vendor for backported kernel packages.

Workarounds

  • Isolate cluster traffic on a private network segment with no external reachability to DLM ports
  • Disable DLM-dependent services such as GFS2 or OCFS2 on systems where clustered locking is not required
  • Enforce host-based firewall rules limiting DLM peers to known cluster member IP addresses
bash
# Example: restrict DLM port 21064 to known cluster peers
iptables -A INPUT -p tcp --dport 21064 -s 10.0.0.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 21064 -j DROP

# Verify running kernel includes the DLM fix
uname -r
rpm -q --changelog kernel | grep -i "dlm_search_rsb_tree"

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.02%

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

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-46263: Linux Kernel Buffer Overflow Vulnerability

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

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

  • CVE-2026-46237: Linux Kernel Buffer Overflow Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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