Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-31429

CVE-2026-31429: Linux Kernel Privilege Escalation Bug

CVE-2026-31429 is a privilege escalation vulnerability in the Linux kernel involving skb memory management. This flaw affects memory allocation handling and could enable attackers to elevate privileges. This article covers technical details, affected versions, impact, and mitigation.

Published: April 23, 2026

CVE-2026-31429 Overview

CVE-2026-31429 is a memory management vulnerability in the Linux kernel's network subsystem affecting the socket buffer (SKB) handling when KFENCE (Kernel Fence-post Memory Checker) is enabled. The vulnerability occurs in the skb_kfree_head() function, which incorrectly frees KFENCE-allocated objects to the wrong slab cache, leading to a cross-cache free condition.

The issue stems from how SKB_SMALL_HEAD_CACHE_SIZE is intentionally set to a non-power-of-2 value (704 bytes on x86_64) to differentiate between SKB heads allocated from skb_small_head_cache versus generic kmalloc caches. However, when KFENCE is active, kfence_ksize() returns the exact requested allocation size rather than the slab bucket size, causing misclassification and improper memory deallocation.

Critical Impact

This slab cross-cache free vulnerability can lead to kernel memory corruption, potentially enabling privilege escalation or denial of service through memory allocator confusion.

Affected Products

  • Linux Kernel (multiple versions with KFENCE enabled)
  • Systems running kernels with BPF test functionality (bpf_test_init)
  • Linux distributions with KFENCE memory debugging enabled

Discovery Timeline

  • 2026-04-20 - CVE CVE-2026-31429 published to NVD
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2026-31429

Vulnerability Analysis

The vulnerability exists in the Linux kernel's SKB (socket buffer) memory management subsystem. The kernel maintains a specialized cache called skb_small_head_cache for small SKB head allocations, using SKB_SMALL_HEAD_CACHE_SIZE as a distinguishing marker. This size is deliberately non-power-of-2 to avoid overlap with standard kmalloc bucket sizes.

The skb_kfree_head() function uses skb_end_offset to determine which cache an SKB head was allocated from. Under normal operation, ksize() returns the actual slab bucket size, allowing correct cache identification. However, KFENCE's kfence_ksize() implementation returns the exact requested allocation size instead.

When a caller such as bpf_test_init allocates SKB head data via kzalloc() with a size matching SKB_SMALL_HEAD_CACHE_SIZE, the subsequent slab_build_skb() → ksize() call returns this exact value. After subtracting skb_shared_info overhead, skb_end_offset incorrectly matches SKB_SMALL_HEAD_HEADROOM, causing the free operation to target the wrong cache.

Root Cause

The root cause is an inconsistency between allocation source identification and the actual memory allocator behavior when KFENCE is enabled. The kfence_ksize() function returns precise allocation sizes for debugging purposes, which breaks the size-based heuristic used by skb_kfree_head() to determine the correct deallocation cache.

This results in the kernel error message:

kmem_cache_free(skbuff_small_head): Wrong slab cache. Expected skbuff_small_head but got kmalloc-1k

Attack Vector

The vulnerability can be triggered locally by any process capable of invoking BPF test functions or similar kernel interfaces that allocate SKB head data through generic kmalloc with sizes matching SKB_SMALL_HEAD_CACHE_SIZE. While direct exploitation requires local access and elevated privileges to invoke BPF operations, the cross-cache free condition could potentially be leveraged for:

  1. Kernel Memory Corruption: Freeing objects to the wrong cache corrupts slab allocator metadata
  2. Use-After-Free Scenarios: Objects may be reallocated from an unexpected cache, leading to type confusion
  3. Privilege Escalation: Through careful heap manipulation, an attacker might achieve arbitrary kernel memory writes

The fix modifies skb_kfree_head() to always call kfree(head) directly, eliminating the allocator-specific classification logic that caused KFENCE misidentification.

Detection Methods for CVE-2026-31429

Indicators of Compromise

  • Kernel log messages containing kmem_cache_free(skbuff_small_head): Wrong slab cache
  • Unexpected kernel panics or oops in network-related code paths
  • KFENCE reports showing cross-cache free violations in the SKB subsystem
  • System instability when BPF test operations are performed

Detection Strategies

  • Monitor kernel logs (dmesg) for slab cache mismatch warnings related to skbuff_small_head
  • Enable KFENCE debugging to detect cross-cache free attempts during testing
  • Deploy kernel tracing (ftrace/eBPF) on skb_kfree_head() and kmem_cache_free() functions
  • Use kernel memory debugging tools like KASAN to detect memory corruption symptoms

Monitoring Recommendations

  • Configure syslog alerts for kernel slab allocator warnings
  • Implement automated kernel log analysis for memory subsystem anomalies
  • Monitor BPF-related system calls on sensitive systems
  • Review audit logs for processes invoking BPF test functionality

How to Mitigate CVE-2026-31429

Immediate Actions Required

  • Update to a patched Linux kernel version containing the fix
  • On systems where immediate patching is not possible, consider disabling KFENCE if memory debugging is not required
  • Restrict access to BPF test interfaces to trusted administrators only
  • Monitor kernel logs for any signs of exploitation attempts

Patch Information

The fix has been committed to the stable Linux kernel tree. The patch modifies skb_kfree_head() to always use kfree(head) for deallocation, avoiding the allocator-specific cache classification that caused the KFENCE mismatch.

Available patches:

  • Kernel Git Commit 0f42e3f
  • Kernel Git Commit 2d64618
  • Kernel Git Commit 474e00b
  • Kernel Git Commit 60313768

Workarounds

  • Disable KFENCE by setting kfence.sample_interval=0 on the kernel command line if memory debugging is not essential
  • Restrict BPF capabilities by limiting CAP_BPF and CAP_SYS_ADMIN to essential users only
  • Apply kernel hardening configurations to limit exposure to memory corruption vulnerabilities
  • Consider using SELinux/AppArmor policies to restrict access to BPF-related interfaces
bash
# Disable KFENCE at boot time (temporary workaround)
# Add to kernel command line in bootloader configuration:
kfence.sample_interval=0

# Verify KFENCE status after boot
cat /sys/module/kfence/parameters/sample_interval

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 2d64618

  • Kernel Git Commit 474e00b

  • Kernel Git Commit 60313768
  • Related CVEs
  • CVE-2026-31482: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-32282: Linux Root.Chmod Privilege Escalation Flaw

  • CVE-2025-11561: SSSD Privilege Escalation Vulnerability

  • CVE-2026-23253: Linux Kernel Privilege Escalation Flaw
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