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

CVE-2025-71077: Linux Kernel TPM Privilege Escalation

CVE-2025-71077 is a privilege escalation vulnerability in the Linux kernel's TPM subsystem affecting PCR bank allocation. This article covers the technical details, affected versions, security impact, and mitigation.

Updated: January 22, 2026

CVE-2025-71077 Overview

A boundary condition error vulnerability has been identified in the Linux kernel's Trusted Platform Module (TPM) subsystem. The tpm2_get_pcr_allocation() function fails to enforce an upper limit on the number of PCR (Platform Configuration Register) banks, potentially allowing out-of-bounds values from external I/O to cause memory corruption or other undefined behavior.

Critical Impact

Malformed TPM responses containing excessive PCR bank counts could lead to memory corruption, denial of service, or potentially other security impacts in affected Linux kernel versions.

Affected Products

  • Linux kernel (versions prior to the security patch)
  • Systems utilizing TPM 2.0 hardware with affected kernel versions
  • Enterprise and embedded Linux distributions with vulnerable kernel builds

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-71077 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-71077

Vulnerability Analysis

This vulnerability exists in the TPM driver subsystem of the Linux kernel, specifically within the PCR allocation retrieval mechanism. The tpm2_get_pcr_allocation() function is responsible for querying and processing the number of PCR banks available on a TPM 2.0 device. However, the function does not validate or cap the number of banks reported by the TPM hardware.

When interacting with TPM hardware, the kernel receives data via external I/O operations. If a malicious or malfunctioning TPM device reports an excessively large number of PCR banks, the kernel would attempt to process this value without proper bounds checking. This could result in memory access beyond allocated buffers, leading to potential memory corruption, kernel crashes, or other undefined behavior.

The fix introduces a cap of eight PCR banks, which represents a reasonable upper limit for legitimate TPM implementations while preventing out-of-bounds conditions from causing significant harm.

Root Cause

The root cause is missing input validation in the tpm2_get_pcr_allocation() function. The function accepts the PCR bank count value directly from external I/O without verifying that it falls within expected bounds. This violates the security principle of never trusting external input, even from hardware interfaces that are typically considered trusted.

Attack Vector

The attack vector involves providing malformed TPM responses that contain exaggerated PCR bank count values. While practical exploitation would typically require either:

  1. A compromised or malicious TPM device
  2. The ability to intercept and modify TPM communication
  3. A virtualized TPM that can be manipulated by the hypervisor

The fix addresses this by capping the maximum number of PCR banks at eight, ensuring that even if malformed data is received, the impact is limited and controlled. This defensive programming approach prevents potential buffer overflows or other memory safety issues that could arise from unbounded iteration or allocation based on the unchecked value.

Detection Methods for CVE-2025-71077

Indicators of Compromise

  • Unusual kernel crashes or panics in TPM-related code paths
  • Unexpected memory corruption errors in systems utilizing TPM functionality
  • Anomalous TPM driver behavior or error messages in kernel logs

Detection Strategies

  • Monitor kernel logs for TPM subsystem errors using dmesg | grep -i tpm
  • Deploy kernel-level monitoring to detect anomalous TPM driver activity
  • Implement integrity monitoring on TPM-related kernel modules
  • Review system logs for unexpected PCR bank enumeration failures

Monitoring Recommendations

  • Enable kernel audit logging for TPM-related system calls and operations
  • Configure system monitoring to alert on kernel panics or oops involving TPM drivers
  • Implement continuous vulnerability scanning to identify unpatched kernel versions
  • Monitor for unusual TPM device behavior in virtualized environments

How to Mitigate CVE-2025-71077

Immediate Actions Required

  • Update the Linux kernel to a patched version containing the fix
  • Review systems utilizing TPM 2.0 functionality for signs of exploitation
  • Prioritize patching systems in security-critical environments
  • Consider temporarily disabling TPM functionality if patching is not immediately possible

Patch Information

The vulnerability has been addressed through multiple kernel commits that cap the number of PCR banks to eight. The patches are available in the stable kernel branches:

  • Kernel Git Commit 858344b
  • Kernel Git Commit b694921
  • Kernel Git Commit ceb70d3
  • Kernel Git Commit d884816
  • Kernel Git Commit faf07e6

Organizations should apply these patches through their standard kernel update procedures or distribution security updates.

Workarounds

  • If patching is not immediately feasible, consider disabling TPM functionality by blacklisting the TPM kernel modules
  • Restrict physical access to systems to prevent TPM device tampering
  • In virtualized environments, ensure TPM emulation is properly configured and secured
  • Monitor for vendor-specific kernel updates from your Linux distribution
bash
# Temporarily disable TPM kernel modules (workaround only)
echo "blacklist tpm" >> /etc/modprobe.d/tpm-disable.conf
echo "blacklist tpm_tis" >> /etc/modprobe.d/tpm-disable.conf
echo "blacklist tpm_crb" >> /etc/modprobe.d/tpm-disable.conf

# Verify TPM modules are not loaded
lsmod | grep tpm

# After patching, remove the blacklist and reload modules
# rm /etc/modprobe.d/tpm-disable.conf
# modprobe tpm_tis

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

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

  • Kernel Git Commit b694921

  • Kernel Git Commit ceb70d3

  • Kernel Git Commit d884816

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