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-2026-23085

CVE-2026-23085: Linux Kernel Privilege Escalation Flaw

CVE-2026-23085 is a privilege escalation vulnerability in the Linux kernel's GICv3 driver that causes memory address truncation on 32-bit systems. This article covers technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2026-23085 Overview

A memory address truncation vulnerability has been discovered in the Linux kernel's GIC-v3-ITS (Generic Interrupt Controller version 3 - Interrupt Translation Service) driver. On 32-bit machines with CONFIG_ARM_LPAE (Large Physical Address Extension) enabled, lowmem allocations can be backed by physical memory addresses above the 32-bit address limit. This issue was identified while experimenting with larger VMSPLIT configurations and caused crashes in the QEMU virt model when using the GICv3 driver.

Critical Impact

The vulnerability can cause system crashes in virtualized environments when the GICv3 driver attempts to store physical addresses exceeding 32-bit limits in unsigned long variables, potentially leading to denial of service conditions and system instability.

Affected Products

  • Linux kernel with GIC-v3-ITS driver on 32-bit ARM systems
  • Systems with CONFIG_ARM_LPAE enabled
  • QEMU virtualized environments using GICv3

Discovery Timeline

  • 2026-02-04 - CVE CVE-2026-23085 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2026-23085

Vulnerability Analysis

The vulnerability exists in the GIC-v3-ITS interrupt controller driver within the Linux kernel. When operating on 32-bit ARM systems with Large Physical Address Extension (LPAE) support enabled, the kernel can allocate memory from physical addresses above the 4GB boundary. The GICv3 driver allocates the itt (Interrupt Translation Table) object using GFP_KERNEL, which defaults to ZONE_NORMAL for higher addresses since all memory below the 4GB physical address limit resides in ZONE_DMA under this configuration.

The core issue is that the driver stores these physical addresses in 32-bit unsigned long variables, which results in address truncation when physical addresses exceed the 32-bit addressable range. This truncation causes the driver to operate on incorrect memory addresses, leading to system crashes.

Root Cause

The root cause is the improper use of 32-bit unsigned long variables to store physical memory addresses in the GIC-v3-ITS driver. On 32-bit systems with LPAE, physical addresses can be larger than 32 bits, requiring the use of the phys_addr_t type instead. The itt_addr variable and other similar variables in the driver were incorrectly typed, causing address truncation when kmalloc() returns memory from physical addresses above 4GB.

Attack Vector

This is a local denial of service vulnerability that can be triggered under specific system configurations. The attack vector involves:

  1. Running a 32-bit ARM system with CONFIG_ARM_LPAE enabled
  2. Using memory configurations where lowmem allocations are backed by physical addresses above 4GB (such as larger VMSPLIT configurations)
  3. The GICv3 driver allocating the itt object via GFP_KERNEL, receiving an address above the 32-bit limit
  4. The physical address being truncated when stored in a 32-bit unsigned long variable
  5. Subsequent operations using the incorrect truncated address, causing system crashes

The vulnerability manifests when the virt_to_phys() function returns addresses that exceed the capacity of the 32-bit variable type. The fix involves changing the itt_addr variable and all other physical address variables in the driver to the correct phys_addr_t type, which properly handles addresses on systems with LPAE support. Technical details can be found in the Linux kernel commit updates.

Detection Methods for CVE-2026-23085

Indicators of Compromise

  • Unexpected system crashes in virtualized ARM environments using GICv3
  • Kernel panic messages referencing the GIC-v3-ITS driver or interrupt controller subsystem
  • Memory access violations in kernel logs related to interrupt translation operations
  • System instability on 32-bit ARM systems with LPAE and large memory configurations

Detection Strategies

  • Monitor kernel logs for crash reports originating from the irqchip/gic-v3-its driver
  • Check system configuration for CONFIG_ARM_LPAE and VMSPLIT settings that enable the vulnerable condition
  • Review kernel version against patched releases to determine exposure status
  • Implement automated kernel configuration auditing to identify at-risk deployments

Monitoring Recommendations

  • Enable enhanced kernel crash dump collection to capture detailed diagnostic information
  • Configure alerting on kernel oops or panic events in monitoring systems
  • Track memory allocation patterns in virtualized environments for anomalies
  • Monitor for repeated GICv3 driver initialization failures

How to Mitigate CVE-2026-23085

Immediate Actions Required

  • Update the Linux kernel to a patched version that corrects the variable type for physical address storage
  • Review system configurations for 32-bit ARM deployments with LPAE enabled
  • Consider temporarily adjusting VMSPLIT configurations to limit memory allocations above 4GB on vulnerable systems
  • Prioritize patching for virtualized environments using QEMU with GICv3

Patch Information

Multiple kernel patches have been released to address this vulnerability. The fix involves changing the itt_addr variable to the correct phys_addr_t type, along with all other variables in the GIC-v3-ITS driver that hold physical addresses. The patches are available through the following kernel commits:

  • Commit 03faa61eb4b9
  • Commit 084ba3b99f2d
  • Commit 1b3233915603
  • Commit 8d76a7d89c12

Workarounds

  • Disable CONFIG_ARM_LPAE if large physical address support is not required for your workload
  • Limit physical memory available to the system to below 4GB to prevent allocations in the problematic address range
  • Use 64-bit ARM kernels where available, as they correctly handle physical addresses with u64 variables
  • For QEMU environments, consider alternative interrupt controller configurations if available
bash
# Check if system is affected by reviewing kernel configuration
zcat /proc/config.gz | grep -E "CONFIG_ARM_LPAE|VMSPLIT"

# Verify current kernel version for patch status
uname -r

# Monitor for GIC-related kernel messages
dmesg | grep -i "gic\|its\|irqchip"

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
  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update

  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-31430: Linux Kernel Privilege Escalation Flaw

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

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

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