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

CVE-2025-69645: Binutils objdump DOS Vulnerability

CVE-2025-69645 is a denial-of-service flaw in Binutils objdump triggered by malformed DWARF debug data. Attackers can crash the application using crafted binaries. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 13, 2026

CVE-2025-69645 Overview

Binutils objdump contains a denial-of-service vulnerability when processing a crafted binary with malformed DWARF debug information. A logic error in the handling of DWARF compilation units can result in an invalid offset_size value being used inside byte_get_little_endian, leading to an abort (SIGABRT). The issue was observed in binutils 2.44. A local attacker can trigger the crash by supplying a malicious input file.

Critical Impact

An attacker can cause a denial of service by supplying a specially crafted binary file with malformed DWARF debug information, causing objdump to abort unexpectedly. This could disrupt development workflows, CI/CD pipelines, or any automated binary analysis processes relying on binutils.

Affected Products

  • Binutils 2.44

Discovery Timeline

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

Technical Details for CVE-2025-69645

Vulnerability Analysis

This vulnerability is classified as CWE-400 (Uncontrolled Resource Consumption), manifesting as a denial-of-service condition in the Binutils objdump utility. The flaw exists in how objdump parses DWARF debugging information embedded within binary files. DWARF is a widely-used debugging data format that stores information about variables, types, and source code mapping within compiled binaries.

When processing DWARF compilation units, a logic error allows an invalid offset_size value to propagate into the byte_get_little_endian function. This function is responsible for reading multi-byte values from the binary in little-endian format. When called with an unexpected or invalid size parameter, the function encounters an unhandled condition that triggers a SIGABRT signal, causing immediate process termination.

Root Cause

The root cause is a logic error in the DWARF parsing code that fails to properly validate the offset_size field within DWARF compilation unit headers. The offset_size value determines whether 32-bit or 64-bit offsets are used within the DWARF data structures. When a malformed binary supplies an invalid value for this field, the validation checks do not catch the anomaly before it reaches byte_get_little_endian, which then receives an unsupported size parameter and calls abort().

Attack Vector

The attack requires local access and user interaction. An attacker must craft a malicious binary file containing malformed DWARF debug information and convince a user or automated system to analyze it using objdump. Common attack scenarios include:

  • Submitting malicious binaries to automated build or analysis systems
  • Including crafted object files in source code repositories
  • Targeting reverse engineers or security researchers who analyze untrusted binaries
  • Disrupting CI/CD pipelines that use objdump for binary inspection

When the vulnerable objdump utility processes the malicious file with DWARF-related options (such as -W or --dwarf), it encounters the malformed compilation unit, leading to an unrecoverable abort condition.

Detection Methods for CVE-2025-69645

Indicators of Compromise

  • Unexpected SIGABRT crashes of objdump processes when analyzing binary files
  • Core dump files generated by objdump with stack traces pointing to byte_get_little_endian
  • Binary files with unusually structured or malformed DWARF sections (.debug_info, .debug_abbrev)
  • Repeated objdump failures in automated build or analysis pipelines

Detection Strategies

  • Monitor for abnormal termination patterns of binutils processes, particularly SIGABRT signals
  • Implement file integrity monitoring on binaries processed by automated systems
  • Use sandboxed environments when analyzing untrusted binary files with objdump
  • Review system logs for repeated objdump crashes that may indicate exploitation attempts

Monitoring Recommendations

  • Configure process monitoring to alert on unexpected objdump terminations
  • Implement rate limiting or isolation for binary analysis operations in CI/CD environments
  • Consider deploying static analysis tools to pre-screen binaries before processing with vulnerable tools
  • Monitor for anomalous patterns in binary file submissions to automated systems

How to Mitigate CVE-2025-69645

Immediate Actions Required

  • Update Binutils to a patched version that includes the fix from commit cdb728d
  • Avoid using objdump with DWARF parsing options (-W, --dwarf) on untrusted binary files until patched
  • Isolate binary analysis operations in sandboxed or containerized environments
  • Implement input validation or pre-screening for binary files before processing

Patch Information

A fix has been committed to the Binutils Git repository. The patch is available in commit cdb728d. System administrators should update to a Binutils release that includes this commit or apply the patch manually to their local builds.

For additional technical details about the vulnerability, refer to Sourceware Bug Report #33637.

Workarounds

  • Process untrusted binaries in isolated sandbox environments to contain potential crashes
  • Avoid DWARF parsing flags (-W, --dwarf) when running objdump on untrusted input files
  • Use alternative tools for DWARF analysis that may not be affected by this specific issue
  • Implement wrapper scripts that validate binary structure before passing to objdump
bash
# Example: Run objdump in a sandboxed environment using firejail
firejail --quiet --private objdump -W untrusted_binary.o

# Alternative: Use timeout to limit impact of potential hangs
timeout 30s objdump -d untrusted_binary.o

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechBinutils

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • 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
  • CWE-400
  • Technical References
  • Sourceware Bug Report #33637

  • Sourceware Git Commit cdb728d
  • Related CVEs
  • CVE-2026-6845: binutils readelf Utility DoS Vulnerability

  • CVE-2026-6844: binutils readelf DoS Vulnerability

  • CVE-2025-69646: Binutils objdump DoS Vulnerability

  • CVE-2026-6846: binutils 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