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

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

CVE-2026-43500 is a use-after-free vulnerability in the Linux Kernel's rxrpc subsystem affecting DATA/RESPONSE packet handling. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 18, 2026

CVE-2026-43500 Overview

CVE-2026-43500 is an out-of-bounds write vulnerability [CWE-787] in the Linux kernel's rxrpc subsystem. The flaw resides in the DATA and RESPONSE packet handlers, which only copy socket buffers (skb) to a linear form before invoking security operations when skb_cloned() returns true. Socket buffers carrying externally-owned paged fragments, including those produced by splice() into a UDP socket via __ip_append_data, bypass this check and reach the in-place decryption path. The AEAD/skcipher scatter-gather list then binds frag pages directly through skb_to_sgvec(), enabling memory corruption. A proof-of-concept named dirtyfrag is publicly available on GitHub.

Critical Impact

A local attacker with low privileges can corrupt kernel memory through crafted splice-loopback traffic, leading to privilege escalation or kernel compromise.

Affected Products

  • Linux Kernel (multiple stable branches)
  • Linux Kernel 5.3 (including rc7, rc8)
  • Linux Kernel 7.1 (including rc1, rc2)

Discovery Timeline

  • 2026-05-11 - CVE-2026-43500 published to NVD
  • 2026-05-17 - Last updated in NVD database

Technical Details for CVE-2026-43500

Vulnerability Analysis

The rxrpc subsystem implements the Rx remote procedure call protocol used by AFS. Inside rxrpc_input_call_event() and rxrpc_verify_response(), the kernel copies the incoming skb into a linear buffer before invoking the security operations. This unshare step is gated solely on skb_cloned(). When a socket buffer is not cloned but still references externally-owned page fragments, the gate does not trigger.

Such externally-shared fragments arise when splice() feeds data into a UDP socket via __ip_append_data, which sets the SKBFL_SHARED_FRAG flag. They also appear when a chained skb_has_frag_list() structure is present. The kernel proceeds to in-place decryption, mapping these foreign pages into the AEAD/skcipher scatter-gather list using skb_to_sgvec(). The cryptographic transform then writes plaintext back into pages that the attacker still controls and can mutate, producing a race-prone out-of-bounds write into memory the rxrpc path did not allocate.

Root Cause

The gating condition is incomplete. Only skb_cloned() is checked, ignoring shared paged fragments and frag lists. The fix extends the unshare gate to also fire when skb_has_frag_list() or skb_has_shared_frag() evaluates true, forcing a private linear copy before the crypto SGL is built.

Attack Vector

A local user creates a UDP socket bound to an rxrpc endpoint and uses splice() to attach attacker-controlled pages as shared fragments. The user transmits DATA or RESPONSE packets back to the local rxrpc listener. The in-place decryption operates on the still-shared pages, allowing concurrent modification by the attacker to interfere with the cryptographic state and corrupt kernel memory. The published dirtyfrag proof-of-concept demonstrates this splice-loopback technique. See the GitHub PoC Repository for technical details on the exploitation primitive.

Detection Methods for CVE-2026-43500

Indicators of Compromise

  • Local processes invoking splice() against UDP sockets associated with rxrpc/AFS endpoints on hosts that do not run AFS workloads.
  • Unexpected kernel oops, slab corruption, or KASAN reports referencing rxrpc_input_call_event, rxrpc_verify_response, or skb_to_sgvec.
  • Presence of the dirtyfrag binary or build artifacts cloned from the public proof-of-concept repository.

Detection Strategies

  • Audit installed kernel versions across the fleet and flag systems running kernels predating the patch commits 3eae0f4f, aa54b1d2, and d45179f8.
  • Monitor kernel ring buffer (dmesg) for crashes and warnings in the rxrpc input path, which indicate exploitation attempts or instability.
  • Use eBPF or auditd rules to record splice(2) syscalls targeting UDP socket file descriptors by non-AFS workloads.

Monitoring Recommendations

  • Forward kernel logs and process telemetry to a centralized analytics platform for correlation of splice() activity with crash signatures.
  • Track loading of the rxrpc and kafs kernel modules on hosts that should not require them and alert on unexpected use.
  • Baseline local privilege-escalation indicators such as new SUID processes or unexpected uid transitions following rxrpc activity.

How to Mitigate CVE-2026-43500

Immediate Actions Required

  • Apply the upstream stable patches to all affected kernels and reboot impacted systems.
  • Where patching is not immediately possible, blacklist the rxrpc kernel module on hosts that do not require AFS.
  • Restrict local shell access on multi-tenant systems and verify that untrusted users cannot load kernel modules.

Patch Information

The fix extends the unshare gate to also trigger when skb_has_frag_list() or skb_has_shared_frag() is true, forcing a linear copy before the security operations execute. The corrected paths preserve the zero-copy fast path for kernel-private fragments such as NIC page_pool RX and GRO. Reference the upstream commits: Kernel Patch Commit 3eae0f4, Kernel Patch Commit aa54b1d, and Kernel Patch Commit d45179f.

Workarounds

  • Unload and blacklist the rxrpc module on systems that do not use AFS or kAFS.
  • Disable unprivileged module autoloading by setting modules_disabled=1 after boot on hardened hosts.
  • Constrain splice() exposure by isolating untrusted local users with seccomp profiles or user namespaces that restrict UDP socket operations.
bash
# Configuration example: blacklist rxrpc and verify patched kernel
echo 'blacklist rxrpc' | sudo tee /etc/modprobe.d/blacklist-rxrpc.conf
sudo rmmod rxrpc 2>/dev/null || true
uname -r

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

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-787
  • Technical References
  • Kernel Patch Commit 3711382

  • Kernel Patch Commit 7c504ff

  • GitHub PoC Repository
  • Vendor Resources
  • Kernel Patch Commit 3eae0f4

  • Kernel Patch Commit aa54b1d

  • Kernel Patch Commit d45179f
  • Related CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

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

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

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