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

CVE-2026-43481: Linux Kernel Use-After-Free Vulnerability

CVE-2026-43481 is a use-after-free flaw in the Linux kernel's net-shapers component that can cause memory corruption. This post explains the technical details, affected versions, potential impact, and mitigation.

Published: May 17, 2026

CVE-2026-43481 Overview

CVE-2026-43481 is a Linux kernel vulnerability in the net-shapers generic netlink (genetlink) subsystem. The flaw is a double-free condition in the reply socket buffer (skb) handling path. Specifically, net_shaper_nl_get_doit() and net_shaper_nl_cap_get_doit() jump to a free_msg label after genlmsg_reply() returns an error, then call nlmsg_free(msg) on a buffer that netlink_unicast() already consumed. The kernel maintainers resolved the issue by returning the genlmsg_reply() error directly and reserving free_msg for pre-reply failures.

Critical Impact

A double-free on a netlink reply skb can corrupt kernel slab metadata, leading to memory corruption, kernel panic, or potential local privilege escalation paths.

Affected Products

  • Linux kernel versions containing the net-shapers genetlink handlers net_shaper_nl_get_doit() and net_shaper_nl_cap_get_doit()
  • Distributions shipping the affected stable kernel branches prior to the referenced fix commits
  • Systems exposing the net-shapers genetlink interface to local users

Discovery Timeline

  • 2026-05-13 - CVE-2026-43481 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-43481

Vulnerability Analysis

The vulnerability is a Double Free [CWE-415] in the Linux kernel's net-shapers generic netlink handlers. The functions net_shaper_nl_get_doit() and net_shaper_nl_cap_get_doit() build a reply skb, pass it to genlmsg_reply(), and on error jump to a cleanup label that calls nlmsg_free(msg). This logic is incorrect because genlmsg_reply() delegates ownership of the skb to netlink_unicast().

netlink_unicast() consumes the skb on every return path. Whether the message is queued to the receiving socket or freed on error, the caller must not free the buffer again. The cleanup path therefore operates on a skb that has already been released.

Root Cause

The root cause is incorrect ownership handling of the netlink reply skb after a transfer-of-ownership API call. The free_msg label was reused for both pre-reply allocation failures and post-reply error returns. Only the pre-reply case still owns the buffer. The fix splits these paths and returns the genlmsg_reply() error directly without freeing.

Attack Vector

An unprivileged local process that can open an AF_NETLINK socket and issue net-shapers genetlink commands can trigger the affected handlers. Forcing genlmsg_reply() into its error path causes the kernel to free the same slab object twice. Repeated triggering can be used to corrupt the SLUB freelist and pivot toward arbitrary kernel memory write primitives. No remote attack vector is described in the upstream commit.

No verified public exploit code is available. The vulnerability is described in prose only; see the referenced stable tree commits for the exact diff.

Detection Methods for CVE-2026-43481

Indicators of Compromise

  • Kernel oops or panic messages referencing nlmsg_free, skb_release_data, or kfree with SLUB double-free diagnostics
  • KASAN: double-free or BUG: KASAN: use-after-free reports involving netlink reply paths
  • Unexpected crashes in processes invoking net-shapers genetlink families

Detection Strategies

  • Enable CONFIG_SLUB_DEBUG and CONFIG_KASAN on test kernels to surface double-free conditions during fuzzing of the netlink interface
  • Monitor dmesg and /var/log/kern.log for slab corruption signatures correlated with net-shapers usage
  • Audit running kernel versions against the fixed commit hashes 57885276cc16, 83f7b54242d0, and 8738dcc844ff

Monitoring Recommendations

  • Track local processes opening NETLINK_GENERIC sockets and issuing net-shaper family commands using auditd rules on the socket and sendmsg syscalls
  • Forward kernel ring buffer messages to a centralized log pipeline and alert on slab or KASAN signatures
  • Maintain an inventory of kernel build versions across the fleet to identify hosts still running pre-patch kernels

How to Mitigate CVE-2026-43481

Immediate Actions Required

  • Apply the upstream stable kernel updates that include commits 57885276cc16a2e2b76282c808a4e84cbecb3aae, 83f7b54242d0abbfce35a55c01322f50962ed3ee, and 8738dcc844fff7d0157ee775230e95df3b1884d7
  • Rebuild and reboot affected hosts after installing the patched kernel package from your distribution
  • Restrict shell access on multi-tenant systems until patches are deployed

Patch Information

The fix returns the genlmsg_reply() error directly from both net_shaper_nl_get_doit() and net_shaper_nl_cap_get_doit(). The free_msg label is retained only for failure paths that occur before ownership of the skb is transferred. Patch references: Kernel commit 57885276cc16, Kernel commit 83f7b54242d0, and Kernel commit 8738dcc844ff.

Workarounds

  • Where patching is not yet possible, restrict use of CAP_NET_ADMIN and limit local accounts that can interact with generic netlink families
  • Consider seccomp profiles for untrusted workloads that deny socket(AF_NETLINK, ...) calls
  • Disable or unload kernel modules exposing the net-shapers interface in environments where the feature is unused

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43500: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43333: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43335: Linux Kernel Use-After-Free 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