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

CVE-2026-34064: Nimiq Account DoS Vulnerability

CVE-2026-34064 is a denial of service flaw in nimiq-account that allows attackers to crash nodes via vesting contract manipulation. This post explains its technical details, affected versions, impact, and mitigation.

Published: April 23, 2026

CVE-2026-34064 Overview

CVE-2026-34064 is an Integer Underflow vulnerability affecting the nimiq-account crate, which contains account primitives for Nimiq's Rust blockchain implementation. The vulnerability exists in the VestingContract::can_change_balance function, where improper arithmetic operations can cause a panic condition leading to node crashes.

Prior to version 1.3.0, the VestingContract::can_change_balance function returns AccountError::InsufficientFunds when new_balance < min_cap, but constructs the error using balance: self.balance - min_cap. The Coin::sub function panics on underflow, so if an attacker can reach a state where min_cap > balance, the node crashes while attempting to return an error.

Critical Impact

Attackers can crash Nimiq blockchain nodes by exploiting an integer underflow condition in vesting contract balance validation, potentially disrupting network consensus and availability.

Affected Products

  • nimiq-account (Rust crate) versions prior to 1.3.0
  • Nimiq core-rs-albatross versions prior to v1.3.0

Discovery Timeline

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

Technical Details for CVE-2026-34064

Vulnerability Analysis

This vulnerability stems from CWE-191 (Integer Underflow) in the Nimiq blockchain's vesting contract implementation. The core issue lies in the error handling path of the VestingContract::can_change_balance function.

When a balance change is attempted that would result in new_balance < min_cap, the function attempts to construct an AccountError::InsufficientFunds error. However, the error construction calculates self.balance - min_cap using the Coin::sub operation, which panics when the result would be negative (i.e., when min_cap > balance).

The min_cap > balance precondition is attacker-reachable because the vesting contract creation data in 32-byte format allows encoding total_amount without validating that total_amount <= transaction.value (the real contract balance). This validation gap creates a path to trigger the vulnerable code.

Root Cause

The root cause is a missing validation check during vesting contract creation combined with unsafe arithmetic in error handling. The 32-byte contract creation format permits specifying a total_amount that exceeds the actual transaction.value deposited into the contract. When this malformed contract is later interacted with, the arithmetic underflow occurs during error construction rather than being safely handled.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction. An attacker executes the following sequence:

  1. Create a vesting contract using the 32-byte format, specifying a total_amount value greater than the actual transaction.value deposited
  2. Broadcast an outgoing transaction from this malformed vesting contract
  3. When the node processes this transaction (during mempool admission or block processing), it invokes can_change_balance
  4. The function detects insufficient funds and attempts to construct an error, but Coin::sub panics due to the underflow condition
  5. The panic causes the node process to crash

This attack can target nodes during both mempool admission and block processing phases, potentially disrupting network consensus operations.

Detection Methods for CVE-2026-34064

Indicators of Compromise

  • Unexpected Nimiq node crashes with panic messages referencing Coin::sub underflow
  • Vesting contract creation transactions where total_amount exceeds transaction.value
  • Repeated node restarts coinciding with specific transaction broadcasts
  • Log entries showing panics in VestingContract::can_change_balance execution path

Detection Strategies

  • Monitor Nimiq node logs for panic conditions related to arithmetic operations in vesting contract code
  • Implement transaction validation rules to flag vesting contracts where total_amount exceeds deposited value
  • Deploy node health monitoring to detect unexpected crashes and correlate with transaction activity
  • Analyze mempool contents for transactions targeting known malformed vesting contracts

Monitoring Recommendations

  • Configure alerting for Nimiq node process crashes and automatic restart events
  • Monitor blockchain transaction patterns for anomalous vesting contract creation sequences
  • Implement network-level monitoring to detect coordinated node crash attempts across the network
  • Review node telemetry for elevated crash rates following specific transaction types

How to Mitigate CVE-2026-34064

Immediate Actions Required

  • Upgrade nimiq-account and core-rs-albatross to version 1.3.0 or later immediately
  • Review existing vesting contracts for potential malformed total_amount values
  • Implement node restart automation with rate limiting to maintain availability during potential attacks
  • Consider temporarily filtering vesting contract transactions at the mempool level until patched

Patch Information

The vulnerability is addressed in version 1.3.0 of Nimiq core-rs-albatross. The fix is available in commit 4d01946f0b3d6c6e31786f91cdfb3eb902908da0 and was merged via pull request #3658. The patched release is available at the v1.3.0 release page. Additional details are available in the GitHub Security Advisory.

Workarounds

  • No official workarounds are available according to the security advisory
  • Upgrading to version 1.3.0 is the only recommended remediation
  • Network operators may consider implementing transaction filtering as a temporary measure pending upgrade

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.03%

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

  • GitHub Pull Request

  • GitHub Release v1.3.0

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-34066: Nimiq Blockchain 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