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

CVE-2026-34067: Nimiq Transaction DOS Vulnerability

CVE-2026-34067 is a denial of service flaw in nimiq-transaction where malformed proofs trigger crashes via untrusted p2p responses. This article covers technical details, affected versions, impact, and mitigation.

Published: April 23, 2026

CVE-2026-34067 Overview

CVE-2026-34067 is a Denial of Service vulnerability affecting the nimiq-transaction component, which provides the transaction primitive used in Nimiq's Rust implementation (core-rs-albatross). The vulnerability exists in the HistoryTreeProof::verify function, which panics when processing a malformed proof where the history and positions arrays have mismatched lengths due to an assert_eq! check.

The proof object is derived from untrusted peer-to-peer responses (ResponseTransactionsProof.proof) and is attacker-controlled at the network boundary until validated. A malicious peer could exploit this vulnerability to trigger a node crash by returning a crafted inclusion proof with a length mismatch.

Critical Impact

A malicious network peer can crash Nimiq nodes by sending specially crafted transaction inclusion proofs, potentially disrupting blockchain network operations and node availability.

Affected Products

  • nimiq-transaction prior to version 1.3.0
  • Nimiq core-rs-albatross prior to v1.3.0

Discovery Timeline

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

Technical Details for CVE-2026-34067

Vulnerability Analysis

This vulnerability is classified under CWE-617 (Reachable Assertion), where an assertion in the code can be triggered by an attacker through external input. The HistoryTreeProof::verify function contains a defensive assert_eq!(history.len(), positions.len()) check that validates internal consistency of proof data. However, because this assertion panics rather than returning an error, and the proof data originates from untrusted network peers, attackers can deliberately provide malformed proofs to crash victim nodes.

The attack requires network access to communicate with the target Nimiq node through the P2P protocol. While the attack complexity is relatively high—requiring the attacker to craft specific malformed proofs and deliver them through the P2P network—no authentication is required, making any network-accessible node a potential target. The impact is limited to availability (crash), with no confidentiality or integrity implications.

Root Cause

The root cause is the use of a panicking assertion (assert_eq!) to validate untrusted input data at the network boundary. In Rust, assertions cause the program to panic and terminate when the condition fails. While assertions are appropriate for detecting programming errors or invariant violations on trusted data, they should not be used to validate data from untrusted sources like network peers.

The HistoryTreeProof structure contains history and positions arrays that must have matching lengths for valid proofs. When a malicious peer sends a ResponseTransactionsProof with intentionally mismatched array lengths, the assertion fails and the node crashes.

Attack Vector

The attack exploits the peer-to-peer communication layer of Nimiq nodes. An attacker can:

  1. Connect to a target Nimiq node as a network peer
  2. Wait for or trigger a transaction proof request from the victim
  3. Respond with a malformed ResponseTransactionsProof containing a HistoryTreeProof where history.len() != positions.len()
  4. The victim node's HistoryTreeProof::verify function panics on the assertion, crashing the node

The vulnerability manifests in the proof verification logic where array length consistency is checked using a panicking assertion rather than graceful error handling. Technical details and the specific code changes can be found in the GitHub Security Advisory and the associated pull request #3659.

Detection Methods for CVE-2026-34067

Indicators of Compromise

  • Unexpected Nimiq node crashes or restarts without clear cause
  • Panic messages in logs containing assert_eq! failures related to HistoryTreeProof::verify
  • Log entries showing length mismatches between history and positions arrays
  • Repeated node failures following connections from specific peers

Detection Strategies

  • Monitor application logs for Rust panic messages mentioning HistoryTreeProof or assertion failures
  • Implement alerting on unexpected process terminations of Nimiq node services
  • Track peer connection patterns to identify potentially malicious nodes sending malformed proofs
  • Deploy process monitoring to detect rapid restart cycles indicative of DoS attacks

Monitoring Recommendations

  • Configure centralized logging to capture Rust panic stack traces from Nimiq nodes
  • Set up availability monitoring with automatic alerts for node downtime
  • Monitor P2P network traffic for anomalous proof response patterns
  • Implement peer reputation tracking to identify and block suspicious network participants

How to Mitigate CVE-2026-34067

Immediate Actions Required

  • Upgrade nimiq-transaction and core-rs-albatross to version 1.3.0 or later immediately
  • Review node logs for evidence of prior exploitation attempts
  • Consider temporarily limiting P2P connections to trusted peers if upgrade cannot be performed immediately
  • Implement automated node restart mechanisms to minimize downtime from potential crashes

Patch Information

The fix for this vulnerability is included in Nimiq core-rs-albatross version 1.3.0. The patch replaces the panicking assert_eq! with proper error handling that gracefully rejects malformed proofs without crashing the node.

Upgrade to the patched version by pulling the latest release:

  • GitHub Release v1.3.0
  • Commit 6ff0800e8e031363e787c827d8d033e5694e4e6a

Workarounds

  • No official workarounds are available for this vulnerability
  • Upgrading to v1.3.0 is the only supported remediation
  • As a temporary measure, limiting network exposure or peer connections may reduce risk but does not eliminate the vulnerability
bash
# Upgrade to patched version
cd /path/to/nimiq/core-rs-albatross
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

  • SeverityLOW

  • CVSS Score3.1

  • EPSS Probability0.01%

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

  • GitHub Pull Request 3659

  • GitHub Release v1.3.0

  • GitHub Security Advisory GHSA-264v-m8fm-76jm
  • 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-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