A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-69651

CVE-2025-69651: GNU Binutils readelf DoS Vulnerability

CVE-2025-69651 is a denial of service flaw in GNU Binutils readelf that triggers invalid pointer frees when processing malformed ELF binaries. This article covers the technical details, affected versions, and mitigation.

Published: March 13, 2026

CVE-2025-69651 Overview

GNU Binutils through version 2.46 contains a memory safety vulnerability in the readelf utility that can lead to an invalid pointer free when processing a specially crafted ELF binary. The vulnerability occurs when malformed relocation or symbol data causes dump_relocations to return early due to parsing errors, leaving the internal all_relocations array partially uninitialized. Subsequently, process_got_section_contents() may attempt to free an invalid r_symbol pointer, triggering memory corruption detection in glibc and causing the program to terminate with SIGABRT.

Critical Impact

This vulnerability allows attackers to cause denial of service by crashing the readelf utility when analyzing malicious ELF files. While no evidence of further memory corruption or code execution was observed, the impact can disrupt development workflows and automated analysis pipelines that rely on binutils for ELF processing.

Affected Products

  • GNU Binutils through version 2.46
  • All platforms running vulnerable versions of readelf
  • Development environments and CI/CD pipelines utilizing binutils for binary analysis

Discovery Timeline

  • 2026-03-06 - CVE-2025-69651 published to NVD
  • 2026-03-10 - Last updated in NVD database

Technical Details for CVE-2025-69651

Vulnerability Analysis

This vulnerability represents a classic memory safety issue stemming from improper error handling in the readelf component of GNU Binutils. The root cause lies in the interaction between two functions: dump_relocations() and process_got_section_contents(). When dump_relocations() encounters parsing errors while processing malformed ELF relocation or symbol data, it returns early without properly initializing all elements of the all_relocations array.

The vulnerability is triggered locally when a user analyzes a crafted ELF binary, requiring user interaction to open or process the malicious file. While the attack complexity is low once the malicious file is in place, the impact is limited to availability—causing the readelf process to crash without affecting confidentiality or integrity.

Root Cause

The vulnerability stems from insufficient initialization and validation of the all_relocations array when error conditions occur during ELF parsing. When dump_relocations() exits early due to malformed input, pointers within the array may contain uninitialized or garbage values. The process_got_section_contents() function subsequently treats these invalid pointers as valid memory addresses and attempts to free them, triggering glibc's memory corruption detection mechanisms.

This is classified as CWE-476 (NULL Pointer Dereference) and represents a failure to properly handle error states during memory management operations.

Attack Vector

The attack requires local access to the target system and user interaction—specifically, the victim must process a malicious ELF binary using the vulnerable readelf utility. An attacker could distribute crafted ELF files through various channels such as software repositories, email attachments, or compromised development dependencies.

When the victim runs readelf against the malicious file, the parsing error in the relocation data triggers the invalid free condition. The glibc memory allocator detects the corruption attempt and terminates the process with SIGABRT. While this limits the impact to denial of service, it can be particularly disruptive in automated environments that rely on binutils for binary analysis, such as CI/CD pipelines, malware analysis sandboxes, or development toolchains.

The vulnerability mechanism involves malformed relocation or symbol entries in the ELF file structure that cause early return from dump_relocations(), followed by improper cleanup in process_got_section_contents(). For technical details on the specific code paths involved, see the Sourceware Bug Report #33700.

Detection Methods for CVE-2025-69651

Indicators of Compromise

  • Unexpected readelf process terminations with SIGABRT signal
  • Core dumps or crash reports from binutils components during ELF analysis
  • Unusual or malformed ELF files appearing in development directories or package repositories
  • Repeated crashes when processing specific ELF binaries from untrusted sources

Detection Strategies

  • Monitor for SIGABRT signals from readelf processes, which indicate memory corruption detection
  • Implement file integrity monitoring on ELF binaries in development and analysis environments
  • Use static analysis tools to validate ELF file structure before processing with vulnerable binutils versions
  • Deploy sandboxed environments for analyzing untrusted ELF binaries to contain potential crashes

Monitoring Recommendations

  • Configure crash reporting to capture and alert on readelf SIGABRT events
  • Implement logging for all ELF file analysis operations to identify potentially malicious files
  • Monitor CI/CD pipeline health for unusual binutils failures that may indicate exploitation attempts
  • Review system logs for patterns of repeated binutils crashes against specific files

How to Mitigate CVE-2025-69651

Immediate Actions Required

  • Update GNU Binutils to the latest patched version that addresses this vulnerability
  • Avoid processing ELF binaries from untrusted sources until the patch is applied
  • Implement sandboxing for ELF analysis workflows to contain potential crashes
  • Review recent ELF files processed that may have caused unexplained crashes

Patch Information

GNU has released a fix for this vulnerability. The patch is available through the official Sourceware Git repository at commit ea4bc025abdba85a90e26e13f551c16a44bfa921. System administrators should update to a binutils version that includes this commit or apply the patch manually if a distribution update is not yet available.

For detailed patch information, see the Sourceware Git Commit Details.

Workarounds

  • Run readelf in a sandboxed environment or container when analyzing untrusted ELF files
  • Implement pre-validation of ELF files using alternative tools before processing with binutils
  • Configure resource limits and monitoring for binutils processes to detect and contain crashes
  • Use alternative ELF analysis tools for untrusted binaries until the patch is applied
bash
# Configuration example
# Run readelf in a resource-limited sandbox using firejail
firejail --quiet --noprofile --noroot readelf -a suspicious.elf

# Or use a container for isolation
docker run --rm -v $(pwd):/work:ro binutils-sandbox readelf -a /work/suspicious.elf

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGnu Binutils

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • NVD-CWE-noinfo

  • CWE-476
  • Technical References
  • Sourceware Bug Report #33700
  • Vendor Resources
  • Sourceware Git Commit Details
  • Related CVEs
  • CVE-2026-4647: GNU Binutils BFD Library DoS Vulnerability

  • CVE-2025-69650: GNU Binutils Double Free DoS Vulnerability

  • CVE-2025-69649: GNU Binutils Denial of Service Vulnerability

  • CVE-2025-69652: GNU Binutils readelf DoS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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