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

CVE-2026-23383: Linux Kernel Race Condition Vulnerability

CVE-2026-23383 is a race condition flaw in the Linux kernel's BPF JIT implementation on arm64 that can cause atomic tearing and corrupted memory access. This article covers technical details, affected systems, and mitigation.

Published: March 27, 2026

CVE-2026-23383 Overview

A memory alignment vulnerability has been identified in the Linux kernel's BPF (Berkeley Packet Filter) JIT (Just-In-Time) compiler for ARM64 architecture. The vulnerability exists in the JIT buffer allocation mechanism, where the struct bpf_plt contains a u64 target field that may not be properly aligned to an 8-byte boundary.

The BPF JIT allocator currently requests only 4-byte alignment (sizeof(u32)) for the JIT buffer. When the base address of the JIT buffer is 4-byte aligned (e.g., ending in 0x4 or 0xc), the relative padding logic in build_plt() fails to ensure that the target field lands on an 8-byte boundary. This misalignment can lead to atomic tearing during concurrent memory operations.

Critical Impact

This vulnerability can cause the JIT compiler to jump to a corrupted address due to torn reads during concurrent 64-bit load/store operations, potentially leading to system instability or unpredictable behavior.

Affected Products

  • Linux Kernel (ARM64 architecture with BPF JIT enabled)
  • Systems utilizing BPF programs with ARM64 JIT compilation
  • Linux distributions running affected kernel versions on ARM64 hardware

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23383 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23383

Vulnerability Analysis

This vulnerability stems from a race condition combined with improper memory alignment in the ARM64 BPF JIT compiler. The core issue involves how the target field within struct bpf_plt is accessed concurrently by multiple operations.

The target field is a 64-bit value (u64) that is updated via WRITE_ONCE() in the bpf_arch_text_poke() function while JIT-compiled code simultaneously executes ldr (load register) instructions. On ARM64 architecture, 64-bit loads and stores are only guaranteed to be single-copy atomic when they are properly 64-bit aligned.

When the JIT buffer base address falls on a 4-byte boundary that is not also an 8-byte boundary, the target field becomes misaligned. This misalignment creates a scenario where:

  1. UBSAN (Undefined Behavior Sanitizer) reports misaligned-access warnings when dereferencing the structure
  2. A torn read can occur, where the processor reads partial data from two separate memory operations, resulting in a corrupted address value

If a torn read occurs during JIT execution, the processor may attempt to jump to an invalid or corrupted memory address, potentially causing system crashes, kernel panics, or unpredictable behavior.

Root Cause

The root cause is insufficient alignment requirements in the bpf_jit_binary_pack_alloc() function. The allocator requests only 4-byte alignment (sizeof(u32)) when the data structures being allocated contain 64-bit fields that require 8-byte alignment for atomic operation guarantees on ARM64.

The build_plt() function's relative padding logic assumes the base address will provide proper alignment, but this assumption fails when the base is only 4-byte aligned.

Attack Vector

This vulnerability manifests through the combination of concurrent BPF JIT operations on ARM64 systems. The conditions for exploitation include:

  • Active BPF program execution using JIT-compiled code
  • Concurrent modification of BPF program trampolines via bpf_arch_text_poke()
  • JIT buffer allocation that happens to fall on a 4-byte but not 8-byte aligned address

While this is primarily a reliability and stability issue, the potential for jumping to corrupted addresses could theoretically be leveraged in sophisticated attack scenarios where an attacker can influence memory layout and timing of concurrent operations.

Detection Methods for CVE-2026-23383

Indicators of Compromise

  • UBSAN warnings in kernel logs indicating misaligned-access for BPF-related structures
  • Unexpected kernel crashes or panics during BPF program execution on ARM64 systems
  • Anomalous behavior in applications utilizing BPF programs on ARM64 hardware
  • System instability correlated with BPF JIT activity in dmesg or system logs

Detection Strategies

  • Enable UBSAN in the kernel configuration to detect misaligned memory accesses (CONFIG_UBSAN_ALIGNMENT=y)
  • Monitor system logs for BPF-related panics or UBSAN warnings using centralized log analysis
  • Implement kernel tracing with ftrace or perf to monitor bpf_arch_text_poke() operations
  • Deploy SentinelOne's kernel-level monitoring to detect anomalous JIT behavior patterns

Monitoring Recommendations

  • Configure alerting for kernel panics and UBSAN warnings on ARM64 systems
  • Track BPF program loading and JIT compilation events across your ARM64 fleet
  • Establish baseline behavior for BPF operations to identify deviations
  • Use SentinelOne's deep visibility features to monitor kernel-level operations and detect potential exploitation attempts

How to Mitigate CVE-2026-23383

Immediate Actions Required

  • Apply the kernel patches referenced in the official git commits to production systems
  • Prioritize patching ARM64 systems that actively utilize BPF programs
  • Consider temporarily disabling BPF JIT on ARM64 systems if immediate patching is not feasible (net.core.bpf_jit_enable=0)
  • Review system logs for any evidence of prior exploitation or instability related to this vulnerability

Patch Information

The fix increases the allocation alignment requirement to 8 bytes (sizeof(u64)) in the bpf_jit_binary_pack_alloc() function. This ensures the JIT buffer base is anchored to an 8-byte boundary, allowing the relative padding logic in build_plt() to correctly align the target field.

The following kernel commits contain the fix:

  • Kernel Git Commit 519b1ad9
  • Kernel Git Commit 66959ed4
  • Kernel Git Commit 80ad264d
  • Kernel Git Commit ef06fd16

Workarounds

  • Disable BPF JIT compilation on ARM64 systems by setting net.core.bpf_jit_enable=0 via sysctl
  • If BPF functionality is required, consider using BPF interpreter mode until patches can be applied
  • Limit the deployment of new BPF programs on unpatched ARM64 systems
  • Implement additional monitoring for affected systems to detect potential issues before patches are deployed
bash
# Configuration example
# Disable BPF JIT on ARM64 as a temporary workaround
echo 0 | sudo tee /proc/sys/net/core/bpf_jit_enable

# Make the change persistent across reboots
echo "net.core.bpf_jit_enable = 0" | sudo tee -a /etc/sysctl.d/99-disable-bpf-jit.conf
sudo sysctl --system

# Verify the setting is applied
sysctl net.core.bpf_jit_enable

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

  • Vulnerability Details
  • TypeRace Condition

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Update 2

  • Kernel Git Commit Update 3

  • Kernel Git Commit Update 4
  • Related CVEs
  • CVE-2026-23440: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23434: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23436: Linux Kernel Race Condition Vulnerability

  • CVE-2026-23463: Linux Kernel QBMAN Race Condition 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