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

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

CVE-2026-34063 is a denial of service flaw in Nimiq network-libp2p that allows remote attackers to crash the networking task by opening duplicate discovery substreams. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: April 23, 2026

CVE-2026-34063 Overview

CVE-2026-34063 is a Denial of Service vulnerability in Nimiq's network-libp2p, a Nimiq network implementation based on libp2p. The vulnerability exists in the discovery protocol's ConnectionHandler state machine, which improperly handles multiple substream negotiations on the same connection. When a remote peer opens or negotiates the discovery protocol substream a second time on the same connection, the handler triggers a panic condition instead of failing closed, causing the networking task (swarm) to crash and taking the node's P2P networking offline until restart.

Critical Impact

Remote attackers can crash Nimiq nodes by triggering panic conditions in the connection handler, disrupting P2P network availability without requiring authentication or user interaction.

Affected Products

  • Nimiq network-libp2p prior to version 1.3.0
  • Nimiq core-rs-albatross prior to version 1.3.0

Discovery Timeline

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

Technical Details for CVE-2026-34063

Vulnerability Analysis

This vulnerability is classified under CWE-617 (Reachable Assertion), which occurs when a program contains an assertion that can be triggered by an attacker, leading to denial of service. In this case, the network-libp2p discovery component uses a libp2p ConnectionHandler state machine that maintains assumptions about the number of concurrent substreams per connection.

The handler expects at most one inbound and one outbound discovery substream per connection. When this assumption is violated by a malicious peer opening additional substreams, the code path leads to explicit panic statements: panic!("Inbound already connected") or panic!("Outbound already connected"). This design flaw means the system crashes rather than gracefully rejecting the malformed request.

The attack is network-accessible and requires no authentication or privileges, making it easily exploitable by any peer that can establish a connection to the vulnerable node.

Root Cause

The root cause lies in the state machine design of the ConnectionHandler component. The handler uses assertions to enforce an invariant that there should only be one inbound and one outbound discovery substream per connection. However, this invariant is enforced through panic statements rather than defensive error handling.

When a remote peer violates this expected behavior by negotiating additional substreams, the code reaches these panic conditions. A secure implementation would instead reject the additional substream negotiation attempts and log the anomalous behavior without crashing the entire networking subsystem.

Attack Vector

The attack vector for CVE-2026-34063 is network-based and requires no special privileges or user interaction. An attacker exploits this vulnerability through the following sequence:

  1. The attacker establishes a normal P2P connection with the target Nimiq node
  2. The attacker successfully negotiates the discovery protocol substream (first connection)
  3. The attacker then initiates a second discovery protocol substream negotiation on the same connection
  4. The vulnerable ConnectionHandler detects the duplicate substream and triggers a panic
  5. The panic propagates, crashing the swarm networking task
  6. The target node's P2P networking goes offline until manual restart

This attack can be repeatedly executed to maintain a persistent denial of service condition against targeted nodes, potentially disrupting blockchain network operations.

Detection Methods for CVE-2026-34063

Indicators of Compromise

  • Unexpected node crashes or restarts with panic messages containing "Inbound already connected" or "Outbound already connected"
  • Repeated P2P networking failures requiring manual intervention
  • Log entries indicating connection handler panics in the network-libp2p module
  • Unusual patterns of duplicate substream negotiation attempts from specific peer addresses

Detection Strategies

  • Monitor system logs for Rust panic traces originating from the discovery handler component
  • Implement network traffic analysis to detect anomalous patterns of multiple substream negotiations from single connections
  • Set up alerting for unexpected process terminations of Nimiq node services
  • Track connection patterns from peers that repeatedly trigger network restarts

Monitoring Recommendations

  • Deploy log aggregation to capture panic messages and stack traces from Nimiq nodes
  • Implement automated restart monitoring with alerts for high restart frequency
  • Use network monitoring tools to baseline normal P2P connection behavior and detect anomalies
  • Consider implementing peer reputation scoring to identify and block potentially malicious peers

How to Mitigate CVE-2026-34063

Immediate Actions Required

  • Upgrade Nimiq core-rs-albatross to version 1.3.0 or later immediately
  • Review node logs for evidence of past exploitation attempts
  • Monitor node uptime and P2P connectivity status after patching
  • Consider implementing network-level controls to limit connection rates from untrusted peers

Patch Information

The patch for CVE-2026-34063 is formally released as part of Nimiq core-rs-albatross version 1.3.0. The fix addresses the panic condition by implementing proper error handling for duplicate substream negotiation attempts, allowing the handler to fail closed without crashing the entire networking subsystem.

Relevant resources:

  • GitHub Security Advisory GHSA-74hp-mhfx-m45h
  • GitHub Release v1.3.0
  • Patch Commit
  • Pull Request #3666

Workarounds

  • No known workarounds are available according to the vendor advisory
  • Upgrading to version 1.3.0 is the only recommended remediation
  • Temporary network isolation of vulnerable nodes may reduce exposure but is not a complete mitigation
  • Implementing external connection rate limiting may reduce the frequency of potential attacks but cannot prevent exploitation
bash
# Upgrade to patched version
# For Nimiq core-rs-albatross, update to v1.3.0 or later
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

  • SeverityHIGH

  • CVSS Score7.5

  • 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:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-617
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request Discussion

  • GitHub Release v1.3.0

  • GitHub Security Advisory GHSA-74hp-mhfx-m45h
  • Related CVEs
  • CVE-2026-34064: Nimiq Account DoS Vulnerability

  • CVE-2026-34066: Nimiq Blockchain DOS Vulnerability

  • CVE-2026-34067: Nimiq Transaction DOS Vulnerability

  • CVE-2026-34065: Nimiq Primitives 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