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

CVE-2026-40572: NovumOS Privilege Escalation Vulnerability

CVE-2026-40572 is a privilege escalation flaw in NovumOS that allows user-mode processes to map forbidden memory regions and modify kernel structures. This article covers technical details, affected versions, and patches.

Published: April 23, 2026

CVE-2026-40572 Overview

CVE-2026-40572 is a critical privilege escalation vulnerability in NovumOS, a custom 32-bit operating system written in Zig and x86 Assembly. The vulnerability exists in Syscall 15 (MemoryMapRange), which allows Ring 3 user-mode processes to map arbitrary virtual address ranges into their address space without proper validation against protected kernel memory regions.

This flaw enables local attackers to map and modify critical kernel structures including the Interrupt Descriptor Table (IDT), Global Descriptor Table (GDT), Task State Segment (TSS), and page tables. By manipulating kernel interrupt handlers, an attacker can escalate privileges from user mode to kernel context, gaining complete control over the operating system.

Critical Impact

Local attackers can achieve full privilege escalation from user mode (Ring 3) to kernel context (Ring 0) by exploiting inadequate memory mapping validation, potentially compromising the entire system.

Affected Products

  • NovumOS versions prior to 0.24

Discovery Timeline

  • 2026-04-18 - CVE CVE-2026-40572 published to NVD
  • 2026-04-20 - Last updated in NVD database

Technical Details for CVE-2026-40572

Vulnerability Analysis

This vulnerability stems from a fundamental flaw in the system call interface that handles memory mapping operations. The MemoryMapRange syscall (Syscall 15) accepts user-supplied virtual address ranges and maps them into the calling process's address space. However, the implementation fails to implement proper boundary checks to prevent user-mode processes from mapping kernel-reserved memory regions.

In a properly secured operating system, kernel structures such as the IDT, GDT, TSS, and page tables must remain inaccessible to user-mode processes. These structures control critical system operations including interrupt handling, memory segmentation, task switching, and virtual-to-physical address translation. The missing validation allows a malicious user-mode process to request mapping of these protected regions, effectively granting read and write access to kernel memory.

Once an attacker gains write access to the IDT, they can modify interrupt handler pointers to redirect execution flow to attacker-controlled code when specific interrupts occur. This classic privilege escalation technique allows arbitrary code execution in kernel context.

Root Cause

The root cause is classified under CWE-269 (Improper Privilege Management). The MemoryMapRange syscall implementation lacks validation logic to check requested memory ranges against a blocklist of forbidden kernel regions. The kernel does not verify whether the requested virtual address range overlaps with critical kernel structures before completing the mapping operation. This absence of privilege boundary enforcement allows user-mode processes to access memory that should be exclusively reserved for kernel operations.

Attack Vector

The attack requires local access to the system. An attacker with the ability to execute user-mode code on a NovumOS system can craft a malicious process that invokes Syscall 15 with parameters specifying kernel memory regions. The attack chain typically involves:

  1. Identifying the virtual addresses of kernel structures (IDT, GDT, TSS, or page tables) through information disclosure or known fixed addresses
  2. Calling MemoryMapRange to map the target kernel structure into the process's address space
  3. Modifying interrupt handler entries in the IDT to point to attacker-controlled code
  4. Triggering the modified interrupt to execute code with kernel privileges

The vulnerability enables complete compromise of system integrity and confidentiality, as the attacker gains Ring 0 execution privileges. For detailed technical information, refer to the GitHub Security Advisory GHSA-rg7m-6vh7-f4v2.

Detection Methods for CVE-2026-40572

Indicators of Compromise

  • Unexpected or anomalous calls to Syscall 15 (MemoryMapRange) requesting addresses in kernel memory space
  • User-mode processes with mapped memory regions overlapping known kernel structure addresses (IDT, GDT, TSS ranges)
  • Modifications to interrupt handler entries in the IDT that point to user-space addresses
  • Unexpected privilege elevation of user-mode processes to kernel context

Detection Strategies

  • Monitor syscall activity for Syscall 15 invocations with address ranges outside the expected user-space boundaries
  • Implement kernel integrity monitoring to detect unauthorized modifications to IDT, GDT, TSS, and page table entries
  • Deploy runtime analysis tools to flag user-mode processes that successfully map kernel-reserved memory regions
  • Review system logs for unusual process behavior patterns indicative of privilege escalation attempts

Monitoring Recommendations

  • Enable detailed syscall logging to capture all memory mapping operations and their parameters
  • Implement periodic integrity checks on critical kernel structures to detect tampering
  • Configure alerting for any detected memory mapping requests targeting addresses below the user-space boundary
  • Monitor for unusual process privilege transitions that may indicate successful exploitation

How to Mitigate CVE-2026-40572

Immediate Actions Required

  • Upgrade NovumOS to version 0.24 or later immediately to address this vulnerability
  • Audit any systems running vulnerable versions for signs of compromise or exploitation
  • Restrict local access to NovumOS systems to trusted users only until patching is complete
  • Consider temporarily disabling or restricting access to Syscall 15 functionality if patching cannot be performed immediately

Patch Information

The vulnerability has been fixed in NovumOS version 0.24. The patch implements proper validation in the MemoryMapRange syscall to check requested address ranges against forbidden kernel memory regions before completing the mapping operation. System administrators should update to version 0.24 by downloading the release from the official GitHub repository.

Workarounds

  • Limit local system access to only trusted users who require it for legitimate purposes
  • Implement application-level controls to restrict which processes can invoke memory mapping syscalls
  • Deploy monitoring solutions to detect and alert on potential exploitation attempts while awaiting patch deployment
  • Consider running critical workloads on patched or alternative systems until the vulnerable NovumOS instances can be updated
bash
# Verify NovumOS version to confirm patched status
# Ensure version is 0.24 or later
cat /etc/novumos-release
# Expected output: NovumOS v0.24 or higher

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechNovumos

  • SeverityCRITICAL

  • CVSS Score9.0

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-269
  • Technical References
  • GitHub Release v0.24

  • GitHub Security Advisory GHSA-rg7m-6vh7-f4v2
  • Related CVEs
  • CVE-2026-40317: NovumOS Privilege Escalation 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