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

CVE-2026-32605: Nimiq Core-rs-albatross DoS Vulnerability

CVE-2026-32605 is a denial of service flaw in Nimiq core-rs-albatross that allows untrusted peers to crash validators through malformed proposal messages. This article covers technical details, affected versions, and mitigations.

Published: April 17, 2026

CVE-2026-32605 Overview

CVE-2026-32605 is an out-of-bounds read vulnerability affecting nimiq/core-rs-albatross, the Rust implementation of the Nimiq Proof-of-Stake protocol based on the Albatross consensus algorithm. Prior to version 1.3.0, an untrusted peer could crash a validator node by publishing a specially crafted signed Tendermint proposal message. The vulnerability exists in the ProposalSender::send function which uses an incorrect bounds check operator (> instead of >=), allowing a malicious signer value equal to validators.num_validators() to pass validation and trigger a panic when accessing an out-of-bounds array index.

Critical Impact

An unauthenticated remote attacker can crash Nimiq validator nodes, disrupting network consensus and causing denial of service to the blockchain network without any signature verification occurring.

Affected Products

  • nimiq/core-rs-albatross versions prior to 1.3.0
  • Nimiq Proof-of-Stake validator nodes running vulnerable versions
  • Nodes participating in Albatross consensus protocol

Discovery Timeline

  • April 13, 2026 - CVE CVE-2026-32605 published to NVD
  • April 13, 2026 - Last updated in NVD database

Technical Details for CVE-2026-32605

Vulnerability Analysis

This vulnerability is classified under CWE-125 (Out-of-bounds Read). The flaw resides in the bounds checking logic within the ProposalSender::send function of the Nimiq core-rs-albatross codebase. When processing incoming Tendermint proposal messages, the function validates the signer field against the total number of validators. However, the comparison uses a strictly greater-than operator (>) rather than a greater-than-or-equal operator (>=), creating an off-by-one error.

This off-by-one flaw allows a signer value exactly equal to validators.num_validators() to bypass the bounds check. Subsequently, when the code attempts to retrieve the validator using validators.get_validator_by_slot_band(signer), it triggers a panic due to accessing an index that is one position beyond the valid array bounds. Critically, this crash occurs before any cryptographic signature verification takes place, meaning an attacker does not need to possess valid signing keys to exploit this vulnerability.

Root Cause

The root cause is an incorrect boundary condition check in the ProposalSender::send function. The bounds validation logic uses a > comparison operator when it should use >=. When the signer value equals the exact count of validators (an invalid index since arrays are zero-indexed), the check passes incorrectly. The subsequent array access at this invalid index causes Rust's runtime bounds checking to trigger a panic, terminating the validator process. This is a classic off-by-one error in boundary validation logic.

Attack Vector

The attack can be executed remotely over the network without authentication. An attacker needs to craft a signed Tendermint proposal message with the signer field set to a value equal to validators.num_validators(). When this malicious message is received by a vulnerable validator node through the peer-to-peer network, the following sequence occurs:

  1. The proposal message arrives at the target validator
  2. The ProposalSender::send function processes the message
  3. The bounds check (signer > validators.num_validators()) evaluates to false when signer equals the validator count
  4. The code proceeds to call validators.get_validator_by_slot_band(signer) with an out-of-bounds index
  5. Rust's runtime panics due to the invalid array access, crashing the validator process

No valid cryptographic signature is required because the crash occurs before signature verification. The vulnerability can be exploited by any network peer that can send proposal messages.

Detection Methods for CVE-2026-32605

Indicators of Compromise

  • Unexpected validator node crashes or process terminations
  • Panic messages in logs referencing array index out of bounds in validator-related functions
  • Increased frequency of validator restarts without clear operational cause
  • Network peers sending proposal messages with abnormally high signer values

Detection Strategies

  • Monitor validator node logs for panic messages containing "index out of bounds" or related array access errors
  • Implement alerting on unexpected validator process terminations or restart patterns
  • Analyze network traffic for Tendermint proposal messages with signer values at or near validator count boundaries
  • Deploy intrusion detection rules to flag proposal messages with suspicious signer field values

Monitoring Recommendations

  • Set up automated health checks for validator node availability and process status
  • Configure log aggregation to capture and alert on Rust panic traces from validator processes
  • Monitor network consensus participation metrics for signs of repeated validator dropouts
  • Track peer behavior patterns to identify sources of potentially malicious proposal messages

How to Mitigate CVE-2026-32605

Immediate Actions Required

  • Upgrade nimiq/core-rs-albatross to version 1.3.0 or later immediately
  • Review validator logs for any signs of previous exploitation attempts
  • Consider temporarily restricting peer connections to trusted nodes if upgrade cannot be performed immediately
  • Monitor validator uptime closely during the upgrade window

Patch Information

The vulnerability has been fixed in nimiq/core-rs-albatross version 1.3.0. The fix corrects the boundary condition check in the ProposalSender::send function to use the proper >= comparison operator, ensuring that signer values equal to validators.num_validators() are correctly rejected as invalid.

For detailed information about the fix, refer to:

  • GitHub Security Advisory GHSA-g99c-h7j7-rfhv
  • GitHub Pull Request #3661
  • GitHub Commit 9199364
  • GitHub Release v1.3.0

Workarounds

  • Deploy the patched version 1.3.0 as the primary mitigation; no official workarounds are available
  • Implement network-level filtering to drop malformed proposal messages at the perimeter if possible
  • Run validators behind a proxy that can validate message fields before forwarding to the validator node
  • Configure automatic validator restart mechanisms to reduce downtime from potential 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

  • 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-125
  • Technical References
  • GitHub Commit Update

  • GitHub Pull Request 3661

  • GitHub Release v1.3.0

  • GitHub Security Advisory GHSA-g99c-h7j7-rfhv
  • Related CVEs
  • CVE-2026-40094: Nimiq Blockchain DoS Vulnerability

  • CVE-2026-40092: Nimiq Blockchain DoS Vulnerability

  • CVE-2026-34064: Nimiq Account DoS Vulnerability

  • CVE-2026-34066: Nimiq Blockchain 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