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

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

CVE-2026-43333 is a use-after-free vulnerability in the Linux Kernel's BPF subsystem that allows direct access to nullable PTR_TO_BUF pointers, causing kernel NULL dereference. This post covers technical details, affected versions, impact, and mitigation strategies.

Published: May 18, 2026

CVE-2026-43333 Overview

CVE-2026-43333 is a null pointer dereference vulnerability [CWE-476] in the Linux kernel's Berkeley Packet Filter (BPF) subsystem. The flaw resides in check_mem_access(), which uses base_type() to match PTR_TO_BUF pointers. This matching strips the PTR_MAYBE_NULL flag, permitting direct dereference without a prior null check. Map iterator context fields ctx->key and ctx->value are typed as PTR_TO_BUF | PTR_MAYBE_NULL and become NULL during stop callbacks, triggering a kernel NULL pointer dereference.

Critical Impact

A local, low-privileged user able to load BPF programs can trigger a kernel NULL pointer dereference during BPF map iterator stop callbacks, causing system-wide denial of service.

Affected Products

  • Linux Kernel (multiple stable branches)
  • Linux Kernel 7.0 release candidates rc1 through rc6
  • Distributions shipping affected upstream kernel versions

Discovery Timeline

  • 2026-05-08 - CVE-2026-43333 published to NVD
  • 2026-05-15 - Last updated in NVD database

Technical Details for CVE-2026-43333

Vulnerability Analysis

The vulnerability exists in the BPF verifier's memory access validation routine, check_mem_access(). The Linux BPF type system uses composite type tags to encode pointer properties, where PTR_MAYBE_NULL indicates a pointer that the verifier cannot statically prove non-NULL. When the verifier categorizes a pointer using base_type(), the helper strips qualifier flags including PTR_MAYBE_NULL, returning only the base pointer kind.

For the PTR_TO_BUF branch in check_mem_access(), the code path did not re-check whether the original type carried PTR_MAYBE_NULL. The verifier therefore accepted direct dereference of PTR_TO_BUF pointers without requiring a preceding null check, contrary to the safety guarantee BPF promises kernel callers.

Root Cause

BPF map iterator programs receive a context structure containing ctx->key and ctx->value fields, both typed as PTR_TO_BUF | PTR_MAYBE_NULL. During iterator stop callbacks, the kernel passes NULL values for these fields because no current map element exists. A verified BPF program that dereferences ctx->key or ctx->value without a null check passes verification, then dereferences NULL at runtime inside the kernel, producing an oops.

Attack Vector

Exploitation requires local access and the ability to load BPF programs, typically CAP_BPF or CAP_SYS_ADMIN. An attacker authors a BPF map iterator program that directly reads ctx->key or ctx->value. The verifier accepts the program because base_type() masks the nullable qualifier. Attaching and running the iterator triggers the stop callback, dereferencing NULL inside kernel context. The result is a kernel panic or oops, denying service to the host.

The upstream fix adds a type_may_be_null() guard to the PTR_TO_BUF branch, mirroring the existing PTR_TO_BTF_ID pattern, so nullable buffer pointers must be null-checked before dereference.

Detection Methods for CVE-2026-43333

Indicators of Compromise

  • Kernel oops or panic messages referencing check_mem_access, bpf_iter, or NULL pointer dereferences in BPF map iterator code paths
  • Unexpected dmesg entries citing BUG: kernel NULL pointer dereference correlated with recent bpf() syscalls
  • Unprivileged or service accounts loading BPF iterator programs targeting map types they do not normally use

Detection Strategies

  • Audit bpf() syscall activity using kernel auditing (auditctl -a always,exit -F arch=b64 -S bpf) and flag BPF program loads of type BPF_PROG_TYPE_TRACING attaching to bpf_iter
  • Correlate kernel crash dumps with preceding BPF program load events from the same UID and session
  • Inventory hosts running affected kernel versions and rank by BPF loader capability exposure

Monitoring Recommendations

  • Forward /var/log/kern.log and dmesg to centralized logging and alert on NULL pointer dereference signatures involving BPF symbols
  • Track issuance of CAP_BPF and CAP_SYS_ADMIN to non-administrative workloads, including container runtimes
  • Monitor for repeated host reboots or kernel panics on Linux fleets pending patch deployment

How to Mitigate CVE-2026-43333

Immediate Actions Required

  • Apply the upstream stable kernel patches referenced in the vendor advisories and reboot affected systems
  • Restrict CAP_BPF and CAP_SYS_ADMIN to trusted administrative accounts and remove these capabilities from container workloads where feasible
  • Set kernel.unprivileged_bpf_disabled=1 via sysctl to block unprivileged BPF program loads on hosts that do not require them

Patch Information

The fix introduces a type_may_be_null() guard in the PTR_TO_BUF branch of check_mem_access(), matching the existing handling for PTR_TO_BTF_ID. Patches are available across multiple stable branches via the following commits: 10bc4a4d, 21a10c06, 4f6c99dc, 63276547, 70abd9d1, 8755066f, and b0db1acc. Apply the patch matching your kernel branch and rebuild or install the vendor-provided package.

Workarounds

  • Disable unprivileged BPF by setting kernel.unprivileged_bpf_disabled=1 in /etc/sysctl.d/ and reloading sysctl values
  • Remove CAP_BPF from container security profiles and Kubernetes pod specifications that do not require BPF functionality
  • Use Linux Security Modules (SELinux, AppArmor) to constrain which processes may invoke the bpf() syscall
bash
# Configuration example
# Disable unprivileged BPF program loading
echo 'kernel.unprivileged_bpf_disabled=1' | sudo tee /etc/sysctl.d/99-disable-unpriv-bpf.conf
sudo sysctl --system

# Verify the setting
sysctl kernel.unprivileged_bpf_disabled

# Audit BPF syscall usage
sudo auditctl -a always,exit -F arch=b64 -S bpf -k bpf_calls

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

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-476
  • Vendor Resources
  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

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

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