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

CVE-2026-43036: Linux Kernel GSO Header Vulnerability

CVE-2026-43036 is a GSO header handling flaw in the Linux kernel that causes uninit-value warnings when processing TCPv4 packets. This post explains its impact, affected versions, and mitigation steps.

Published: May 7, 2026

CVE-2026-43036 Overview

CVE-2026-43036 is a Linux kernel networking vulnerability in the Generic Segmentation Offload (GSO) path. The flaw resides in gso_features_check(), which is invoked from netif_skb_features() during transmit processing. The function reads iph->frag_off from the IPv4 header through ip_hdr() or inner_ip_hdr() to decide whether to clear mangleid_features. On packets injected through PF_PACKET sockets, the header offsets that these accessors rely on are not always safe for direct dereference, leading to an uninitialized memory read. Syzbot's KMSAN (Kernel Memory Sanitizer) instrumentation reported the issue as a uninit-value warning [CWE-908].

Critical Impact

A local user with the ability to open PF_PACKET sockets can trigger an uninitialized memory read in the kernel networking transmit path, potentially leaking kernel memory contents or enabling further exploitation primitives.

Affected Products

  • Linux kernel mainline (TCPv4 GSO transmit path)
  • Stable kernel branches referenced by commits cc91202f, d970341c, ddc748a3, and f7a6cd50
  • Distributions shipping affected stable kernels prior to backporting the fix

Discovery Timeline

  • Reported by Syzbot — KMSAN uninit-value warning surfaced in gso_features_check() (see Syzkaller bug 1543a7d954d9c6d00407)
  • 2026-05-01 — CVE-2026-43036 published to NVD
  • 2026-05-01 — Last updated in NVD database

Technical Details for CVE-2026-43036

Vulnerability Analysis

The defect lies in how the Linux networking stack reads the IPv4 fragment offset field during GSO feature negotiation. gso_features_check() consults iph->frag_off to determine whether the stack should preserve the IP identification field across segmentation. The accessor macros ip_hdr() and inner_ip_hdr() compute their pointer using skb->network_header, assuming the header bytes are present in the linear portion of the socket buffer.

Packets crafted and injected through PF_PACKET raw sockets do not always satisfy this assumption. The header may sit in a paged fragment, or the network_header offset may not point at fully initialized data. Dereferencing iph->frag_off in that state reads memory that KMSAN flags as uninitialized, classifying the issue as an uninitialized memory use [CWE-908].

The exploitation surface depends on whether an attacker can open AF_PACKET sockets, which typically requires CAP_NET_RAW. The EPSS score is 0.023%, reflecting low observed exploitation likelihood, but the bug is reachable from unprivileged user namespaces on systems that grant CAP_NET_RAW inside them.

Root Cause

The root cause is unsafe direct header dereference on a non-linear or partially populated sk_buff. The transmit fast path trusted ip_hdr() to return a valid, in-linear-area pointer for all packet sources, but PF_PACKET injection breaks that invariant.

Attack Vector

A local process with CAP_NET_RAW constructs a TCPv4 packet via AF_PACKET with a layout that places the IP header outside the linear skb data area or with uninitialized header bytes. Sending the packet drives the kernel through netif_skb_features() and into gso_features_check(), where the read of iph->frag_off returns uninitialized data. The fix replaces the direct dereference with skb_header_pointer(), which copies the header bytes into a local buffer when needed and returns a safe pointer regardless of the skb layout.

No public proof-of-concept beyond the Syzkaller reproducer is available. Exploitation code is therefore not reproduced here. See the upstream commits at git.kernel.org commit cc91202f and git.kernel.org commit f7a6cd50 for the patch diffs.

Detection Methods for CVE-2026-43036

Indicators of Compromise

  • KMSAN or KASAN warnings referencing gso_features_check or netif_skb_features in dmesg or kernel logs
  • Unexpected processes holding AF_PACKET raw sockets, especially non-root processes inside user namespaces
  • Repeated transmission of malformed TCPv4 packets where the IP header is split across skb fragments

Detection Strategies

  • Audit running kernel version against the fixed commits in stable branches and flag hosts running pre-patch builds
  • Monitor auditd for socket(AF_PACKET, ...) syscalls correlated with non-privileged UIDs or container workloads
  • Enable KMSAN or KASAN on test fleets to surface uninitialized read warnings before production deployment

Monitoring Recommendations

  • Forward kernel ring buffer messages to a centralized log pipeline and alert on BUG: or KMSAN strings tied to networking symbols
  • Track CAP_NET_RAW capability grants in container runtime configurations and Kubernetes pod specs
  • Baseline expected AF_PACKET socket users so anomalous openers stand out in EDR telemetry

How to Mitigate CVE-2026-43036

Immediate Actions Required

  • Apply the upstream patch that switches the TCPv4 frag_off read to skb_header_pointer() in gso_features_check()
  • Rebuild and redeploy custom kernels using the commits referenced in the NVD entry
  • Restrict CAP_NET_RAW in container and user-namespace configurations until patched kernels are in place

Patch Information

The fix is committed across multiple stable branches. Reference patches: commit cc91202f, commit d970341c, commit ddc748a3, and commit f7a6cd50. Pull the vendor kernel update from your distribution once the backport is published.

Workarounds

  • Drop CAP_NET_RAW from unprivileged users and container security contexts using seccomp or capability bounding sets
  • Disable user namespaces for untrusted workloads where AF_PACKET access would otherwise be granted indirectly
  • Apply seccomp filters that block the socket(AF_PACKET, ...) syscall for workloads that do not require raw networking
bash
# Restrict AF_PACKET access for non-root users via sysctl on supported kernels
sysctl -w kernel.unprivileged_userns_clone=0

# Drop CAP_NET_RAW from a systemd service
# /etc/systemd/system/<service>.service.d/override.conf
# [Service]
# CapabilityBoundingSet=~CAP_NET_RAW
# AmbientCapabilities=

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

  • EPSS Probability0.02%

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

  • Kernel Git Commit Overview

  • Kernel Git Commit Overview

  • Kernel Git Commit Overview
  • Related CVEs
  • CVE-2026-43493: Linux Kernel Crypto Pcrypt Vulnerability

  • CVE-2026-43343: Linux Kernel USB Gadget Vulnerability

  • CVE-2026-43307: Linux Kernel FIFO Read Overflow Vulnerability

  • CVE-2026-43352: Linux Kernel DMA Ring Abort 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