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

CVE-2026-34066: Nimiq Blockchain DOS Vulnerability

CVE-2026-34066 is a denial of service flaw in nimiq-blockchain that allows malicious peers to trigger panics during history sync. This post explains its technical details, affected versions, impact, and mitigation.

Published: April 23, 2026

CVE-2026-34066 Overview

CVE-2026-34066 is an improper input validation vulnerability in nimiq-blockchain, the persistent block storage component for Nimiq's Rust implementation. Prior to version 1.3.0, the HistoryStore::put_historic_txns function uses an assert! macro to enforce invariants about HistoricTransaction.block_number, requiring it to be within the macro block being pushed and within the same epoch. During history sync operations, a malicious peer can influence the history: &[HistoricTransaction] input passed into Blockchain::push_history_sync. By supplying a malformed history list that violates these invariants, an attacker can trigger a panic and crash the node.

Critical Impact

A remote attacker can cause a denial of service condition by crashing Nimiq blockchain nodes during history synchronization, potentially disrupting network consensus and availability.

Affected Products

  • nimiq-blockchain (core-rs-albatross) versions prior to 1.3.0
  • Nimiq Rust implementation nodes performing history sync

Discovery Timeline

  • April 22, 2026 - CVE-2026-34066 published to NVD
  • April 22, 2026 - Last updated in NVD database

Technical Details for CVE-2026-34066

Vulnerability Analysis

This vulnerability stems from improper input validation in the history synchronization workflow. The extend_history_sync function calls this.history_store.add_to_history(..) before comparing the computed history root against the macro block header (block.history_root()). This ordering means the assert! macro checking block number invariants can trigger a panic before the later rejection checks have an opportunity to run.

The vulnerability is exploitable over the network during peer-to-peer history synchronization, though successful exploitation requires user interaction in the form of connecting to or accepting connections from a malicious peer. The impact is limited to availability—there is no confidentiality or integrity compromise, but the denial of service can disrupt node operations.

Root Cause

The root cause is the use of assert! for enforcing input invariants rather than returning an error result. In Rust, assert! panics when its condition is false, which is appropriate for internal logic errors but not for validating untrusted external input. The HistoricTransaction.block_number field must be within the macro block being pushed and within the same epoch, but this check occurs via assertion before the history root validation can reject invalid data.

Attack Vector

The attack is network-based and targets the history synchronization mechanism. An attacker operating a malicious peer can craft a HistoricTransaction list with block numbers that fall outside the expected ranges. When a victim node initiates history sync with the malicious peer:

  1. The victim calls Blockchain::push_history_sync with attacker-controlled history data
  2. extend_history_sync processes the data and calls history_store.add_to_history(..)
  3. HistoryStore::put_historic_txns invokes assert! on the block number invariants
  4. The malformed block numbers cause the assertion to fail, triggering a panic
  5. The node crashes before subsequent validation checks can reject the malicious input

The vulnerability requires the attacker to be a network peer during history sync, which introduces some complexity but remains achievable in a public blockchain network.

Detection Methods for CVE-2026-34066

Indicators of Compromise

  • Unexpected node crashes or panics during history synchronization operations
  • Panic messages in logs referencing HistoryStore::put_historic_txns or assertion failures
  • Repeated connection attempts from the same peer IP addresses followed by node failures
  • Pattern of node restarts coinciding with history sync attempts

Detection Strategies

  • Monitor node logs for panic messages containing assertion failure references in the history store module
  • Implement alerting on repeated node crashes during synchronization phases
  • Track peer connections and correlate with crash events to identify potentially malicious peers
  • Review historical crash dumps for stack traces pointing to put_historic_txns or extend_history_sync

Monitoring Recommendations

  • Enable detailed logging for history synchronization operations
  • Deploy watchdog processes to detect and alert on unexpected node terminations
  • Implement peer reputation scoring to identify and blacklist peers associated with crash events
  • Set up automated restart with incremental backoff for affected nodes

How to Mitigate CVE-2026-34066

Immediate Actions Required

  • Upgrade nimiq-blockchain (core-rs-albatross) to version 1.3.0 or later immediately
  • Review node logs for evidence of exploitation attempts or unexplained crashes
  • Consider temporarily disabling history sync with untrusted peers if upgrade is not immediately possible
  • Monitor network for suspicious peer behavior during synchronization

Patch Information

The fix for this vulnerability is included in version 1.3.0 of core-rs-albatross. The patch replaces the assert! macro with proper error handling that returns a result rather than panicking on invalid input. Technical details of the fix can be reviewed in the GitHub commit and the pull request discussion. The security advisory GHSA-j99g-7rqw-q9jg provides additional context.

Workarounds

  • No official workarounds are available for this vulnerability
  • Upgrading to version 1.3.0 or later is the only supported remediation
  • Operators may consider network-level filtering of untrusted peers as a temporary measure, though this may impact functionality
  • Running nodes in supervised environments with automatic restart can reduce downtime impact but does not prevent exploitation
bash
# Upgrade to patched version
cd 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

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.05%

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

  • GitHub Pull Request Discussion

  • GitHub Release v1.3.0

  • GitHub Security Advisory GHSA-j99g-7rqw-q9jg
  • Related CVEs
  • CVE-2026-34064: Nimiq Account DoS Vulnerability

  • CVE-2026-34063: Nimiq network-libp2p 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