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

CVE-2026-43286: Linux Kernel DOS Vulnerability

CVE-2026-43286 is a denial of service flaw in Linux Kernel affecting memory management in the hugetlb subsystem. Failed reservations cause subpool counters to leak, rendering the system unusable. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: May 18, 2026

CVE-2026-43286 Overview

CVE-2026-43286 is a memory accounting flaw in the Linux kernel's hugetlb subsystem. The vulnerability resides in mm/hugetlb subpool reservation handling. Failed global page reservations are not properly restored to the subpool's used_hpages counter. Each failed allocation attempt incrementally leaks accounting, eventually rendering the subpool unusable for hugeTLB page allocations. The flaw was introduced by commit a833a693a490 which fixed an earlier underflow but created an inverse leak. This vulnerability affects Linux kernel versions 6.15 and the 7.0 release candidate series. It is classified under [CWE-401] Missing Release of Memory after Effective Lifetime.

Critical Impact

A local user can trigger repeated failed hugeTLB allocations to permanently exhaust subpool accounting, causing denial of service for applications that depend on hugepages.

Affected Products

  • Linux kernel 6.15
  • Linux kernel 7.0 release candidates (rc1 through rc7)
  • Distributions shipping kernels with commit a833a693a490 applied

Discovery Timeline

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

Technical Details for CVE-2026-43286

Vulnerability Analysis

The vulnerability lives in the Linux kernel hugetlb subpool accounting logic. A hugetlb subpool tracks two counters: resv_huge_pages for reservations made from the subpool, and used_hpages for total pages consumed both from the subpool and globally. When a process requests more pages than the subpool can satisfy, the kernel attempts to allocate additional pages from the global pool through hugetlb_acct_memory().

The earlier fix in commit a833a693a490 corrected an underflow in hstate->resv_huge_pages but did not adjust spool->used_hpages symmetrically. When the global allocation fails, the previously incremented used_hpages counter is never decremented for the failed portion. This produces a one-way counter leak per failed request.

Root Cause

The root cause is asymmetric counter maintenance during failure paths in hugepage_subpool_get_pages(). The function increments used_hpages by the full request size before calling hugetlb_acct_memory(). On failure, only the subpool reservation is rolled back. Globally requested pages remain charged to used_hpages despite no actual allocation occurring, violating the invariant that used_hpages reflects pages currently held by users.

Attack Vector

Exploitation requires local access with the ability to mount or use a hugetlb filesystem. The reproduction sequence is: allocate 4 hugetlb pages, create a hugetlb mount with max=4, min=2, consume 2 pages globally, then request 3 pages from the subpool. The subpool request succeeds in incrementing used_hpages by 3, but hugetlb_acct_memory(h, 1) fails because no global pages remain. Only 2 are returned, leaving used_hpages = 1 with zero actual consumption. Repeating this pattern drives used_hpages toward the maximum, after which all legitimate allocations fail. Recovery requires unmounting and remounting the hugetlb filesystem because no process holds the leaked accounting.

Detection Methods for CVE-2026-43286

Indicators of Compromise

  • Hugetlb allocation failures (ENOSPC or ENOMEM) on a subpool whose visible page consumption is significantly lower than its configured maximum.
  • Discrepancy between /sys/kernel/mm/hugepages/ global counters and per-mount hugetlb usage statistics.
  • Applications using MAP_HUGETLB or hugetlbfs mounts reporting persistent allocation failures that resolve only after remount.

Detection Strategies

  • Audit kernel versions across the fleet for builds containing commit a833a693a490 without the corrective patches listed in the vendor advisory.
  • Monitor system logs and application telemetry for repeated hugetlb_acct_memory failures correlated with the same hugetlb mount.
  • Compare reported subpool used_hpages against the actual count of pages mapped by user processes to detect drift.

Monitoring Recommendations

  • Track hugepage allocation failure rates per cgroup and per hugetlb mountpoint as a baseline metric.
  • Alert on hugetlb mounts whose used counter grows without a corresponding increase in mapped processes.
  • Forward kernel dmesg and audit events for hugetlb-related warnings to centralized logging for correlation.

How to Mitigate CVE-2026-43286

Immediate Actions Required

  • Apply the upstream kernel patches referenced in Kernel Git Commit 1d3f9bb, Kernel Git Commit 5eac132, and Kernel Git Commit f055897.
  • Restrict access to hugetlbfs mount creation to trusted system roles where feasible.
  • Reboot or remount affected hugetlb mounts that have entered the leaked-accounting state to restore service.

Patch Information

The fix restores failed global reservations to the subpool's used_hpages counter, ensuring symmetric accounting on the failure path. Distribution maintainers should backport the referenced commits to stable kernel branches affected by commit a833a693a490. Verify the patch is present by inspecting mm/hugetlb.c for the corrective decrement logic in hugepage_subpool_get_pages().

Workarounds

  • Avoid configuring hugetlb subpools where the maximum exceeds available global pages, reducing the likelihood of triggering the failure path.
  • Provision sufficient global hugepages so that hugetlb_acct_memory() does not need to fail under normal workload conditions.
  • Schedule periodic remounts of long-lived hugetlb filesystems as a stopgap until the patched kernel can be deployed.
bash
# Verify running kernel version and hugepage configuration
uname -r
cat /proc/meminfo | grep -i huge
cat /sys/kernel/mm/hugepages/hugepages-2048kB/nr_hugepages

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux

  • 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-401
  • Vendor Resources
  • Kernel Git Commit 1d3f9bb

  • Kernel Git Commit 5eac132

  • Kernel Git Commit f055897
  • Related CVEs
  • CVE-2026-43060: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43251: Linux Kernel HID Prodikeys DOS Vulnerability

  • CVE-2026-43247: Linux Kernel Media Driver DoS Vulnerability

  • CVE-2026-43147: Linux Kernel SR-IOV DOS 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