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

CVE-2026-33184: Nimiq Albatross DOS Vulnerability

CVE-2026-33184 is a denial-of-service flaw in Nimiq's Rust Albatross implementation that allows attackers to trigger capacity overflow panics. This article covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-33184 Overview

CVE-2026-33184 is an integer underflow vulnerability in nimiq/core-rs-albatross, a Rust implementation of the Nimiq Proof-of-Stake protocol based on the Albatross consensus algorithm. The vulnerability exists in the discovery handler which accepts a peer-controlled limit during handshake and stores it unchanged. When a malicious peer sets limit = 0, the subsequent computation of self.peer_list_limit.unwrap() as usize - 1 causes an integer underflow, wrapping to usize::MAX. This leads to a deterministic panic with capacity overflow when choose_multiple() attempts to allocate an impossibly large vector.

Critical Impact

Remote attackers can crash Nimiq validator nodes by sending a crafted handshake with limit = 0, causing complete denial of service to the blockchain network node.

Affected Products

  • nimiq/core-rs-albatross versions prior to 1.3.0
  • Nimiq Proof-of-Stake protocol implementations using vulnerable Albatross consensus code

Discovery Timeline

  • 2026-04-03 - CVE CVE-2026-33184 published to NVD
  • 2026-04-07 - Last updated in NVD database

Technical Details for CVE-2026-33184

Vulnerability Analysis

This vulnerability exploits a classic integer underflow condition in Rust code handling peer discovery. The discovery handler accepts a limit parameter from connecting peers during the handshake phase without proper validation. The immediate HandshakeAck path honors limit = 0 and returns zero contacts, making the session appear benign to any connection monitoring.

However, when the same session transitions to the Established state, the periodic update path performs an unchecked arithmetic operation: self.peer_list_limit.unwrap() as usize - 1. With limit = 0, this subtraction underflows to usize::MAX (typically 18,446,744,073,709,551,615 on 64-bit systems). Subsequently, the rand crate's choose_multiple() function attempts to allocate a vector with this astronomical capacity via Vec::with_capacity(amount), which deterministically panics with a capacity overflow error.

Root Cause

The root cause is classified as CWE-191 (Integer Underflow). The code fails to validate that the peer-provided limit parameter is greater than zero before performing subtraction. In Rust, while arithmetic operations in release builds wrap by default, the subsequent memory allocation attempt with the wrapped value causes a panic rather than silent corruption. The lack of input validation on peer-controlled data allows attackers to trigger this condition remotely.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker establishes a peer connection to a vulnerable Nimiq node and provides limit = 0 during the discovery handshake. The attack is particularly insidious because the initial handshake completes successfully and the session appears legitimate. The crash only occurs later during periodic peer list updates, potentially making it harder to correlate the crash with the malicious connection.

The vulnerability can be exploited by any network-reachable attacker to crash validator nodes, potentially disrupting consensus and network availability. In blockchain networks, this type of DoS vulnerability is especially critical as it can affect network consensus and transaction processing.

Detection Methods for CVE-2026-33184

Indicators of Compromise

  • Nimiq node processes terminating unexpectedly with capacity overflow panics
  • Log entries showing panic at Vec::with_capacity() in discovery-related code paths
  • Unusual peer connections that complete handshake but trigger crashes shortly after reaching Established state
  • Pattern of node restarts correlated with specific peer connections

Detection Strategies

  • Monitor node process stability and implement alerting on unexpected terminations
  • Analyze crash dumps for stack traces containing choose_multiple and capacity overflow indicators
  • Implement connection logging to correlate crash events with recent peer connections
  • Deploy network-level monitoring for anomalous connection patterns to Nimiq nodes

Monitoring Recommendations

  • Enable verbose logging for peer discovery and connection state transitions
  • Set up process monitoring with automatic restart capabilities to maintain availability
  • Implement peer reputation scoring to identify and block suspicious connection sources
  • Monitor memory allocation patterns for anomalous requests

How to Mitigate CVE-2026-33184

Immediate Actions Required

  • Upgrade nimiq/core-rs-albatross to version 1.3.0 or later immediately
  • Review node logs for evidence of exploitation attempts or unexpected crashes
  • Consider implementing network-level access controls to limit peer connections during the upgrade window
  • Monitor node availability closely during the remediation period

Patch Information

The vulnerability has been patched in nimiq/core-rs-albatross version 1.3.0. The fix is available in commit 8f60a2d75b74b55764ecf34bd4435f4961630595. For detailed information about the vulnerability and patch, refer to the GitHub Security Advisory GHSA-5rm9-893q-vmhm, Pull Request #3664, and the v1.3.0 Release.

Workarounds

  • No official workarounds are available; upgrading to version 1.3.0 is the recommended remediation
  • Implement network-level rate limiting on incoming peer connections as a temporary defensive measure
  • Consider running nodes behind firewalls with restricted peer access until patching is complete
  • Deploy redundant nodes to maintain network availability in case of DoS attacks
bash
# Upgrade nimiq/core-rs-albatross to patched version
cd /path/to/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.06%

  • 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-191
  • Technical References
  • GitHub Commit Notification

  • GitHub Pull Request Update

  • GitHub Release v1.3.0

  • GitHub Security Advisory GHSA-5rm9-893q-vmhm
  • 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-34067: Nimiq Transaction 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