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

CVE-2026-35468: Nimiq Core-rs-albatross DOS Vulnerability

CVE-2026-35468 is a denial of service vulnerability in Nimiq Core-rs-albatross that allows remote peers to trigger panic crashes during node synchronization. This article covers technical details, affected versions, and fixes.

Published: April 10, 2026

CVE-2026-35468 Overview

CVE-2026-35468 is a Denial of Service vulnerability in nimiq/core-rs-albatross, a Rust implementation of the Nimiq Proof-of-Stake protocol based on the Albatross consensus algorithm. Prior to version 1.3.0, two peer-facing consensus request handlers incorrectly assume that the history index is always available, directly calling blockchain.history_store.history_index().unwrap() without proper error handling. This assumption is fundamentally incorrect because HistoryStoreProxy::history_index() explicitly returns None for the valid HistoryStoreProxy::WithoutIndex state.

When a full node is syncing or otherwise running without the history index, a remote attacker can send RequestTransactionsProof or RequestTransactionReceiptsByAddress messages to trigger an Option::unwrap() panic on the request path, causing the node to crash.

Critical Impact

Remote attackers can crash Nimiq full nodes during synchronization or when running without history index by sending specially crafted consensus requests, potentially disrupting blockchain network operations.

Affected Products

  • nimiq core-rs-albatross versions prior to 1.3.0
  • Nimiq full nodes operating in sync mode or without history index enabled

Discovery Timeline

  • 2026-04-03 - CVE CVE-2026-35468 published to NVD
  • 2026-04-09 - Last updated in NVD database

Technical Details for CVE-2026-35468

Vulnerability Analysis

This vulnerability stems from unsafe handling of an optional return value in Rust code. The HistoryStoreProxy type has two valid states: one with an available history index and one without (WithoutIndex). The history_index() method correctly returns Option<&HistoryIndex>, returning None when the proxy is in the WithoutIndex state.

However, two peer-facing request handlers—those processing RequestTransactionsProof and RequestTransactionReceiptsByAddress messages—call .unwrap() on this Option without checking for None. In Rust, calling .unwrap() on a None value causes an immediate panic, terminating the current thread or process.

This vulnerability can be exploited remotely over the network without authentication. An attacker simply needs to identify a Nimiq full node that is currently syncing or configured without the history index, then send one of the vulnerable request types to trigger the panic. The attack requires no special privileges and no user interaction.

Root Cause

The root cause is CWE-252: Unchecked Return Value. The consensus request handlers fail to properly handle the None case returned by HistoryStoreProxy::history_index(). Rather than gracefully handling nodes operating in WithoutIndex mode by returning an appropriate error response or simply not providing the requested data, the code uses .unwrap() which panics on None values. This is a common pattern error in Rust where developers assume certain conditions will always be true without properly validating those assumptions.

Attack Vector

The attack vector is network-based and requires no authentication. An attacker can exploit this vulnerability by:

  1. Identifying a Nimiq node running core-rs-albatross prior to version 1.3.0
  2. Determining if the target node is in a vulnerable state (syncing or running without history index)
  3. Sending a RequestTransactionsProof or RequestTransactionReceiptsByAddress message to the node
  4. The vulnerable code path calls history_store.history_index().unwrap() which panics when the history index is unavailable
  5. The panic causes the node process to crash, achieving denial of service

The vulnerability mechanism is straightforward—the panic occurs within the request handler path, meaning any peer on the network can trigger it by sending the appropriate message type. For detailed technical analysis, refer to the GitHub Security Advisory GHSA-xr78-2jhh-9wf9.

Detection Methods for CVE-2026-35468

Indicators of Compromise

  • Unexpected Nimiq node crashes or restarts, particularly during synchronization periods
  • Panic messages in node logs referencing Option::unwrap() failures in history store operations
  • Increased network traffic containing RequestTransactionsProof or RequestTransactionReceiptsByAddress messages from unknown peers
  • Patterns of node instability correlating with external connection attempts

Detection Strategies

  • Monitor node process stability and implement alerting for unexpected terminations
  • Analyze crash dumps for panic traces originating from consensus request handler code paths
  • Implement network intrusion detection rules to identify suspicious patterns of consensus request messages
  • Review node logs for panic messages containing called Option::unwrap() on a None value in the history store module

Monitoring Recommendations

  • Configure process monitoring to track Nimiq node uptime and automatically alert on crashes
  • Implement centralized logging for all node instances to correlate crash events across the network
  • Monitor peer connection patterns for anomalous request behavior targeting transaction proof endpoints
  • Set up network traffic analysis to baseline normal consensus request patterns and detect deviations

How to Mitigate CVE-2026-35468

Immediate Actions Required

  • Upgrade all nimiq/core-rs-albatross installations to version 1.3.0 or later immediately
  • If immediate upgrade is not possible, consider temporarily restricting network access to affected nodes
  • Monitor node stability and implement automatic restart mechanisms as a temporary measure
  • Review peer connections and consider temporarily disconnecting from untrusted peers until patched

Patch Information

This vulnerability has been patched in nimiq/core-rs-albatross version 1.3.0. The fix is available in commit 0e5c90a6c75b722f3d6091769776a4040e694dba, which was introduced via Pull Request #3667. Users should update to the latest release to remediate this vulnerability.

Workarounds

  • Implement network-level filtering to restrict which peers can send consensus requests to vulnerable nodes
  • Run nodes behind a reverse proxy or firewall that can rate-limit or block suspicious request patterns
  • Consider running nodes with full history index enabled when possible, though this does not fully mitigate the issue during sync
  • Deploy monitoring and automatic restart scripts to minimize downtime from potential exploitation
bash
# Upgrade 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 Core Rs Albatross

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.05%

  • 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-252
  • Technical References
  • GitHub Release v1.3.0
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Pull Request 3667

  • GitHub Security Advisory GHSA-xr78-2jhh-9wf9
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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