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-2025-69650

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

CVE-2025-69650 is a double free vulnerability in GNU Binutils readelf that causes denial of service when processing malformed ELF binaries. This article covers the technical details, affected versions, impact, and mitigation.

Published: March 13, 2026

CVE-2025-69650 Overview

A double free vulnerability exists in GNU Binutils through version 2.46 within the readelf utility when processing crafted ELF binaries containing malformed relocation data. During GOT (Global Offset Table) relocation handling, the dump_relocations function may return early without properly initializing the all_relocations array. Subsequently, process_got_section_contents() passes an uninitialized r_symbol pointer to free(), triggering a double free condition that terminates the program with SIGABRT.

Critical Impact

This vulnerability enables denial of service attacks against systems processing untrusted ELF binaries. While no exploitable memory corruption or code execution has been observed, the ability to crash the readelf utility through malformed input poses risks in automated build systems, binary analysis pipelines, and security tooling that rely on Binutils for ELF processing.

Affected Products

  • GNU Binutils through version 2.46
  • Systems using readelf for ELF binary analysis
  • Build environments and CI/CD pipelines processing untrusted ELF files

Discovery Timeline

  • 2026-03-06 - CVE-2025-69650 published to NVD
  • 2026-03-12 - Last updated in NVD database

Technical Details for CVE-2025-69650

Vulnerability Analysis

The vulnerability stems from improper memory management in the readelf component of GNU Binutils. When readelf processes an ELF binary with specially crafted malformed relocation data, a control flow issue arises in the GOT relocation handling path. The dump_relocations function contains an early return condition that can be triggered by malformed input, causing it to exit before properly initializing the all_relocations array.

This uninitialized state propagates to the process_got_section_contents() function, which subsequently attempts to free memory through the r_symbol pointer. Since this pointer was never properly initialized, calling free() on it results in undefined behavior—specifically, a double free condition where the same memory region may be freed twice or an invalid pointer is passed to the memory allocator.

Root Cause

The root cause is a CWE-415 (Double Free) vulnerability arising from insufficient initialization of the all_relocations array in error handling paths within dump_relocations. When the function returns early due to malformed relocation data, the caller (process_got_section_contents()) is unaware that the pointer remains uninitialized and proceeds to call free() on it. This represents a classic case of improper resource management where cleanup routines execute without verifying proper initialization state.

Attack Vector

The attack vector is network-accessible, as an attacker can craft a malicious ELF binary with malformed relocation sections and distribute it through various channels:

  1. Supply chain attacks: Embedding malicious ELF files in software packages or repositories
  2. Binary analysis services: Targeting online services that use readelf for ELF inspection
  3. Build system exploitation: Submitting crafted binaries to CI/CD pipelines that perform automated analysis
  4. Security tool disruption: Causing denial of service in security scanning tools that rely on Binutils

The attack requires no authentication or user interaction—simply processing the malformed ELF binary triggers the vulnerability. While the impact is limited to denial of service (program termination via SIGABRT), this can disrupt critical development and security workflows.

Detection Methods for CVE-2025-69650

Indicators of Compromise

  • Unexpected readelf process terminations with SIGABRT signal
  • Core dump files generated by readelf crashes indicating double free conditions
  • Memory allocator error messages in system logs mentioning double free or corruption
  • ELF files with abnormal or malformed relocation section structures

Detection Strategies

  • Monitor for abnormal readelf process terminations in build environments and analysis pipelines
  • Implement input validation for ELF files before processing with Binutils tools
  • Deploy application crash monitoring to detect patterns of SIGABRT signals from readelf
  • Use address sanitizer (ASAN) builds of Binutils in testing environments to catch memory errors

Monitoring Recommendations

  • Enable core dump collection for Binutils utilities to capture crash artifacts for investigation
  • Implement rate limiting and isolation for services that process untrusted ELF binaries
  • Monitor system logs for glibc memory allocator errors indicating double free conditions
  • Track Binutils version inventory across infrastructure to identify vulnerable deployments

How to Mitigate CVE-2025-69650

Immediate Actions Required

  • Update GNU Binutils to a patched version that addresses this double free vulnerability
  • Avoid processing untrusted or user-supplied ELF binaries with vulnerable Binutils versions
  • Implement sandboxing for ELF binary analysis workflows to contain potential crashes
  • Review and audit systems where readelf processes external input automatically

Patch Information

The vulnerability has been addressed in the upstream GNU Binutils repository. The fix is available in commit ea4bc025abdba85a90e26e13f551c16a44bfa921. Organizations should apply this patch or update to a Binutils version that includes this fix. For detailed information about the bug and patch, refer to the Sourceware Bug Report #33698 and the Sourceware Git Commit.

Workarounds

  • Isolate readelf processes using containers or sandboxes to prevent denial of service from affecting other system components
  • Implement pre-validation of ELF files using alternative tools before processing with Binutils
  • Limit exposure by restricting which systems can receive and process untrusted ELF binaries
  • Deploy watchdog processes to automatically restart crashed analysis services
bash
# Configuration example: Running readelf in isolated environment
# Use firejail or similar sandboxing to contain potential crashes
firejail --quiet --noprofile --private readelf -a suspicious_binary.elf

# Alternative: Use timeout to prevent hanging and limit resource impact
timeout --signal=KILL 30s readelf -a untrusted_binary.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

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-415
  • Technical References
  • Sourceware Bug Report #33698
  • Vendor Resources
  • Sourceware Git Commit Message
  • Related CVEs
  • CVE-2026-4647: GNU Binutils BFD Library DoS Vulnerability

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

  • CVE-2025-69652: GNU Binutils readelf DoS Vulnerability

  • CVE-2025-69648: GNU Binutils readelf DoS 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