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-2021-37576

CVE-2021-37576: Linux Kernel Buffer Overflow Vulnerability

CVE-2021-37576 is a buffer overflow vulnerability in the Linux Kernel on powerpc platform that enables KVM guest OS users to corrupt host OS memory. This article covers technical details, affected versions, and mitigation.

Published: February 25, 2026

CVE-2021-37576 Overview

CVE-2021-37576 is a memory corruption vulnerability in the Linux kernel's KVM (Kernel-based Virtual Machine) implementation for the PowerPC platform. The vulnerability exists in arch/powerpc/kvm/book3s_rtas.c through Linux kernel version 5.13.5, where improper handling of rtas_args.nargs allows KVM guest OS users to cause host OS memory corruption.

This out-of-bounds write vulnerability (CWE-787) enables malicious actors within a guest virtual machine to corrupt memory in the host operating system, potentially leading to privilege escalation, denial of service, or complete host system compromise.

Critical Impact

A malicious KVM guest user on PowerPC systems can trigger host OS memory corruption, potentially achieving VM escape and compromising the hypervisor host.

Affected Products

  • Linux Kernel through version 5.13.5 (PowerPC platform)
  • Fedora 33
  • Fedora 34

Discovery Timeline

  • 2021-07-26 - CVE-2021-37576 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2021-37576

Vulnerability Analysis

The vulnerability resides in the RTAS (Run-Time Abstraction Services) handling code within the KVM subsystem for PowerPC Book3S processors. RTAS provides a firmware interface that allows operating systems to interact with hardware in an abstracted manner on PowerPC platforms.

The flaw occurs due to insufficient validation of the rtas_args.nargs parameter, which specifies the number of arguments passed to RTAS calls. When a guest VM makes RTAS calls through the KVM hypervisor interface, the kernel fails to properly validate the bounds of this parameter before using it in memory operations.

This boundary condition error allows a guest OS user to supply a maliciously crafted nargs value that causes the kernel to write data beyond the intended buffer boundaries, resulting in host memory corruption. The attack requires local access from within a guest VM but does not require elevated privileges within the guest.

Root Cause

The root cause is an out-of-bounds write vulnerability (CWE-787) stemming from inadequate input validation in the arch/powerpc/kvm/book3s_rtas.c file. The code path handling RTAS arguments fails to enforce proper bounds checking on the rtas_args.nargs value before using it in memory copy operations.

The vulnerability is tracked internally as CID-f62f3c20647e, referencing the commit that addresses the issue. The absence of sanitization on guest-supplied parameters creates a condition where untrusted input directly influences memory operations in the host kernel context.

Attack Vector

The attack vector requires local access from within a KVM guest virtual machine running on a PowerPC platform. The attack flow involves:

  1. An attacker gains execution within a KVM guest OS on a vulnerable PowerPC host
  2. The attacker crafts malicious RTAS calls with manipulated nargs values
  3. These calls pass through the KVM hypervisor interface to the host kernel
  4. The host kernel's insufficient validation allows the corrupted nargs value to cause out-of-bounds memory writes
  5. Depending on the memory regions corrupted, this can lead to host OS instability, privilege escalation, or complete host compromise

The vulnerability enables a VM escape scenario where guest-level access can compromise host-level security, making it particularly dangerous in multi-tenant virtualization environments.

Detection Methods for CVE-2021-37576

Indicators of Compromise

  • Unexpected kernel crashes or panics on PowerPC hosts running KVM virtual machines
  • Anomalous RTAS call patterns from guest VMs with unusual argument counts
  • Memory corruption errors or data integrity issues in host kernel logs
  • Suspicious guest VM behavior targeting KVM hypervisor interfaces

Detection Strategies

  • Monitor kernel logs (dmesg) for memory corruption errors or unexpected page faults in KVM-related code paths
  • Implement audit logging for KVM guest RTAS interactions on PowerPC systems
  • Deploy kernel integrity monitoring tools to detect unauthorized memory modifications
  • Use SentinelOne's kernel-level monitoring capabilities to identify anomalous hypervisor interactions

Monitoring Recommendations

  • Enable verbose KVM debugging on PowerPC hosts to capture detailed RTAS call information
  • Configure system monitoring to alert on kernel oops or panics originating from book3s_rtas.c
  • Review guest VM behavior patterns for unusual RTAS call frequencies or argument patterns
  • Implement memory integrity checking mechanisms for critical host kernel regions

How to Mitigate CVE-2021-37576

Immediate Actions Required

  • Update Linux kernel to a patched version that includes commit f62f3c20647ebd5fb6ecb8f0b477b9281c44c10a
  • Apply vendor-specific security updates from distribution maintainers (Fedora, Debian, etc.)
  • Review and restrict access to KVM guest creation and management on affected PowerPC systems
  • Consider temporarily disabling KVM on critical PowerPC systems until patches are applied

Patch Information

The vulnerability has been addressed in the upstream Linux kernel via commit f62f3c20647ebd5fb6ecb8f0b477b9281c44c10a. Distribution-specific patches are available:

  • Fedora: Security updates available via Fedora Package Announcement
  • Debian: Debian Security Advisory DSA-4978
  • NetApp: NetApp Security Advisory ntap-20210917-0005

Additional discussion is available on the Openwall OSS Security mailing list.

Workarounds

  • Restrict KVM guest creation to trusted administrators only on PowerPC systems
  • Implement network segmentation to isolate systems running untrusted guest VMs
  • Consider using alternative virtualization solutions on PowerPC until patches are deployed
  • Enable additional access controls and monitoring for KVM management interfaces
bash
# Check current kernel version for vulnerability status
uname -r

# On Fedora systems, update to patched kernel
sudo dnf update kernel

# On Debian systems, apply security updates
sudo apt update && sudo apt upgrade linux-image-*

# Verify patch application by checking for commit in kernel changelog
zcat /usr/share/doc/linux-image-$(uname -r)/changelog.Debian.gz | grep -i f62f3c20647e

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux Kernel

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • 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-787
  • Technical References
  • Fedora Package Announcement

  • Fedora Package Announcement

  • Linux PPC Development Message

  • NetApp Security Advisory ntap-20210917-0005

  • Debian Security Advisory DSA-4978
  • Vendor Resources
  • Openwall OSS Security Discussion

  • Linux Kernel Commit f62f3c2
  • Related CVEs
  • CVE-2026-31449: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31512: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31438: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31450: Linux Kernel Buffer Overflow Vulnerability
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