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
    • 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-3198

CVE-2025-3198: GNU Binutils Information Disclosure Bug

CVE-2025-3198 is an information disclosure vulnerability in GNU Binutils 2.43/2.44 caused by a memory leak in the objdump component. This article covers the technical details, affected versions, impact, and mitigation steps.

Updated: January 22, 2026

CVE-2025-3198 Overview

A memory leak vulnerability has been identified in GNU Binutils versions 2.43 and 2.44, specifically affecting the display_info function within the binutils/bucomm.c file of the objdump component. This vulnerability is classified as CWE-401 (Missing Release of Memory after Effective Lifetime), where allocated memory is not properly freed after use, potentially leading to resource exhaustion.

Critical Impact

Local attackers with limited privileges can exploit this vulnerability to cause denial of service conditions through memory exhaustion by repeatedly triggering the memory leak in objdump operations.

Affected Products

  • GNU Binutils 2.43
  • GNU Binutils 2.44

Discovery Timeline

  • 2025-04-04 - CVE-2025-3198 published to NVD
  • 2025-05-15 - Last updated in NVD database

Technical Details for CVE-2025-3198

Vulnerability Analysis

The vulnerability resides in the display_info function located in binutils/bucomm.c, a core utility file used by the objdump binary analysis tool. When objdump processes certain binary files, the display_info function allocates memory to store and display binary metadata. However, the implementation fails to properly release this allocated memory under specific code paths, resulting in a memory leak.

This vulnerability requires local access to exploit, meaning an attacker must have the ability to execute objdump on the target system. While the impact is limited to availability (memory exhaustion leading to denial of service), repeated exploitation could degrade system performance or cause crashes in environments where objdump is used extensively, such as build systems, reverse engineering workstations, or automated analysis pipelines.

Root Cause

The root cause is a missing memory release operation in the display_info function within binutils/bucomm.c. The function allocates memory to handle binary information display tasks but fails to free this memory before returning or when specific execution paths are taken. This missing deallocation constitutes CWE-401 (Missing Release of Memory after Effective Lifetime), allowing memory to accumulate over successive operations.

Attack Vector

The attack requires local access with low privileges. An attacker with the ability to execute objdump commands can craft or provide malicious binary files that trigger the vulnerable code path repeatedly. Each invocation causes a small amount of memory to leak, and through sustained or automated execution, this can exhaust available system memory.

The exploit has been disclosed publicly, and the vulnerable code path is well-documented in the Sourceware Bug Report #32716. Attackers could target systems running continuous integration pipelines, automated binary analysis tools, or development environments where objdump is invoked frequently.

Detection Methods for CVE-2025-3198

Indicators of Compromise

  • Unusual memory consumption growth in processes running objdump
  • System memory exhaustion or out-of-memory (OOM) events correlated with objdump activity
  • Repeated or automated execution of objdump against numerous or crafted binary files
  • Process crashes or degraded system performance on build servers or analysis workstations

Detection Strategies

  • Monitor memory usage patterns for objdump processes, flagging abnormal growth over time
  • Implement process accounting to track objdump invocations and correlate with system resource consumption
  • Use memory profiling tools (e.g., Valgrind, AddressSanitizer) in development and testing environments to detect leaks
  • Alert on OOM killer events where objdump or related binutils processes are terminated

Monitoring Recommendations

  • Configure system monitoring to track per-process memory consumption for binutils components
  • Set up alerts for memory usage exceeding baseline thresholds on systems running automated binary analysis
  • Review logs from build systems and CI/CD pipelines for objdump-related errors or crashes
  • Periodically audit installed binutils versions to ensure patched versions are deployed

How to Mitigate CVE-2025-3198

Immediate Actions Required

  • Update GNU Binutils to a patched version that includes commit ba6ad3a18cb26b79e0e3b84c39f707535bbc344d
  • Verify installed binutils version using objdump --version and compare against affected versions 2.43 and 2.44
  • Limit objdump usage to trusted users and restrict execution in automated pipelines until patched
  • Monitor system memory on hosts running affected versions as a temporary detection measure

Patch Information

The vulnerability has been addressed in the GNU Binutils source repository. The patch is identified by Git commit hash ba6ad3a18cb26b79e0e3b84c39f707535bbc344d. Organizations should obtain updated binutils packages from their distribution vendor or compile from the patched source.

For technical details on the fix, refer to the Sourceware Git Commit Reference. Additional context is available in the Sourceware Bug Report #32716.

Workarounds

  • Limit access to objdump execution on production and shared systems to reduce attack surface
  • Implement resource limits (e.g., using ulimit or cgroups) to cap memory consumption for objdump processes
  • Avoid processing untrusted or unknown binary files with affected objdump versions
  • Consider using containerization to isolate binary analysis tasks and limit resource impact
bash
# Example: Apply memory limits to objdump execution
# Set memory limit to 512MB for the current shell session
ulimit -v 524288

# Alternative: Use cgroups to limit memory for analysis processes
# Create a memory-limited cgroup (requires root)
cgcreate -g memory:/binutils_analysis
echo 536870912 > /sys/fs/cgroup/memory/binutils_analysis/memory.limit_in_bytes

# Run objdump within the cgroup
cgexec -g memory:binutils_analysis objdump -d target_binary

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechGnu Binutils

  • SeverityMEDIUM

  • CVSS Score4.8

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-401
  • Technical References
  • Sourceware Bug Report #32716

  • Sourceware Comment on Bug #32716

  • Sourceware Git Commit Reference

  • VulDB #303151 Details

  • VulDB #303151 Overview

  • VulDB Submission #545773

  • GNU Project Resource
  • Related CVEs
  • CVE-2026-4647: GNU Binutils BFD Library DoS Vulnerability

  • CVE-2026-3442: GNU Binutils Buffer Overflow Vulnerability

  • CVE-2026-3441: GNU Binutils Buffer Overflow Vulnerability

  • CVE-2025-69650: GNU Binutils Double Free DoS 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