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-2025-29910

CVE-2025-29910: NASA CryptoLib DoS Vulnerability

CVE-2025-29910 is a denial of service flaw in NASA CryptoLib caused by a memory leak that leads to resource exhaustion. This article covers the technical details, affected versions, impact, and mitigation strategies.

Published: April 28, 2026

CVE-2025-29910 Overview

CVE-2025-29910 is a memory leak vulnerability discovered in NASA's CryptoLib, a software-only solution using the CCSDS Space Data Link Security Protocol - Extended Procedures (SDLS-EP) to secure communications between spacecraft running the core Flight System (cFS) and ground stations. The vulnerability was identified in the crypto_handle_incrementing_nontransmitted_counter function, where memory allocated using malloc is not always properly freed, leading to resource exhaustion over time.

Critical Impact

Systems using CryptoLib for high-throughput or continuous data streams face potential Denial of Service (DoS) conditions due to gradual memory exhaustion, particularly impacting long-running spacecraft communication processes.

Affected Products

  • NASA CryptoLib versions 1.3.3 and prior
  • Systems using CryptoLib for spacecraft-to-ground station communications
  • Any implementation handling high-throughput or continuous data streams via CryptoLib

Discovery Timeline

  • 2025-03-17 - CVE-2025-29910 published to NVD
  • 2025-04-30 - Last updated in NVD database

Technical Details for CVE-2025-29910

Vulnerability Analysis

This vulnerability represents a classic memory management flaw (CWE-401: Missing Release of Memory after Effective Lifetime) in the crypto_handle_incrementing_nontransmitted_counter function within the crypto_tc.c source file. The function is responsible for handling incrementing non-transmitted counters as part of the SDLS-EP cryptographic operations.

When processing data, the function allocates memory dynamically using malloc but fails to ensure that this allocated memory is consistently freed across all code execution paths. In typical short-lived applications, such memory leaks might go unnoticed. However, in the context of spacecraft communications where CryptoLib operates continuously for extended periods processing large volumes of telemetry and command data, this leak accumulates progressively.

The vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker could potentially accelerate the memory exhaustion by sending crafted data streams that trigger the vulnerable code path repeatedly, though the primary concern is organic resource depletion during normal operations.

Root Cause

The root cause lies in improper memory lifecycle management within the crypto_handle_incrementing_nontransmitted_counter function. The function contains code paths where malloc is called to allocate memory buffers, but corresponding free calls are either missing entirely or not executed due to early returns, error conditions, or exception handling that bypasses the deallocation logic.

This pattern is particularly dangerous in embedded systems and long-running services where memory resources are finite and cannot be easily recovered without a system restart. The CryptoLib implementation does not appear to implement a memory pool or garbage collection mechanism that would mitigate such leaks automatically.

Attack Vector

The vulnerability is accessible over the network (Attack Vector: Network) with low attack complexity. An attacker does not require any privileges or user interaction to exploit this vulnerability. The attack scenario involves:

  1. Establishing communication with a system running vulnerable CryptoLib
  2. Sending data that triggers the crypto_handle_incrementing_nontransmitted_counter function
  3. Repeating the process to accelerate memory consumption
  4. Eventually causing system performance degradation or complete Denial of Service

The vulnerability can be triggered through normal protocol operations that invoke the affected function, making it difficult to distinguish malicious exploitation from legitimate traffic without proper monitoring.

Detection Methods for CVE-2025-29910

Indicators of Compromise

  • Gradual increase in memory consumption by processes using CryptoLib without corresponding workload increase
  • System performance degradation over time in spacecraft communication systems
  • Unexpected process termination due to out-of-memory conditions
  • Memory allocation failures logged by CryptoLib or dependent applications

Detection Strategies

  • Implement memory profiling and leak detection tools (e.g., Valgrind, AddressSanitizer) during CryptoLib integration testing
  • Monitor process memory usage metrics for applications utilizing CryptoLib functions
  • Deploy runtime memory tracking to identify allocation patterns in the crypto_tc.c module
  • Review system logs for memory allocation failures or warnings related to CryptoLib operations

Monitoring Recommendations

  • Establish baseline memory consumption patterns for CryptoLib-dependent processes and alert on anomalous growth
  • Configure automated memory usage thresholds that trigger alerts before resource exhaustion occurs
  • Implement periodic process restarts as a temporary mitigation strategy for critical systems until a patch is available
  • Enable verbose logging in CryptoLib to track function calls to crypto_handle_incrementing_nontransmitted_counter

How to Mitigate CVE-2025-29910

Immediate Actions Required

  • Assess all systems utilizing NASA CryptoLib versions 1.3.3 and prior for exposure to this vulnerability
  • Implement memory monitoring and alerting for affected systems to detect early signs of resource exhaustion
  • Consider scheduled service restarts for critical systems to prevent memory accumulation from reaching critical levels
  • Review the GitHub Security Advisory for updates and additional guidance

Patch Information

As of the publication date, no patched versions of CryptoLib are available. Organizations should monitor the official NASA CryptoLib GitHub repository for security updates and patch releases. When a fix becomes available, immediate testing and deployment is recommended given the potential for DoS conditions in mission-critical communication systems.

Workarounds

  • Implement process watchdog mechanisms that automatically restart CryptoLib-dependent services when memory thresholds are exceeded
  • Rate-limit incoming data streams to reduce the frequency of vulnerable function invocations
  • Deploy wrapper functions that track memory allocations in crypto_handle_incrementing_nontransmitted_counter and ensure proper cleanup
  • Consider isolation of CryptoLib processes in containers with memory limits to prevent system-wide impact
bash
# Example memory monitoring configuration for CryptoLib processes
# Add to system monitoring (e.g., cron job or systemd timer)
#!/bin/bash
PROCESS_NAME="cryptolib_process"
MEMORY_THRESHOLD_KB=1048576  # 1GB threshold
CURRENT_MEM=$(ps -o rss= -C $PROCESS_NAME 2>/dev/null | awk '{sum+=$1} END {print sum}')
if [ "$CURRENT_MEM" -gt "$MEMORY_THRESHOLD_KB" ]; then
    logger -p daemon.warning "CryptoLib memory threshold exceeded: ${CURRENT_MEM}KB"
    # Implement appropriate response (alert, restart, etc.)
fi

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNasa Cryptolib

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.63%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-401
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-46673: NASA CryptoLib Auth Bypass Vulnerability

  • CVE-2025-29912: NASA CryptoLib Buffer Overflow Vulnerability

  • CVE-2025-29913: NASA CryptoLib Buffer Overflow Vulnerability

  • CVE-2025-30216: NASA CryptoLib RCE 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