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-2020-1751

CVE-2020-1751: GNU Glibc DOS Vulnerability

CVE-2020-1751 is a denial of service flaw in GNU Glibc affecting PowerPC systems through improper array bounds checking in the backtrace function. This article covers the technical details, affected versions, and mitigation.

Published: March 4, 2026

CVE-2020-1751 Overview

An out-of-bounds write vulnerability was discovered in GNU glibc before version 2.31 when handling signal trampolines on PowerPC architecture. The vulnerability exists in the backtrace function, which fails to properly validate array bounds when storing frame addresses during stack unwinding operations. This memory corruption flaw can result in denial of service conditions or potentially enable arbitrary code execution on affected systems.

Critical Impact

Local attackers with low privileges can exploit this out-of-bounds write vulnerability to crash applications or potentially execute arbitrary code on PowerPC systems running vulnerable glibc versions.

Affected Products

  • GNU glibc versions before 2.31
  • Red Hat Enterprise Linux 8.0
  • Canonical Ubuntu Linux 16.04 ESM, 18.04 LTS, and 19.10

Discovery Timeline

  • 2020-04-17 - CVE-2020-1751 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-1751

Vulnerability Analysis

This vulnerability is classified as CWE-787 (Out-of-Bounds Write) and affects the GNU C Library's signal handling mechanism specifically on PowerPC platforms. The flaw resides in how the backtrace() function processes signal trampolines—special code sequences used to handle signal delivery and return.

When a signal is delivered to a process on PowerPC, the kernel sets up a signal trampoline on the stack. The backtrace() function attempts to unwind the stack to capture the call chain, but it fails to properly validate the boundaries of the destination array when storing frame addresses. This allows an attacker to craft conditions where the function writes beyond the allocated buffer, corrupting adjacent memory regions.

The vulnerability requires local access with low privileges to exploit, though the attack complexity is high due to the need to manipulate signal delivery timing and stack layout on PowerPC systems. Successful exploitation can compromise confidentiality, integrity, and availability of the affected system.

Root Cause

The root cause stems from insufficient bounds checking in the backtrace() function implementation for PowerPC architecture. When traversing the stack frames during signal trampoline processing, the function stores frame addresses without verifying that the array index remains within the allocated bounds. This oversight allows writes to memory locations outside the intended buffer when processing specially crafted or malformed signal contexts.

Attack Vector

The attack vector is local, requiring an authenticated user with low-level privileges on a PowerPC-based system. An attacker would need to:

  1. Trigger signal delivery to a target process using vulnerable glibc
  2. Manipulate the signal context or stack layout to create conditions where backtrace() is invoked
  3. Cause the function to exceed array bounds during frame address storage
  4. Leverage the out-of-bounds write to corrupt critical memory structures

The vulnerability mechanism involves improper array bounds validation during stack frame traversal in signal trampoline handling. For detailed technical analysis, refer to the Sourceware Bug Report #25423 which documents the specific code paths involved.

Detection Methods for CVE-2020-1751

Indicators of Compromise

  • Unexpected application crashes or segmentation faults on PowerPC systems, particularly in processes using backtrace() functionality
  • Core dumps showing memory corruption near signal handler stack frames
  • Anomalous signal delivery patterns to processes running glibc-based applications
  • Stack traces indicating corruption in the backtrace() or signal handling code paths

Detection Strategies

  • Monitor system logs for repeated crashes in applications linked against vulnerable glibc versions on PowerPC architecture
  • Implement memory corruption detection tools such as AddressSanitizer during development and testing phases
  • Deploy runtime protection mechanisms that detect out-of-bounds memory access patterns
  • Use SentinelOne's behavioral AI to identify exploitation attempts targeting memory corruption vulnerabilities

Monitoring Recommendations

  • Enable core dump collection and analysis for applications on PowerPC systems to identify potential exploitation attempts
  • Monitor for unusual signal delivery patterns using audit frameworks
  • Track glibc version inventory across PowerPC infrastructure to ensure vulnerable versions are identified
  • Implement file integrity monitoring on glibc libraries to detect unauthorized modifications

How to Mitigate CVE-2020-1751

Immediate Actions Required

  • Upgrade GNU glibc to version 2.31 or later on all affected PowerPC systems
  • Apply vendor-specific security patches from Red Hat, Canonical, or Gentoo as appropriate for your distribution
  • Prioritize patching PowerPC-based infrastructure where this vulnerability is exploitable
  • Review and restrict local access privileges to minimize the attack surface

Patch Information

Security patches addressing this vulnerability are available from multiple vendors:

  • Red Hat: Refer to Red Hat Bug Report CVE-2020-1751 for Enterprise Linux patches
  • Ubuntu: Apply updates from Ubuntu USN-4416-1 Advisory for affected Ubuntu versions
  • Gentoo: Follow remediation guidance in Gentoo GLSA 202006-04 Advisory
  • NetApp: Consult NetApp Security Advisory NTAP-20200430-0002 for affected NetApp products

Workarounds

  • Restrict local user access on PowerPC systems to reduce the pool of potential attackers
  • Implement application-level sandboxing to contain the impact of potential exploitation
  • Monitor and limit the use of backtrace() functionality in critical applications where feasible
  • Deploy defense-in-depth measures including ASLR and stack canaries to complicate exploitation
bash
# Check installed glibc version on Linux systems
ldd --version

# Update glibc on Red Hat/CentOS systems
sudo yum update glibc

# Update glibc on Ubuntu/Debian systems
sudo apt-get update && sudo apt-get upgrade libc6

# Verify the update was applied
ldd --version | head -1

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGnu Glibc

  • SeverityHIGH

  • CVSS Score7.0

  • EPSS Probability0.14%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-787
  • Technical References
  • Gentoo GLSA 202006-04 Advisory

  • NetApp Security Advisory NTAP-20200430-0002

  • Sourceware Bug Report #25423

  • Ubuntu USN-4416-1 Advisory
  • Vendor Resources
  • Red Hat Bug Report CVE-2020-1751
  • Related CVEs
  • CVE-2024-33601: GNU Glibc nscd Denial of Service Flaw

  • CVE-2024-33600: GNU glibc nscd DoS Vulnerability

  • CVE-2020-27618: GNU Glibc iconv DoS Vulnerability

  • CVE-2021-3999: Gnu Glibc Buffer Overflow Vulnerability
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