The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-2025-47270

CVE-2025-47270: Nimiq Core RS Albatross DoS Vulnerability

CVE-2025-47270 is a denial of service vulnerability in Nimiq Core RS Albatross caused by uncontrolled memory allocation in Discovery message handling. This article covers technical details, affected versions, and mitigation.

Published: April 21, 2026

CVE-2025-47270 Overview

CVE-2025-47270 is a Denial of Service (DoS) vulnerability affecting the nimiq-network-libp2p subcrate of nimiq/core-rs-albatross, the Rust implementation of the Nimiq Proof-of-Stake protocol based on the Albatross consensus algorithm. The vulnerability stems from uncontrolled memory allocation in the Discovery network message handling, where the implementation allocates a buffer based on a peer-provided length value without enforcing an upper bound. Since this length is a u32, a malicious peer can trigger allocations of up to 4 GB, potentially leading to memory exhaustion and node crashes.

Critical Impact

This vulnerability allows remote attackers to crash Nimiq blockchain nodes through memory exhaustion attacks. Since Discovery messages are regularly exchanged for peer discovery, this vulnerability can be exploited repeatedly, causing sustained denial of service to the network infrastructure.

Affected Products

  • nimiq/core-rs-albatross versions prior to v1.1.0
  • nimiq-network-libp2p subcrate (Discovery message handling component)

Discovery Timeline

  • 2025-05-12 - CVE-2025-47270 published to NVD
  • 2025-05-12 - Security patch formally released as part of v1.1.0
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-47270

Vulnerability Analysis

The vulnerability exists in the nimiq-network-libp2p subcrate's Discovery message handling mechanism. When processing incoming Discovery messages from network peers, the implementation reads a length value from the message header and allocates a memory buffer of that exact size without any validation or upper bound enforcement.

Because the length field is defined as a u32 (32-bit unsigned integer), an attacker can specify values up to 4,294,967,295 bytes (approximately 4 GB). When the node attempts to allocate this massive buffer, it can quickly exhaust available system memory, causing the node process to crash or become unresponsive.

The attack surface is particularly concerning because Discovery messages are a fundamental part of the peer-to-peer network protocol, exchanged regularly during normal peer discovery operations. This means any network peer can send malicious Discovery messages to trigger the vulnerability without special privileges or authentication.

Root Cause

The root cause is a classic CWE-400 (Uncontrolled Resource Consumption) vulnerability where user-controlled input (the message length field) directly influences resource allocation without proper bounds checking. The implementation trusted the peer-provided length value without validating that it falls within reasonable limits for Discovery message sizes.

Attack Vector

The attack can be executed remotely over the network by any peer that can establish a connection to a vulnerable Nimiq node. The attacker crafts a malformed Discovery message with an extremely large length value in the header (up to the maximum u32 value of approximately 4 GB). When the target node processes this message, it attempts to allocate the specified amount of memory, leading to memory exhaustion. The attack requires no authentication and can be repeated continuously to maintain the denial of service condition.

rust
// Security patch implementing message size limits
// Source: https://github.com/nimiq/core-rs-albatross/commit/566935f0dd0fb41bba1f406d8e3a02dc499520b5

 
use super::header::Header;
 
+const MAX_MESSAGE_SIZE: u32 = 1_000_000;
+
+const CHUNK_SIZE: usize = 1024;
+
/// Try to read, such that at most `wanted_len` bytes are in the buffer.
///
/// This will return `Poll::Pending` until the buffer has `wanted_len` bytes in

Source: GitHub Commit Change

The patch introduces a MAX_MESSAGE_SIZE constant of 1 MB (1,000,000 bytes) and a CHUNK_SIZE of 1024 bytes for incremental buffer resizing, preventing the uncontrolled allocation of arbitrary memory sizes.

Detection Methods for CVE-2025-47270

Indicators of Compromise

  • Sudden spikes in memory usage on Nimiq node servers
  • Node crashes or out-of-memory (OOM) killer events in system logs
  • Abnormally large incoming Discovery messages detected in network traffic analysis
  • Repeated connection attempts from the same peer followed by memory exhaustion events
  • Degraded node responsiveness or failure to participate in consensus

Detection Strategies

  • Implement network traffic monitoring to identify Discovery messages with unusually large length values in headers
  • Configure memory usage alerting on Nimiq node servers to detect rapid memory consumption spikes
  • Monitor system logs for OOM killer events or memory allocation failures related to the Nimiq node process
  • Deploy application-level logging to track Discovery message processing and flag messages exceeding reasonable size thresholds

Monitoring Recommendations

  • Set up automated alerts for memory usage exceeding 80% threshold on nodes running nimiq/core-rs-albatross
  • Implement network intrusion detection rules to identify malformed Discovery protocol messages
  • Monitor node uptime and restart frequency to detect potential exploitation attempts
  • Enable verbose logging on Discovery message handling during investigation periods

How to Mitigate CVE-2025-47270

Immediate Actions Required

  • Upgrade nimiq/core-rs-albatross to version v1.1.0 or later immediately
  • Monitor node memory usage and implement automatic restart mechanisms as a temporary measure
  • Review network peer connections and consider blocking suspicious peers exhibiting abnormal behavior
  • Implement rate limiting on incoming Discovery messages if custom network configurations allow

Patch Information

The vulnerability has been officially patched in nimiq/core-rs-albatross version v1.1.0. The fix implements two key mitigations: a hard limit of 1 MB on Discovery message sizes (MAX_MESSAGE_SIZE: u32 = 1_000_000) and incremental buffer resizing using a CHUNK_SIZE of 1024 bytes instead of allocating the full requested size upfront.

For detailed patch information, refer to:

  • GitHub Security Advisory GHSA-3v6r-9cr8-q433
  • GitHub Pull Request #3384
  • GitHub Release v1.1.0

Workarounds

  • No official workarounds are available according to the security advisory
  • Consider deploying network-level filtering to limit maximum packet sizes for Discovery protocol traffic as a temporary measure
  • Implement resource limits (cgroups, ulimits) on the Nimiq node process to prevent system-wide memory exhaustion
  • Run nodes in containerized environments with strict memory limits to contain the impact of potential exploitation
bash
# Example: Set memory limits for Nimiq node process using systemd
# Add to your nimiq node service file

[Service]
MemoryMax=8G
MemoryHigh=6G
OOMPolicy=restart

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 Probability1.09%

  • 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-400
  • Technical References
  • GitHub Commit Change

  • GitHub Pull Request

  • GitHub Release v1.1.0

  • GitHub Security Advisory GHSA-3v6r-9cr8-q433
  • 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