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-2026-26313

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

CVE-2026-26313 is a denial of service vulnerability in go-ethereum (geth) that allows attackers to cause high memory usage via crafted p2p messages. This article covers the technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2026-26313 Overview

CVE-2026-26313 is a resource exhaustion vulnerability in go-ethereum (geth), the golang execution layer implementation of the Ethereum protocol. Prior to version 1.17.0, an attacker can cause high memory usage by sending a specially-crafted peer-to-peer (p2p) message to a vulnerable geth node. This vulnerability allows remote attackers to potentially degrade the performance or availability of Ethereum nodes running affected versions of geth.

Critical Impact

Remote attackers can exploit this vulnerability to exhaust memory resources on Ethereum nodes by sending malicious p2p messages, potentially causing denial of service conditions that could disrupt blockchain network operations.

Affected Products

  • go-ethereum (geth) versions prior to 1.17.0
  • Ethereum nodes running vulnerable geth implementations
  • Infrastructure relying on affected geth versions for blockchain operations

Discovery Timeline

  • 2026-02-19 - CVE-2026-26313 published to NVD
  • 2026-02-19 - Last updated in NVD database

Technical Details for CVE-2026-26313

Vulnerability Analysis

This vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling). The flaw exists in how geth processes incoming peer-to-peer messages within the Ethereum network protocol. When a specially-crafted p2p message is received, the node fails to properly limit memory allocation during message processing, allowing an attacker to trigger excessive memory consumption.

The network-accessible nature of this vulnerability makes it particularly concerning for public-facing Ethereum nodes. An attacker does not require any privileges or user interaction to exploit this flaw—they simply need network connectivity to the target node's p2p communication port.

Root Cause

The root cause of CVE-2026-26313 lies in improper resource allocation controls within the p2p message handling code. The vulnerable code path does not enforce adequate limits on memory allocation when processing certain message types, allowing malicious actors to craft messages that consume disproportionate amounts of memory relative to their size.

Attack Vector

The attack is conducted over the network through the Ethereum p2p protocol. An attacker can connect to a vulnerable geth node and send specially-crafted messages designed to trigger the memory exhaustion condition. Since geth nodes typically need to accept connections from peers on the Ethereum network, this attack surface is inherently exposed.

The vulnerability can be exploited without authentication or any special privileges. Repeated exploitation could lead to memory exhaustion, causing the node to become unresponsive or crash, effectively resulting in a denial of service condition.

Detection Methods for CVE-2026-26313

Indicators of Compromise

  • Unusual memory consumption spikes on geth nodes without corresponding increases in legitimate network activity
  • Unexpected connections from suspicious IP addresses to the p2p communication port
  • Geth process crashes or restarts with out-of-memory errors in system logs
  • Degraded node performance or sync issues correlating with specific peer connections

Detection Strategies

  • Monitor geth process memory utilization and alert on abnormal growth patterns
  • Implement network traffic analysis to identify anomalous p2p message patterns or sizes
  • Review geth logs for connection attempts from unknown or suspicious peers
  • Deploy intrusion detection signatures targeting malformed Ethereum p2p protocol messages

Monitoring Recommendations

  • Configure memory usage alerts for geth processes with appropriate thresholds based on baseline behavior
  • Implement peer reputation tracking to identify potentially malicious connection sources
  • Enable detailed logging for p2p network events to facilitate forensic analysis
  • Consider deploying network-level monitoring to detect volumetric anomalies in p2p traffic

How to Mitigate CVE-2026-26313

Immediate Actions Required

  • Upgrade go-ethereum (geth) to version 1.17.0 or later immediately
  • Review network access controls to limit p2p port exposure where possible
  • Monitor affected nodes for signs of exploitation while patching is in progress
  • Consider temporarily reducing peer connection limits as a defensive measure

Patch Information

The vulnerability has been resolved in go-ethereum version 1.17.0. Organizations running affected versions should upgrade immediately. The fix is available through the official GitHub Release v1.17.0. Additional details about the vulnerability and remediation can be found in the GitHub Security Advisory GHSA-689v-6xwf-5jf3.

Workarounds

  • Implement network-level filtering to restrict p2p port access to trusted peers only
  • Configure firewall rules to rate-limit incoming connections on the p2p port
  • Deploy geth behind a reverse proxy or load balancer with connection limiting capabilities
  • Monitor and automatically restart geth processes that exhibit memory exhaustion symptoms
bash
# Example: Upgrade geth to patched version
# Stop the current geth service
sudo systemctl stop geth

# Download and install geth v1.17.0 or later
# Follow official installation instructions for your platform
# https://github.com/ethereum/go-ethereum/releases/tag/v1.17.0

# Restart the geth service
sudo systemctl start geth

# Verify the version
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

  • SeverityMEDIUM

  • CVSS Score6.9

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/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-770
  • Technical References
  • GitHub Release v1.17.0

  • GitHub Security Advisory GHSA-689v-6xwf-5jf3
  • Related CVEs
  • CVE-2026-26314: Go-Ethereum (Geth) DoS Vulnerability

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

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

  • CVE-2025-24883: 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