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

CVE-2026-34062: nimiq-libp2p DoS Vulnerability

CVE-2026-34062 is a denial of service flaw in nimiq-libp2p that allows remote peers to exhaust resources by stalling substreams. This post covers the technical details, affected versions, and mitigation steps.

Published: April 23, 2026

CVE-2026-34062 Overview

nimiq-libp2p is a Nimiq network implementation based on libp2p. A resource exhaustion vulnerability exists in versions prior to 1.3.0 where the MessageCodec::read_request and read_response functions call read_to_end() on inbound substreams. This allows a remote peer to send only a partial frame and keep the substream open indefinitely, consuming server resources. The vulnerability is exacerbated by the Behaviour::new configuration that sets with_max_concurrent_streams(1000), exposing a much larger stalled-slot budget than the library default.

Critical Impact

Remote attackers can exhaust node resources by opening multiple partial substreams, leading to denial of service conditions affecting Nimiq network nodes.

Affected Products

  • nimiq-libp2p versions prior to 1.3.0
  • Nimiq core-rs-albatross prior to v1.3.0

Discovery Timeline

  • 2026-04-22 - CVE CVE-2026-34062 published to NVD
  • 2026-04-22 - Last updated in NVD database

Technical Details for CVE-2026-34062

Vulnerability Analysis

This vulnerability is classified under CWE-770 (Allocation of Resources Without Limits or Throttling). The core issue lies in how the nimiq-libp2p implementation handles inbound network streams. When a remote peer initiates a connection, the MessageCodec::read_request and read_response methods use read_to_end() to consume data from inbound substreams. This blocking read operation waits indefinitely for the stream to complete, creating an opportunity for resource starvation attacks.

The attack surface is significantly expanded by the library's configuration choice to use with_max_concurrent_streams(1000), which is substantially higher than libp2p's conservative defaults. This design decision allows attackers to occupy up to 1000 connection slots simultaneously with minimal effort.

Root Cause

The vulnerability stems from two compounding issues: the use of unbounded read_to_end() operations that do not implement timeouts or partial read handling, combined with an overly permissive concurrent stream limit. The read_to_end() function blocks until the entire message is received or the connection is closed, meaning a malicious peer can hold resources hostage by simply not completing the message transmission.

Attack Vector

An attacker can exploit this vulnerability remotely over the network without authentication. The attack proceeds by establishing multiple connections to a target Nimiq node, initiating substream requests, sending partial message frames, and deliberately keeping these substreams open without completing the data transmission. Since the node allocates resources for each pending stream and waits indefinitely for completion, the attacker can exhaust available connection slots and memory resources, effectively denying service to legitimate peers.

The attack requires no special privileges and can be executed from any network position with connectivity to the target node.

Detection Methods for CVE-2026-34062

Indicators of Compromise

  • Unusual accumulation of long-lived, idle substream connections from single or few IP addresses
  • Memory consumption growth without corresponding legitimate network traffic
  • Connection slot exhaustion with high counts of pending stream operations
  • Network monitoring showing incomplete message frames followed by connection persistence

Detection Strategies

  • Monitor for abnormal ratios of opened versus completed substream operations
  • Implement connection rate limiting and alerting for peers opening many simultaneous streams
  • Track substream duration metrics to identify streams exceeding normal completion times
  • Deploy network flow analysis to detect partial frame patterns characteristic of this attack

Monitoring Recommendations

  • Configure alerts for connection pool utilization approaching the 1000-stream limit
  • Monitor per-peer connection counts and flag anomalous behavior
  • Track memory utilization trends on Nimiq network nodes
  • Review libp2p connection logs for patterns of incomplete handshakes

How to Mitigate CVE-2026-34062

Immediate Actions Required

  • Upgrade nimiq-libp2p to version 1.3.0 or later immediately
  • Review network node configurations for exposure to untrusted networks
  • Consider implementing firewall rules to limit inbound connection rates during the upgrade window
  • Monitor existing nodes for signs of active exploitation

Patch Information

The patch for this vulnerability is formally released as part of v1.3.0. The fix is available in GitHub commit c021a5337b808c73571b44999f9753051bac7508. The official release can be obtained from GitHub Release v1.3.0. For complete vulnerability details, refer to the GitHub Security Advisory GHSA-gh7r-qh4p-q4fr.

Workarounds

  • No known workarounds are available according to the vendor advisory
  • Consider temporarily reducing network exposure of affected nodes until patching is complete
  • Implement external rate limiting at the firewall or load balancer level as a temporary measure
  • Monitor nodes closely for resource exhaustion symptoms
bash
# Upgrade to patched version
git fetch --tags
git checkout v1.3.0
cargo build --release

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNimiq

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-770
  • Technical References
  • GitHub Commit Update

  • GitHub Release v1.3.0

  • GitHub Security Advisory GHSA-gh7r-qh4p-q4fr
  • Related CVEs
  • CVE-2026-34064: Nimiq Account DoS Vulnerability

  • CVE-2026-34066: Nimiq Blockchain DOS Vulnerability

  • CVE-2026-34063: Nimiq network-libp2p DoS Vulnerability

  • CVE-2026-34067: Nimiq Transaction 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