A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-43303

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

CVE-2026-43303 is a use-after-free vulnerability in the Linux Kernel memory management that occurs when stale page->private values cause crashes in the swap subsystem. This article covers technical details, impact, and mitigation.

Published: May 18, 2026

CVE-2026-43303 Overview

CVE-2026-43303 is a use-after-free vulnerability [CWE-416] in the Linux kernel memory management subsystem. The flaw resides in free_pages_prepare() within mm/page_alloc, where freed pages retain stale page->private values. Subsystems including slub, shmem, and ttm set page->private but do not clear it before releasing pages back to the allocator. When the swap subsystem later receives these pages and calls swap_count_continued(), it iterates over uninitialized page->lru data containing LIST_POISON values, triggering a kernel crash.

Critical Impact

A local attacker with low privileges can trigger memory corruption in the kernel, leading to denial of service or potential privilege escalation through the swap subsystem.

Affected Products

  • Linux Kernel 5.18 (including release candidates rc4–rc9)
  • Linux Kernel stable branches prior to the backported fix
  • Distributions shipping affected kernel versions

Discovery Timeline

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

Technical Details for CVE-2026-43303

Vulnerability Analysis

The vulnerability stems from inconsistent state management of the page->private field across kernel subsystems. Multiple subsystems use page->private for tracking allocation-specific metadata. These subsystems do not reset the field when releasing pages back to the buddy allocator. When the allocator later returns these pages as high-order allocations and split_page() distributes the tail pages, the residual page->private values persist.

The swap subsystem assumes that newly allocated pages have page->private == 0. It uses this field to indicate whether a swap count continuation list exists for the page. When stale data is present, swap_count_continued() follows what it believes is a valid linked list. The actual memory contains LIST_POISON sentinel values such as 0xdead000000000100, producing a wild memory access reported by KASAN inside __do_sys_swapoff.

Root Cause

The root cause is the absence of a write to clear page->private in free_pages_prepare(). The buddy allocator did not enforce a clean-state invariant for this field, leaving correctness dependent on each subsystem performing its own cleanup. Any subsystem that failed to clear the field before freeing introduced a latent use-after-free condition for downstream consumers.

Attack Vector

Exploitation requires local access with the ability to influence kernel memory allocation patterns. An attacker triggers allocations and releases that leave non-zero page->private values, then invokes swapoff or related swap operations to reach swap_count_continued(). The resulting wild pointer dereference crashes the kernel and, under specific heap-shaping conditions, may allow controlled corruption of kernel structures.

No verified public proof-of-concept code is available. Technical details are documented in the upstream kernel commits referenced by the Kernel Git Commit - Fix.

Detection Methods for CVE-2026-43303

Indicators of Compromise

  • Kernel oops or panic messages referencing __do_sys_swapoff or swap_count_continued
  • KASAN reports indicating wild memory access in the range 0xdead000000000100-0xdead000000000107
  • Unexpected kernel crashes correlated with swapoff invocations or heavy swap activity

Detection Strategies

  • Monitor kernel ring buffer (dmesg) and /var/log/kern.log for LIST_POISON dereference signatures
  • Enable KASAN on test and staging kernels to surface use-after-free conditions before production exposure
  • Audit running kernel versions across the fleet using uname -r against the patched baseline

Monitoring Recommendations

  • Aggregate kernel crash telemetry centrally for correlation across hosts
  • Alert on repeated invocations of swapoff by non-administrative users or unexpected processes
  • Track kernel package versions through configuration management to identify unpatched systems

How to Mitigate CVE-2026-43303

Immediate Actions Required

  • Apply the upstream kernel patches referenced in the vendor advisory commits as soon as distribution builds are available
  • Inventory Linux hosts running kernel 5.18 or affected stable branches and prioritize patching for multi-tenant systems
  • Restrict local shell access on systems that cannot be patched immediately, since exploitation requires local privileges

Patch Information

The fix clears page->private in free_pages_prepare(), ensuring every freed page returns to the allocator with clean state. The patch is committed upstream as 23b82b7a2618, with related changes in ac1ea219590c and d757c793853e. Distribution maintainers backport these commits to long-term support kernels.

Workarounds

  • Disable swap on affected hosts using swapoff -a where workload tolerates it, eliminating the vulnerable code path
  • Limit access to the swapoff syscall by enforcing least-privilege policies and reviewing capability assignments
  • Apply seccomp or LSM policies that restrict swap management syscalls to trusted administrative contexts
bash
# Verify current kernel version and swap status
uname -r
cat /proc/swaps

# Temporary mitigation: disable swap if workload permits
sudo swapoff -a

# Persist by commenting swap entries in /etc/fstab
sudo sed -i.bak '/\sswap\s/s/^/#/' /etc/fstab

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

  • 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
  • CWE-416
  • Vendor Resources
  • Kernel Git Commit - Fix

  • Kernel Git Commit - Enhancement

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

  • CVE-2026-46233: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46227: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46222: Linux Kernel Use-After-Free 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