A Leader in the 2025 Gartner® Magic Quadrant™ for Endpoint Protection Platforms. Five years running.A Leader in the Gartner® Magic Quadrant™Read the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-24883

CVE-2025-24883: Go-Ethereum (Geth) DoS Vulnerability

CVE-2025-24883 is a denial of service vulnerability in go-ethereum (geth) that allows attackers to crash nodes using crafted messages. This article covers the technical details, affected versions, impact, and mitigation.

Updated: January 22, 2026

CVE-2025-24883 Overview

CVE-2025-24883 is a denial of service vulnerability affecting go-ethereum (geth), the official Golang implementation of the Ethereum protocol execution layer. A remote attacker can exploit this vulnerability to force a vulnerable Ethereum node to shutdown or crash by sending a specially crafted message. This vulnerability poses significant risks to Ethereum network infrastructure, potentially disrupting blockchain operations and node availability.

Critical Impact

Remote attackers can crash Ethereum nodes without authentication, potentially disrupting blockchain network operations and causing service availability issues for node operators.

Affected Products

  • go-ethereum (geth) versions prior to 1.14.13

Discovery Timeline

  • 2025-01-30 - CVE-2025-24883 published to NVD
  • 2025-01-30 - Last updated in NVD database

Technical Details for CVE-2025-24883

Vulnerability Analysis

This vulnerability is classified under CWE-248 (Uncaught Exception), which occurs when an application fails to properly handle or catch exceptions during execution. In the context of go-ethereum, the vulnerability allows an attacker to trigger an unhandled exception condition that leads to immediate node termination.

The attack is network-accessible and requires no authentication or user interaction, making it particularly dangerous for publicly exposed Ethereum nodes. Successful exploitation results in complete loss of availability for the targeted node, though it does not impact data confidentiality or integrity.

Root Cause

The root cause of CVE-2025-24883 lies in improper exception handling within go-ethereum's message processing logic. When the node receives a specially crafted network message, the application fails to properly catch and handle the resulting exception, causing the entire process to terminate unexpectedly. This represents a failure to implement defensive programming practices around input validation and error handling in critical network-facing code paths.

Attack Vector

The attack vector for this vulnerability is network-based, allowing remote exploitation without requiring prior authentication or privileges. An attacker can target any publicly accessible Ethereum node running a vulnerable version of geth by sending malicious network packets. The attack is relatively straightforward to execute once the specific message format is known, as it requires only network connectivity to the target node's P2P communication port.

The exploitation mechanism involves crafting a network message that triggers the uncaught exception condition within geth's message handling routines. When processed, this malformed message causes the node to crash, effectively taking it offline until manually restarted.

Detection Methods for CVE-2025-24883

Indicators of Compromise

  • Unexpected geth process terminations without corresponding system or resource issues
  • Crash logs or core dumps from geth processes indicating unhandled exceptions
  • Suspicious network traffic patterns targeting Ethereum P2P ports (typically port 30303)
  • Multiple rapid restart cycles of geth nodes within short time periods

Detection Strategies

  • Monitor geth process stability and implement alerting for unexpected process terminations
  • Deploy network intrusion detection rules to identify malformed Ethereum protocol messages
  • Analyze geth log files for exception traces and unusual error patterns preceding crashes
  • Implement process monitoring to detect and alert on frequent node restart cycles

Monitoring Recommendations

  • Configure continuous monitoring of Ethereum node health and availability metrics
  • Set up automated alerts for geth process crashes or unexpected restarts
  • Enable detailed logging of incoming network connections and message processing errors
  • Monitor network traffic for anomalous patterns targeting Ethereum P2P communication channels

How to Mitigate CVE-2025-24883

Immediate Actions Required

  • Upgrade go-ethereum (geth) to version 1.14.13 or later immediately
  • Review and implement network segmentation to limit exposure of Ethereum nodes
  • Configure firewalls to restrict P2P port access to trusted peers where possible
  • Implement automated restart mechanisms to maintain node availability during attacks

Patch Information

The vulnerability has been fixed in go-ethereum version 1.14.13. The security patch addresses the uncaught exception handling issue that allowed the denial of service attack. The specific fix can be reviewed in the GitHub commit (commit hash: fa9a2ff8687ec9efe57b4b9833d5590d20f8a83f). Additional details are available in the GitHub Security Advisory GHSA-q26p-9cq4-7fc2.

Workarounds

  • Implement network-level filtering to block malicious traffic patterns if upgrade is not immediately possible
  • Deploy multiple redundant nodes behind load balancers to maintain availability
  • Configure automated health checks and restart scripts for rapid recovery from crashes
  • Consider temporarily restricting inbound P2P connections to known trusted peers until patching is complete
bash
# Upgrade geth to patched version
# Using go install:
go install github.com/ethereum/go-ethereum/cmd/geth@v1.14.13

# Or download the latest release from GitHub releases page
# Verify the version after installation:
geth version

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechGo Ethereum

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/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
  • AvailabilityHigh
  • CWE References
  • CWE-248
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-q26p-9cq4-7fc2
  • Related CVEs
  • CVE-2026-26314: Go-Ethereum (Geth) DoS Vulnerability

  • CVE-2026-26313: Go-Ethereum (Geth) DoS Vulnerability

  • CVE-2026-22868: Go-Ethereum (Geth) DoS Vulnerability

  • CVE-2026-22862: Go-Ethereum (Geth) 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
  • English
  • 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