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-2024-47745

CVE-2024-47745: Linux Kernel Privilege Escalation Flaw

CVE-2024-47745 is a privilege escalation vulnerability in the Linux Kernel that allows attackers to bypass SELinux W^X policies through remap_file_pages(). This article covers the technical details, security impact, and mitigation.

Updated: January 22, 2026

CVE-2024-47745 Overview

CVE-2024-47745 is an authorization bypass vulnerability in the Linux kernel's memory management subsystem. The vulnerability exists in the remap_file_pages() syscall handler, which calls do_mmap() directly without invoking the security_mmap_file() LSM (Linux Security Module) hook. This missing security check allows attackers to bypass Write XOR Execute (W^X) policies enforced by SELinux, potentially enabling the creation of memory pages with RWX (Read-Write-Execute) permissions.

Critical Impact

Local attackers can bypass SELinux W^X security policies to create executable memory regions, potentially facilitating code injection attacks and privilege escalation on affected Linux systems.

Affected Products

  • Linux Kernel (multiple versions)
  • Debian Linux (via kernel packages)
  • Enterprise Linux distributions using affected kernel versions

Discovery Timeline

  • 2024-10-21 - CVE CVE-2024-47745 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2024-47745

Vulnerability Analysis

This vulnerability stems from an improper control flow implementation (CWE-670) in the Linux kernel's memory management code. When a process has previously called personality(READ_IMPLIES_EXEC) and subsequently invokes remap_file_pages() for RW (Read-Write) pages, the pages are remapped to RWX (Read-Write-Execute) without proper security validation. This occurs because the remap_file_pages() syscall handler bypasses the security_mmap_file() LSM hook that would normally enforce memory protection policies.

The vulnerability is similar to CVE-2016-10044, which achieved the same SELinux bypass through the AIO (Asynchronous I/O) subsystem. In both cases, the fundamental issue is a missing security check that allows memory protection policies to be circumvented.

Root Cause

The root cause is the absence of the security_mmap_file() LSM hook call within the remap_file_pages() syscall handler before invoking do_mmap(). The LSM framework provides security hooks that allow security modules like SELinux to enforce mandatory access controls. When this hook is not called, SELinux cannot validate whether the memory mapping request complies with the system's security policy, specifically the W^X policy that prevents memory pages from being both writable and executable simultaneously.

Attack Vector

The attack requires local access to the system and low privileges. An attacker can exploit this vulnerability by:

  1. Creating a memory-mapped file using memfd_create() and mmap() with PROT_READ | PROT_WRITE permissions
  2. Modifying the process personality using personality(READ_IMPLIES_EXEC | old) to set the READ_IMPLIES_EXEC flag
  3. Calling remap_file_pages() on the mapped memory region
  4. The kernel will remap pages to RWX without SELinux validation

The CVE description includes a proof-of-concept demonstrating this attack chain. The PoC creates a shared memory mapping, enables READ_IMPLIES_EXEC personality, uses remap_file_pages() to remap pages, and then displays /proc/self/maps to show the resulting RWX memory region exists despite W^X policy enforcement.

Detection Methods for CVE-2024-47745

Indicators of Compromise

  • Processes with unexpected RWX memory mappings visible in /proc/[pid]/maps
  • Unusual remap_file_pages() syscall activity following personality() syscalls with READ_IMPLIES_EXEC flag
  • SELinux denials or anomalies related to memory execution permissions
  • Processes using memfd_create() combined with personality modifications

Detection Strategies

  • Monitor for remap_file_pages() syscalls using audit subsystem rules (e.g., auditctl -a always,exit -F arch=b64 -S remap_file_pages)
  • Implement process memory monitoring to detect unexpected RWX regions in process address spaces
  • Use SELinux audit logs to identify potential policy bypass attempts
  • Deploy kernel-level monitoring for personality changes with READ_IMPLIES_EXEC flag

Monitoring Recommendations

  • Enable comprehensive syscall auditing for memory management operations including mmap, remap_file_pages, and personality
  • Configure SentinelOne Singularity platform for Linux endpoint monitoring with memory protection policy detection
  • Implement periodic scanning of /proc/[pid]/maps for unexpected executable memory regions
  • Set up alerting for processes that combine personality modifications with file remapping operations

How to Mitigate CVE-2024-47745

Immediate Actions Required

  • Apply kernel patches from the official Linux kernel repository immediately
  • Update to patched kernel versions available through your distribution's package manager
  • Review and audit systems for potential exploitation attempts before patching
  • Consider restricting access to the remap_file_pages() syscall via seccomp filters where applicable

Patch Information

The Linux kernel team has released patches to address this vulnerability. The fix adds the security_mmap_file() LSM hook call to the remap_file_pages() syscall handler, ensuring that security modules like SELinux can properly validate memory protection requests before they are executed.

Official patches are available through the following kernel git commits:

  • Kernel Git Commit 3393fdd
  • Kernel Git Commit 49d3a4a
  • Kernel Git Commit ce14f38
  • Kernel Git Commit ea7e2d5

Debian users should refer to the Debian LTS Announcement for distribution-specific updates.

Workarounds

  • Use seccomp filters to block or restrict remap_file_pages() syscall access for untrusted processes
  • Implement application sandboxing with restricted syscall profiles that exclude remap_file_pages()
  • Enable additional process isolation using container technologies with restricted syscall allowlists
  • Monitor for exploitation attempts while awaiting patch deployment
bash
# Example seccomp filter configuration (conceptual)
# Block remap_file_pages syscall using seccomp BPF
# Add to application startup or container security profile
# Syscall number for remap_file_pages: 216 (x86_64)

# Verify current kernel version
uname -r

# Check for available kernel updates
apt update && apt list --upgradable | grep linux-image
# or for RHEL-based systems
yum check-update kernel

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.00%

  • 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-670
  • Technical References
  • Kernel Git Commit 0f910db

  • Debian LTS Announcement
  • Vendor Resources
  • Kernel Git Commit 3393fdd

  • Kernel Git Commit 49d3a4a

  • Kernel Git Commit ce14f38

  • Kernel Git Commit ea7e2d5
  • Related CVEs
  • CVE-2026-31413: Linux Kernel BPF Privilege Escalation

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

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

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