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-2025-71228

CVE-2025-71228: Linux Kernel Privilege Escalation Flaw

CVE-2025-71228 is a privilege escalation vulnerability in the Linux kernel affecting LoongArch architecture. The flaw causes kernel page faults on 32-bit platforms. This article covers technical details, impact, and mitigation.

Published: February 20, 2026

CVE-2025-71228 Overview

CVE-2025-71228 is a kernel vulnerability affecting the Linux kernel's LoongArch architecture memory management subsystem. The flaw exists in the handling of protection_map[] for VM_NONE and VM_SHARED Virtual Memory Areas (VMAs). On 32-bit LoongArch platforms, the _PAGE_PROTNONE value is set to 0, which causes pages to become non-present when a VMA is configured as VM_NONE or VM_SHARED. This incorrect page table configuration triggers kernel page faults and system crashes (Oops).

Critical Impact

Systems running Linux kernel on LoongArch 32-bit platforms may experience kernel panics and system instability when memory regions are marked with VM_NONE or VM_SHARED flags, potentially leading to denial of service conditions.

Affected Products

  • Linux kernel on LoongArch 32-bit platforms
  • Linux kernel versions prior to the patched commits

Discovery Timeline

  • 2026-02-18 - CVE CVE-2025-71228 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2025-71228

Vulnerability Analysis

This vulnerability stems from an incorrect implementation in the LoongArch architecture-specific memory protection mapping. The Linux kernel maintains a protection_map[] array that defines page table entry (PTE) protection bits for different combinations of VMA flags. On LoongArch 32-bit systems, the _PAGE_PROTNONE constant evaluates to 0, which is problematic because it effectively clears the page presence bit.

When the kernel attempts to set up memory regions with VM_NONE (no access permissions) or VM_SHARED (shared memory) flags, the resulting PTE lacks the necessary present bit, causing the hardware to treat these pages as non-present. Any subsequent access to these memory regions triggers a page fault that the kernel cannot properly handle, resulting in a kernel Oops and potential system crash.

Root Cause

The root cause is the use of _PAGE_PROTNONE in the protection_map[] initialization for LoongArch 32-bit platforms. Since _PAGE_PROTNONE is defined as 0 on these platforms, using it to represent "protected but present" pages incorrectly marks them as non-present instead. The fix replaces _PAGE_PROTNONE with _PAGE_PRESENT in the affected protection_map[] entries, ensuring that pages remain present in the page tables even when access is restricted.

Attack Vector

The attack vector for this vulnerability is primarily local, though exploitation characteristics depend on system configuration. An attacker or legitimate process could trigger the vulnerability by:

  1. Creating a shared memory mapping using mmap() with MAP_SHARED flag
  2. Setting up memory regions with PROT_NONE protection via mprotect()
  3. Any kernel subsystem internally using VM_NONE or VM_SHARED VMA flags

When triggered, the vulnerability causes immediate kernel page faults, leading to system instability or crashes. The vulnerability is described in prose as the fix involves replacing _PAGE_PROTNONE with _PAGE_PRESENT in the protection map initialization. Technical details can be found in the kernel git commits.

Detection Methods for CVE-2025-71228

Indicators of Compromise

  • Kernel Oops messages in system logs (/var/log/kern.log or dmesg) referencing page faults on LoongArch systems
  • Unexpected system crashes or reboots on LoongArch 32-bit platforms
  • Stack traces indicating issues in memory management or VMA handling code paths

Detection Strategies

  • Monitor kernel logs for page fault exceptions related to LoongArch memory management subsystems
  • Check running kernel version against known vulnerable versions using uname -r
  • Review system crash dumps for patterns indicating protection_map[] related failures
  • Audit system call activity for unusual mmap() or mprotect() patterns with VM_NONE or VM_SHARED flags

Monitoring Recommendations

  • Implement real-time kernel log monitoring for Oops and panic events on LoongArch systems
  • Deploy crash dump collection and analysis for forensic investigation
  • Monitor system stability metrics and unexpected reboot patterns

How to Mitigate CVE-2025-71228

Immediate Actions Required

  • Identify all systems running Linux kernel on LoongArch 32-bit architecture
  • Review deployed kernel versions and compare against patched versions
  • Plan and schedule kernel updates to incorporate the security fix
  • Consider migrating critical workloads to patched systems during the update window

Patch Information

The Linux kernel maintainers have released patches to address this vulnerability. The fix replaces _PAGE_PROTNONE with _PAGE_PRESENT in the protection_map[] array for affected VMA flag combinations. Multiple stable kernel branches have received the fix:

  • Kernel Git Commit 04630328
  • Kernel Git Commit 380d7c1a
  • Kernel Git Commit 5fbdf95d
  • Kernel Git Commit 9531210f
  • Kernel Git Commit d5be4469

Workarounds

  • No official workarounds are available; applying the kernel patch is the recommended remediation
  • Limit exposure by reducing the use of shared memory mappings where possible until patched
  • Consider temporarily migrating workloads to 64-bit LoongArch systems if available, as the vulnerability is specific to 32-bit platforms
bash
# Check current kernel version
uname -r

# Verify LoongArch architecture
uname -m

# Update kernel on systems with package management
# For distributions with patched kernels available:
sudo apt update && sudo apt upgrade linux-image-*
# or
sudo yum 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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit 380d7c1a

  • Kernel Git Commit 5fbdf95d

  • Kernel Git Commit 9531210f

  • Kernel Git Commit d5be4469
  • 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