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

CVE-2026-43321: Linux Kernel Privilege Escalation Flaw

CVE-2026-43321 is a privilege escalation vulnerability in the Linux Kernel affecting BPF register handling in indirect jumps. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 18, 2026

CVE-2026-43321 Overview

CVE-2026-43321 is a Linux kernel vulnerability in the Berkeley Packet Filter (BPF) verifier. The flaw exists in the compute_insn_live_regs() function, which fails to mark the rX register as used for gotox rX indirect jump instructions. This incorrect liveness tracking can lead to verifier state inconsistencies during BPF program validation. Local authenticated attackers with the ability to load BPF programs can leverage the issue to impact confidentiality, integrity, and availability of the host system.

Critical Impact

A local attacker with BPF load privileges can exploit incorrect live register marking in the BPF verifier to compromise kernel memory safety on Linux kernel 7.0 release candidates.

Affected Products

  • Linux Kernel 7.0-rc1 through 7.0-rc7
  • Linux Kernel mainline builds containing the indirect jump (gotox) BPF instruction handling
  • Distributions shipping pre-release 7.0 kernels with BPF support enabled

Discovery Timeline

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

Technical Details for CVE-2026-43321

Vulnerability Analysis

The vulnerability resides in the BPF verifier's live register computation logic. The compute_insn_live_regs() function determines which registers are live at each instruction during static analysis of BPF programs. For indirect jump instructions of the form gotox rX, the target address is stored in register rX. The verifier must mark rX as used so the register's value is preserved across the jump for downstream analysis.

The pre-patch implementation omits this marking. As a result, the verifier's view of register liveness diverges from runtime behavior at the gotox instruction. This inconsistency can be leveraged to bypass verifier safety checks, leading to kernel memory corruption [CWE-noinfo].

Root Cause

The root cause is missing register-use tracking inside compute_insn_live_regs() for the BPF_JMP | BPF_JA indirect variant (gotox). Because the target register is not added to the live set, subsequent dataflow analysis treats it as dead. This produces unsound verifier conclusions about register state at jump targets.

Attack Vector

Exploitation requires local access and the ability to load BPF programs, typically CAP_BPF or CAP_SYS_ADMIN. An attacker crafts a malicious BPF program containing a gotox instruction designed to exploit the inconsistent liveness analysis. The verifier accepts the program, but at runtime register state diverges from what was statically validated. The fix is applied in upstream commits 7beae54111c3 and d1aab1ca576c. See the kernel git commit 7beae54111c3 and kernel git commit d1aab1ca576c for details.

No public proof-of-concept exploit code is available. The vulnerability is described in prose because no verified exploitation code has been published.

Detection Methods for CVE-2026-43321

Indicators of Compromise

  • Unexpected loading of BPF programs by non-root users with CAP_BPF granted
  • Kernel oops or panic messages referencing bpf_verifier, check_cfg, or compute_insn_live_regs
  • BPF programs containing indirect jumps (gotox) loaded by untrusted workloads

Detection Strategies

  • Audit bpf() syscall activity using auditd rules to log BPF_PROG_LOAD invocations
  • Monitor /sys/kernel/debug/tracing/events/bpf/ tracepoints for anomalous program loads
  • Correlate unprivileged container workloads requesting BPF capabilities with kernel version metadata

Monitoring Recommendations

  • Track kernel version inventory to identify hosts running Linux 7.0-rc1 through 7.0-rc7
  • Alert on processes invoking bpf() syscall outside of approved observability or networking tooling
  • Forward kernel logs to a centralized data lake for retrospective analysis of verifier-related crashes

How to Mitigate CVE-2026-43321

Immediate Actions Required

  • Upgrade affected hosts to a Linux kernel build that includes commits 7beae54111c3 and d1aab1ca576c
  • Restrict CAP_BPF and CAP_SYS_ADMIN to trusted system processes only
  • Set kernel.unprivileged_bpf_disabled=1 via sysctl to block unprivileged BPF program loading

Patch Information

The upstream fix marks rX as used inside compute_insn_live_regs() when processing gotox rX instructions. Apply the patches referenced in the kernel.org stable commit 7beae54111c3 and kernel.org stable commit d1aab1ca576c. Rebuild and redeploy the kernel, then reboot affected hosts.

Workarounds

  • Disable unprivileged BPF using sysctl -w kernel.unprivileged_bpf_disabled=1 until the kernel is patched
  • Remove CAP_BPF from container runtimes and seccomp profiles for untrusted workloads
  • Roll back to a stable 6.x kernel series if production hosts are running 7.0 release candidates
bash
# Configuration example
# Disable unprivileged BPF program loading
sysctl -w kernel.unprivileged_bpf_disabled=1
echo 'kernel.unprivileged_bpf_disabled=1' >> /etc/sysctl.d/99-bpf-hardening.conf

# Verify the setting is active
sysctl kernel.unprivileged_bpf_disabled

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 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
  • NVD-CWE-noinfo
  • Vendor Resources
  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-43332: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43344: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43306: Linux Kernel Privilege Escalation Flaw

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