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
    • 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-59464

CVE-2025-59464: Node.js OpenSSL Memory Leak DoS Vulnerability

CVE-2025-59464 is a memory leak denial of service flaw in Node.js's OpenSSL integration affecting X.509 certificate processing. Remote attackers can exhaust system resources through repeated TLS connections. This article covers technical details, affected versions, impact, and mitigation steps.

Published: January 23, 2026

CVE-2025-59464 Overview

A memory leak vulnerability exists in Node.js's OpenSSL integration that occurs when converting X.509 certificate fields to UTF-8 without properly freeing the allocated buffer. When applications call socket.getPeerCertificate(true), each certificate field leaks memory, allowing remote clients to trigger steady memory growth through repeated TLS connections. Over time this can lead to resource exhaustion and denial of service.

Critical Impact

Remote attackers can cause denial of service through memory exhaustion by initiating repeated TLS connections that trigger the memory leak in certificate processing.

Affected Products

  • Node.js (versions with vulnerable OpenSSL integration)

Discovery Timeline

  • 2026-01-20 - CVE CVE-2025-59464 published to NVD
  • 2026-01-21 - Last updated in NVD database

Technical Details for CVE-2025-59464

Vulnerability Analysis

This vulnerability falls under CWE-400 (Uncontrolled Resource Consumption) and represents a memory leak condition in Node.js's handling of TLS certificate data. The flaw exists in the code path that processes X.509 certificate fields, specifically when converting certificate field values to UTF-8 encoding for JavaScript consumption.

When an application retrieves peer certificate information using socket.getPeerCertificate(true), the underlying OpenSSL integration allocates memory buffers to hold the UTF-8 converted certificate field data. The vulnerability arises because these buffers are not properly deallocated after use, causing a persistent memory leak with each certificate field processed.

Root Cause

The root cause is improper memory management in the OpenSSL binding layer. When X.509 certificate fields are converted to UTF-8 strings for exposure to the JavaScript runtime, the allocated memory buffers are not freed after the data is copied. This creates a classic memory leak pattern where each invocation of getPeerCertificate(true) incrementally consumes additional heap memory without release.

Attack Vector

The vulnerability is exploitable over the network without authentication. An attacker can establish repeated TLS connections to a vulnerable Node.js server that calls socket.getPeerCertificate(true) on incoming connections. Each connection causes the server to leak memory associated with processing the client's certificate fields.

The attack requires user interaction (UI:R) in the sense that the server application must be configured to retrieve peer certificates. In practice, this is common in mutual TLS (mTLS) deployments where servers validate client certificates. Over an extended period, the cumulative memory leaks can exhaust available system memory, resulting in denial of service through resource exhaustion.

Detection Methods for CVE-2025-59464

Indicators of Compromise

  • Gradual increase in Node.js process memory consumption over time without corresponding workload increase
  • Memory growth correlated with TLS connection volume, particularly in mTLS configurations
  • Out-of-memory errors or process crashes in long-running Node.js TLS servers
  • System-level memory exhaustion warnings on servers handling certificate validation

Detection Strategies

  • Monitor Node.js process resident set size (RSS) and heap usage metrics for abnormal growth patterns
  • Implement alerting on memory consumption thresholds for Node.js services performing TLS certificate operations
  • Audit application code for usage of socket.getPeerCertificate(true) in TLS connection handlers
  • Review connection logs for unusual patterns of repeated TLS handshakes from single sources

Monitoring Recommendations

  • Deploy application performance monitoring (APM) tools to track memory allocation trends in Node.js services
  • Configure process-level memory limits and monitoring for Node.js applications handling TLS traffic
  • Implement automated restarts or circuit breakers for services exhibiting memory growth anomalies
  • Enable verbose TLS logging to correlate memory growth with certificate processing activity

How to Mitigate CVE-2025-59464

Immediate Actions Required

  • Review Node.js applications for usage of socket.getPeerCertificate(true) and assess exposure
  • Apply the latest Node.js security updates as documented in the December 2025 security releases
  • Implement connection rate limiting for TLS endpoints to reduce potential memory leak impact
  • Configure memory limits and automatic restarts for affected Node.js processes as a temporary measure

Patch Information

The Node.js security team has addressed this vulnerability in their December 2025 security releases. Administrators should upgrade to patched versions as soon as possible. For detailed patch information and affected version ranges, refer to the Node.js December 2025 Security Blog.

Workarounds

  • Avoid calling socket.getPeerCertificate(true) unless strictly necessary for application functionality
  • Implement periodic process restarts for long-running services as a temporary mitigation
  • Deploy connection rate limiting at the network or application layer to reduce the rate of potential memory leaks
  • Consider caching certificate validation results to minimize repeated calls to the vulnerable function

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechNode Js

  • SeverityMEDIUM

  • CVSS Score6.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-400
  • Technical References
  • Node.js December 2025 Security Blog
  • Related CVEs
  • CVE-2024-22025: Node.js fetch() DoS Vulnerability

  • CVE-2025-53620: Qwik City DoS Vulnerability

  • CVE-2025-23166: Node.js Runtime Denial of Service Flaw

  • CVE-2025-23165: Node.js Memory Leak DoS Vulnerability
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