A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-40092

CVE-2026-40092: Nimiq Blockchain DoS Vulnerability

CVE-2026-40092 is a denial of service vulnerability in nimiq-blockchain that allows attackers to crash Nimiq full nodes via malicious DHT records. This post covers the technical details, affected versions, and mitigations.

Published: May 21, 2026

CVE-2026-40092 Overview

CVE-2026-40092 is a denial-of-service vulnerability in nimiq-blockchain, the persistent block storage component of Nimiq's Rust implementation (core-rs-albatross). Versions 1.3.0 and below crash when a malicious network peer publishes a crafted Kademlia Distributed Hash Table (DHT) record. The crash originates in the Ed25519 TaggedPublicKey::verify implementation, which calls unwrap() on a Signature::from_bytes result without handling the error case. Any signature byte slice not exactly 64 bytes long triggers a panic, terminating the full node process. The issue is fixed in version 1.4.0.

Critical Impact

A single unauthenticated peer can remotely crash any Nimiq full node by broadcasting one malformed DHT record, enabling network-wide denial of service against the Nimiq blockchain.

Affected Products

  • Nimiq core-rs-albatross (nimiq-blockchain crate) versions 1.3.0 and earlier
  • Nimiq Rust full node implementations using the affected tagged_signing module
  • Nodes participating in Kademlia DHT discovery and validator record exchange

Discovery Timeline

  • 2026-05-20 - CVE-2026-40092 published to NVD
  • 2026-05-20 - Last updated in NVD database

Technical Details for CVE-2026-40092

Vulnerability Analysis

The vulnerability is an unchecked return value [CWE-252] that produces a reachable panic in safe Rust. When a Nimiq full node receives a Kademlia DHT record containing a TaggedSigned<ValidatorRecord, KeyPair>, the DHT verifier invokes TaggedSigned::verify. For Ed25519 keys, this dispatches to the TaggedPublicKey implementation on Ed25519PublicKey, which deserializes the signature bytes via Ed25519Signature::from_bytes(sig).unwrap().

The underlying ed25519_zebra::Signature::try_from enforces a strict 64-byte length requirement. Any other length causes from_bytes to return Err, and the subsequent unwrap() panics. The BLS variant of TaggedPublicKey handles the same error path correctly by returning false, isolating the defect to the Ed25519 implementation. Because DHT records propagate peer-to-peer, a single crafted record can cascade across the network and take down multiple validators.

Root Cause

The root cause is the use of unwrap() on a fallible deserialization call inside a verification routine that is reachable from untrusted network input. The verify contract is expected to return a boolean, but the Ed25519 path conflates malformed input with a programmer error and aborts the process.

Attack Vector

An attacker joins the Nimiq peer-to-peer network as an ordinary Kademlia participant. They construct a TaggedSigned record where the signature field is any length other than 64 bytes, sign-wrap it appropriately, and publish it to the DHT. Each victim node that retrieves and verifies the record panics during signature parsing. No authentication, prior trust relationship, or user interaction is required.

rust
// Source: https://github.com/nimiq/core-rs-albatross/commit/807ee8e99a7ccdc604d49971f292854bfa36754d
// Patch in keys/src/tagged_signing.rs - replaces the panicking unwrap with proper error handling
impl TaggedPublicKey for Ed25519PublicKey {
    fn verify(&self, msg: &[u8], sig: &[u8]) -> bool {
-        self.verify(&Ed25519Signature::from_bytes(sig).unwrap(), msg)
+        let Ok(signature) = Ed25519Signature::from_bytes(sig) else {
+            return false;
+        };
+
+        self.verify(&signature, msg)
    }
}

#[cfg(test)]
mod tests {
    #[test]
    fn tagged_verify_rejects_invalid_signature_lengths() {
        let keypair = KeyPair::generate(&mut test_rng(false));
        let message = b"test message";
        let signature = keypair.sign(message);
        // verify must now return cleanly on malformed lengths instead of panicking
    }
}

Source: GitHub Commit 807ee8e

Detection Methods for CVE-2026-40092

Indicators of Compromise

  • Unexpected Nimiq node process termination with a Rust panic message referencing Ed25519Signature::from_bytes or unwrap() on a Result::Err
  • Stack traces in node logs pointing to tagged_signing.rs inside the keys crate during DHT record verification
  • Inbound Kademlia DHT records containing TaggedSigned payloads with signature fields of length other than 64 bytes

Detection Strategies

  • Parse node stdout/stderr for panic strings such as called \Result::unwrap()` on an `Err` valuecorrelated with thetagged_signing` module
  • Monitor crash-restart cycles on validator and full nodes, especially when multiple peers crash within a short window
  • Inspect captured DHT traffic for ValidatorRecord entries whose signature blobs deviate from the 64-byte Ed25519 length

Monitoring Recommendations

  • Alert on process exit codes from nimiq-client and related binaries that indicate panic-induced termination
  • Track peer-to-peer churn metrics for sudden spikes in node disconnects following DHT gossip events
  • Forward node logs to a central log store and create rules for the tagged_signing panic signature

How to Mitigate CVE-2026-40092

Immediate Actions Required

  • Upgrade all Nimiq full nodes and validators running core-rs-albatross to version 1.4.0 or later without delay
  • Restart any nodes currently crash-looping and confirm the patched binary is loaded before rejoining the network
  • Review peer logs to identify the source of any malformed DHT records and consider denylisting persistent offenders

Patch Information

The fix is included in core-rs-albatross v1.4.0. The patch in pull request 3708 replaces Ed25519Signature::from_bytes(sig).unwrap() with a let-else pattern that returns false when deserialization fails, mirroring the existing BLS behavior. See the GitHub Release v1.4.0 and Security Advisory GHSA-27w2-87xv-37c6 for full details.

Workarounds

  • No supported runtime workaround exists; upgrading to v1.4.0 is the only complete remediation
  • Operators unable to upgrade immediately can run nodes behind a supervisor that automatically restarts on panic to reduce downtime, accepting that repeated crashes will continue
  • Restrict inbound peer connections to a vetted allowlist of trusted nodes to lower exposure until patching completes
bash
# Upgrade core-rs-albatross to the patched release
git clone https://github.com/nimiq/core-rs-albatross.git
cd core-rs-albatross
git checkout v1.4.0
cargo build --release --bin nimiq-client

# Verify the running binary version before restarting the node
./target/release/nimiq-client --version
systemctl restart nimiq-client

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

  • 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-252
  • Technical References
  • GitHub Commit Changes

  • GitHub Pull Request 3708

  • GitHub Release v1.4.0

  • GitHub Security Advisory GHSA-27w2-87xv-37c6
  • Related CVEs
  • CVE-2026-40094: Nimiq Blockchain DoS Vulnerability

  • CVE-2026-34064: Nimiq Account DoS Vulnerability

  • CVE-2026-34066: Nimiq Blockchain DOS Vulnerability

  • CVE-2026-34063: Nimiq network-libp2p DoS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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