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

CVE-2025-47268: Iputils Ping DoS Vulnerability

CVE-2025-47268 is a denial of service vulnerability in Iputils ping caused by integer overflow in timestamp handling. Attackers can exploit this via crafted ICMP packets. This article covers technical details, affected versions, impact, and mitigation strategies.

Updated: January 22, 2026

CVE-2025-47268 Overview

CVE-2025-47268 is an integer overflow vulnerability in the ping utility within iputils before version 20250602. The flaw allows remote attackers to cause a denial of service through application errors or incorrect data collection by sending crafted ICMP Echo Reply packets. The vulnerability stems from a signed 64-bit integer overflow that occurs during timestamp multiplication operations.

Critical Impact

Remote attackers can exploit this vulnerability via the network without authentication to cause denial of service conditions, potentially disrupting network diagnostic operations and monitoring systems that rely on ping functionality.

Affected Products

  • iputils_project iputils versions prior to 20250602
  • iputils version 20240905 (confirmed affected)
  • Systems using vulnerable iputils ping implementations

Discovery Timeline

  • 2025-05-05 - CVE-2025-47268 published to NVD
  • 2025-07-23 - Last updated in NVD database

Technical Details for CVE-2025-47268

Vulnerability Analysis

This vulnerability is classified as CWE-190 (Integer Overflow or Wraparound). The flaw exists in the timestamp processing logic of the ping command, where signed 64-bit integer multiplication operations can overflow when processing specially crafted ICMP Echo Reply packets.

When ping receives an ICMP Echo Reply, it calculates round-trip time (RTT) using timestamp values. The vulnerability occurs because the code performs multiplication on timestamp values without proper bounds checking. An attacker can craft ICMP Echo Reply packets with extreme timestamp values that, when multiplied, cause a signed integer overflow.

The network-accessible nature of this vulnerability means it can be exploited remotely without requiring any authentication or user interaction. The impact includes both integrity concerns (incorrect data collection leading to erroneous RTT measurements) and availability concerns (application crashes or errors).

Root Cause

The root cause is insufficient validation and bounds checking on timestamp values before performing arithmetic operations. The signed 64-bit integer used for timestamp multiplication can overflow when processing maliciously crafted values, leading to undefined behavior in the application. This represents a classic integer overflow scenario where the developer assumed timestamp values would remain within reasonable bounds.

Attack Vector

An attacker can exploit this vulnerability by responding to ping requests with maliciously crafted ICMP Echo Reply packets containing extreme timestamp values. When the vulnerable ping implementation processes these packets, the timestamp multiplication overflows, resulting in either application errors, crashes, or incorrect RTT calculations that could mislead network administrators or automated monitoring systems.

The attack is network-based and requires the ability to send crafted ICMP packets to a system running a vulnerable version of iputils ping. This could be achieved through:

  • Man-in-the-middle positioning on the network path
  • Compromising a system being pinged to respond with malicious packets
  • Network devices configured to respond to ping requests

A proof-of-concept demonstrating this vulnerability is available in the GitHub PoC Repository.

Detection Methods for CVE-2025-47268

Indicators of Compromise

  • Unexpected crashes or errors from ping processes during routine network diagnostics
  • Anomalous RTT values reported in ping output or network monitoring logs
  • ICMP Echo Reply packets with unusual or extreme timestamp values in network captures
  • Repeated ping process restarts or failures in system logs

Detection Strategies

  • Monitor for abnormal ping process terminations or error states
  • Implement network traffic analysis to detect ICMP packets with suspicious timestamp values
  • Review system logs for ping application errors or segmentation faults
  • Deploy intrusion detection rules to identify crafted ICMP Echo Reply packets

Monitoring Recommendations

  • Configure monitoring systems to alert on ping utility failures or unexpected exit codes
  • Implement packet capture analysis for ICMP traffic to baseline normal timestamp ranges
  • Monitor network diagnostic tools for anomalous behavior or incorrect measurements
  • Enable verbose logging for network utilities to capture detailed error information

How to Mitigate CVE-2025-47268

Immediate Actions Required

  • Update iputils to version 20250602 or later immediately
  • Audit systems to identify all instances running vulnerable iputils versions
  • Consider temporarily restricting ICMP traffic in high-security environments until patches are applied
  • Review network monitoring systems for any signs of exploitation attempts

Patch Information

The iputils project has addressed this vulnerability in version 20250602. The fix includes proper bounds checking on timestamp values before multiplication operations to prevent integer overflow conditions.

Detailed patch information is available through:

  • GitHub Issue Discussion - Original vulnerability report
  • GitHub Pull Request - Code changes implementing the fix
  • GitHub Release Notes - Official release containing the fix
  • SUSE Bug Report #1242300 - Distribution-specific tracking

Workarounds

  • Limit ICMP traffic using firewall rules to trusted sources only
  • Disable or restrict ping functionality on sensitive systems where it is not operationally required
  • Implement network segmentation to reduce exposure of vulnerable systems
  • Use alternative network diagnostic tools that are not affected by this vulnerability until patches can be applied

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechIputils

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.21%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-190
  • Technical References
  • SUSE Bug Report #1242300

  • GitHub PoC Repository

  • GitHub Release Notes
  • Vendor Resources
  • GitHub Issue Discussion

  • GitHub Pull Request
  • Related CVEs
  • CVE-2025-48964: iputils ping 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