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
    • 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-23346

CVE-2026-23346: Linux Kernel Privilege Escalation Flaw

CVE-2026-23346 is a privilege escalation vulnerability in the Linux kernel affecting arm64 architecture. The flaw causes kernel read failures on systems with PAN. This article covers technical details, impact, and mitigation.

Published: March 27, 2026

CVE-2026-23346 Overview

A vulnerability has been resolved in the Linux kernel affecting the arm64 architecture's I/O memory mapping implementation. The issue exists in the ioremap_prot() function, which is called by generic_access_phys() to access physical memory through user mappings. On arm64 systems, the pgprot_t value passed to this function contains all non-address bits from the page table entry (PTE), including permission controls. This results in the creation of a new user mapping that causes kernel faults when accessed on systems with Privileged Access Never (PAN) enabled.

Critical Impact

Systems running affected Linux kernel versions on arm64 architecture may experience kernel panics or denial of service when attempting to read from memory regions that should be kernel-accessible, particularly affecting operations like environ_read and similar virtual file system operations.

Affected Products

  • Linux kernel (arm64 architecture)
  • Systems with PAN (Privileged Access Never) enabled
  • Kernel configurations using generic_access_phys() for physical memory access

Discovery Timeline

  • 2026-03-25 - CVE CVE-2026-23346 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-23346

Vulnerability Analysis

The vulnerability stems from improper handling of page protection attributes in the arm64 ioremap_prot() implementation. When generic_access_phys() attempts to access physical memory, it passes a pgprot_t value derived from the user mapping of the target page frame number (PFN). On arm64, this protection value contains the complete set of non-address bits from the PTE, including user/kernel permission flags.

The consequence is that ioremap_prot() returns a mapping with user-space permissions, which then triggers a fault when the kernel attempts to access this memory on systems where PAN is enabled. PAN is a security feature that prevents the kernel from inadvertently accessing user-space memory, and in this case, it correctly identifies the improperly configured mapping as a user mapping.

The kernel panic manifests with the error "Unable to handle kernel read from unreadable memory" and produces a call trace showing the failure path through __memcpy_fromio, generic_access_phys, and various file system operations.

Root Cause

The root cause is that ioremap_prot() on arm64 does not properly extract only the memory type information from the incoming pgprot_t value. Instead, it preserves all protection bits, including user-space permission controls that conflict with kernel memory access requirements when PAN is active.

Attack Vector

This vulnerability is triggered through normal kernel operations rather than external attack vectors. When processes attempt to read from /proc/[pid]/environ or similar operations that require physical memory access through access_remote_vm(), the kernel faults occur. The vulnerable code path is:

  1. User-space initiates a read operation (e.g., ksys_read)
  2. The kernel calls environ_read which needs to access remote VM
  3. access_remote_vm calls generic_access_phys with user-derived protection attributes
  4. ioremap_prot creates an improperly configured mapping
  5. __memcpy_fromio attempts to read from the mapping
  6. PAN triggers a fault due to the user-space permission bits

The fix extracts only the memory type from the user pgprot_t in ioremap_prot() and adds an assertion to verify that a user mapping is being passed. Additionally, a new ioremap() macro is provided that wraps __ioremap_prot() to avoid incorrectly flagging legitimate ioremap users.

Detection Methods for CVE-2026-23346

Indicators of Compromise

  • Kernel panic messages containing "Unable to handle kernel read from unreadable memory"
  • System log entries showing call traces through __memcpy_fromio and generic_access_phys
  • Unexpected system crashes when reading from /proc/[pid]/environ or similar proc filesystem entries
  • Denial of service conditions on arm64 systems with PAN enabled

Detection Strategies

  • Monitor kernel logs for "Unable to handle kernel read from unreadable memory" error messages
  • Implement system stability monitoring for unexpected reboots or kernel panics on arm64 systems
  • Review dmesg output for call traces involving ioremap_prot and generic_access_phys
  • Deploy kernel crash dump analysis tools to identify this specific failure pattern

Monitoring Recommendations

  • Enable kernel crash dump collection to capture diagnostic information when panics occur
  • Configure centralized logging to aggregate kernel messages from arm64 systems
  • Set up alerting for kernel oops or panic events across affected infrastructure
  • Monitor process access patterns to proc filesystem entries on vulnerable systems

How to Mitigate CVE-2026-23346

Immediate Actions Required

  • Apply the latest kernel patches from upstream Linux kernel stable branches
  • Schedule maintenance windows for kernel updates on production arm64 systems
  • Review system logs for any evidence of this vulnerability being triggered
  • Temporarily disable applications that heavily access /proc/[pid]/environ if patches cannot be immediately applied

Patch Information

The Linux kernel developers have released patches to address this vulnerability. The fix modifies ioremap_prot() to extract only the memory type from the user pgprot_t value and adds validation to ensure user mappings are being processed correctly. Updated kernel versions are available through the following commits:

  • Kernel Commit 3d64dcc0799c
  • Kernel Commit 8f098037139b
  • Kernel Commit d1ad8fe7f72d

Workarounds

  • If immediate patching is not possible, consider temporarily disabling PAN on affected systems (note: this reduces overall security posture)
  • Limit access to proc filesystem entries that trigger the vulnerable code path
  • Implement access controls to restrict which processes can read /proc/[pid]/environ
  • Consider migrating critical workloads to patched systems while updates are being deployed
bash
# Check current kernel version
uname -r

# Verify arm64 architecture
uname -m

# Review kernel logs for related errors
dmesg | grep -E "(ioremap_prot|generic_access_phys|unreadable memory)"

# Apply kernel update (example for Debian/Ubuntu-based systems)
sudo apt update && sudo apt upgrade linux-image-$(uname -r)

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

  • Git Kernel Commit Log

  • Git Kernel Commit Log
  • Related CVEs
  • CVE-2026-23296: Linux Kernel Privilege Escalation Flaw

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

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

  • CVE-2026-23375: Linux Kernel Privilege Escalation Flaw
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