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

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

CVE-2026-43101 is a use-after-free vulnerability in the Linux kernel's IPv6 IOAM implementation that could lead to NULL pointer dereferences. This article covers technical details, affected versions, impact, and mitigation.

Published: May 7, 2026

CVE-2026-43101 Overview

CVE-2026-43101 is a NULL pointer dereference vulnerability in the Linux kernel's IPv6 In-situ Operations, Administration, and Maintenance (IOAM) implementation. The flaw resides in the __ioam6_fill_trace_data() function, which fails to verify the return value of __in6_dev_get() before use. When __in6_dev_get() returns NULL, subsequent dereferences trigger a kernel crash. The fix also introduces skb_dst_dev_rcu() in place of skb_dst_dev() and adds two missing READ_ONCE() annotations to prevent compiler-induced data races.

Critical Impact

A NULL dereference in the IPv6 IOAM packet processing path can trigger a kernel panic, resulting in denial of service on affected Linux systems handling IOAM-tagged IPv6 traffic.

Affected Products

  • Linux kernel versions containing the IPv6 IOAM trace data implementation prior to the fixing commits
  • Distributions shipping vulnerable upstream kernels with IPv6 IOAM enabled
  • Systems processing IPv6 packets with IOAM trace headers

Discovery Timeline

  • 2026-05-06 - CVE-2026-43101 published to the National Vulnerability Database
  • 2026-05-06 - Last updated in NVD database

Technical Details for CVE-2026-43101

Vulnerability Analysis

The vulnerability exists in the IPv6 IOAM (In-situ OAM) trace data path in the Linux kernel networking stack. The function __ioam6_fill_trace_data() calls __in6_dev_get() to retrieve the IPv6 device structure associated with a network device. The original code assumed this lookup would always succeed and proceeded to dereference the returned pointer without a NULL check.

When __in6_dev_get() returns NULL, for example on a device without IPv6 configuration state available at the moment of the call, the kernel dereferences a NULL pointer. This triggers an oops or panic depending on kernel configuration. The patch adds the missing NULL check before any access to the returned inet6_dev structure.

The fix additionally replaces skb_dst_dev() with skb_dst_dev_rcu() to ensure proper Read-Copy-Update (RCU) protection when accessing the destination device through the socket buffer. Two READ_ONCE() annotations are added to prevent the compiler from generating unsafe code on fields modified concurrently. The commit notes that @dev itself cannot be NULL, narrowing the failure case to the __in6_dev_get() result.

Root Cause

The root cause is a missing NULL check on the return value of __in6_dev_get() within __ioam6_fill_trace_data(). Combined with non-RCU device access and missing memory ordering primitives, the function exhibits unsafe pointer handling in a packet processing path that runs with limited error tolerance.

Attack Vector

An attacker capable of causing IPv6 IOAM-tagged packets to traverse a vulnerable host can drive the code path that triggers the NULL dereference. The exact preconditions depend on transient device state during the lookup. Successful triggering produces a kernel crash and denial of service. No code execution primitive has been disclosed for this issue.

No verified exploitation code is publicly available. The vulnerability mechanism is documented in the upstream commits referenced below. See the Kernel Git Commit - 4198aab6, Kernel Git Commit - 3719c234, and Kernel Git Commit - 4e65a8b8 for the patch details.

Detection Methods for CVE-2026-43101

Indicators of Compromise

  • Kernel oops or panic messages referencing __ioam6_fill_trace_data in the call stack
  • Unexpected reboots on hosts processing IPv6 traffic with IOAM extensions enabled
  • dmesg entries showing NULL pointer dereference in the IPv6 networking subsystem

Detection Strategies

  • Inventory running kernel versions across Linux fleets and compare against the fixed commit hashes 3719c234, 4198aab6, and 4e65a8b8
  • Monitor kernel ring buffers for NULL pointer dereference traces involving the ioam6 symbol
  • Audit which hosts have IPv6 IOAM enabled, since systems without IOAM exposure are not reachable through this code path

Monitoring Recommendations

  • Forward dmesg and /var/log/kern.log events to a centralized logging platform and alert on kernel oops signatures
  • Track host availability metrics for unexpected reboots correlated with IPv6 traffic spikes
  • Use distribution vulnerability trackers to confirm backport status for the kernel build in production

How to Mitigate CVE-2026-43101

Immediate Actions Required

  • Apply vendor-supplied kernel updates that incorporate the upstream patches as soon as they are released by your Linux distribution
  • If patching is delayed, disable IPv6 IOAM functionality on hosts where it is not required
  • Restrict ingress of IPv6 packets carrying IOAM extension headers at perimeter and host firewalls

Patch Information

The vulnerability is resolved upstream in three stable tree commits: Kernel Git Commit - 3719c234, Kernel Git Commit - 4198aab6, and Kernel Git Commit - 4e65a8b8. The patches add the NULL check on __in6_dev_get(), switch to skb_dst_dev_rcu(), and add READ_ONCE() annotations. Distribution maintainers backport these changes to supported kernel branches.

Workarounds

  • Disable the IPv6 IOAM subsystem at boot or via kernel module configuration on hosts that do not require it
  • Drop inbound IPv6 packets containing IOAM Hop-by-Hop options using ip6tables or nftables rules until patched kernels are deployed
  • Where feasible, disable IPv6 entirely on systems that do not require it as a defense-in-depth measure
bash
# Example nftables rule to drop IPv6 packets carrying IOAM Hop-by-Hop options
nft add table ip6 filter
nft add chain ip6 filter input { type filter hook input priority 0 \; }
nft add rule ip6 filter input exthdr hbh exists drop

# Verify running kernel against fixed commits
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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit - 3719c234

  • Kernel Git Commit - 4198aab6

  • Kernel Git Commit - 4e65a8b8
  • Related CVEs
  • CVE-2026-31745: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-43056: 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