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-2023-46809

CVE-2023-46809: Node.js OpenSSL Marvin Attack Vulnerability

CVE-2023-46809 affects Node.js versions bundling unpatched OpenSSL, enabling the Marvin Attack through PKCS #1 v1.5 padding exploitation during RSA decryption. This article covers technical details, risks, and mitigations.

Published: February 11, 2026

CVE-2023-46809 Overview

Node.js versions which bundle an unpatched version of OpenSSL or run against a dynamically linked version of OpenSSL which are unpatched are vulnerable to the Marvin Attack. This vulnerability affects systems if PKCS #1 v1.5 padding is allowed when performing RSA decryption using a private key. The Marvin Attack is a timing side-channel attack that can allow attackers to decrypt ciphertext and forge signatures without possessing the private key.

Critical Impact

This timing side-channel vulnerability in RSA PKCS#1 v1.5 padding could allow attackers to decrypt sensitive data or forge digital signatures through precise timing measurements during RSA decryption operations.

Affected Products

  • Node.js versions bundling unpatched OpenSSL
  • Node.js versions linked against unpatched system OpenSSL libraries
  • Systems using RSA with PKCS #1 v1.5 padding for decryption

Discovery Timeline

  • 2024-09-07 - CVE CVE-2023-46809 published to NVD
  • 2025-11-04 - Last updated in NVD database

Technical Details for CVE-2023-46809

Vulnerability Analysis

This vulnerability is classified under CWE-385 (Covert Timing Channel), indicating that the flaw relates to information disclosure through timing variations in cryptographic operations. The Marvin Attack exploits subtle timing differences in how RSA decryption handles PKCS#1 v1.5 padding validation. When an application uses RSA private key operations with PKCS#1 v1.5 padding, the time taken to process different ciphertexts can vary slightly depending on the padding validity. An attacker who can measure these timing differences with sufficient precision can gradually recover the plaintext or forge valid signatures without access to the private key.

The attack requires network access and high complexity to execute successfully, as the attacker must capture precise timing measurements across multiple decryption attempts. However, successful exploitation can lead to significant confidentiality and integrity impacts, potentially exposing encrypted communications or enabling signature forgery.

Root Cause

The root cause lies in the OpenSSL library's implementation of RSA PKCS#1 v1.5 decryption, which does not execute in constant time. The padding verification process introduces measurable timing variations that correlate with the structure of the decrypted data. Node.js applications are affected when they bundle or link against vulnerable OpenSSL versions and use RSA decryption with PKCS#1 v1.5 padding mode.

Attack Vector

The attack is conducted over the network, where an attacker sends specially crafted ciphertexts to a target server performing RSA decryption. By measuring response times for numerous decryption attempts, the attacker can build a statistical model of timing variations. This information is then used to iteratively recover the plaintext or derive information sufficient to forge signatures.

The Marvin Attack requires:

  1. A target system performing RSA private key operations with PKCS#1 v1.5 padding
  2. The ability to submit ciphertexts and measure decryption timing with high precision
  3. Sufficient network proximity or conditions to minimize timing noise
  4. A large number of oracle queries (potentially millions) depending on key size and conditions

For detailed technical information about the Marvin Attack methodology, refer to the Node.js Security Release Blog.

Detection Methods for CVE-2023-46809

Indicators of Compromise

  • Unusual patterns of RSA decryption requests with high frequency from single sources
  • Timing anomalies in TLS handshakes or other RSA-based authentication workflows
  • Large volumes of failed decryption attempts followed by successful operations

Detection Strategies

  • Monitor for high-volume RSA decryption operations from individual IP addresses or clients
  • Implement network traffic analysis to detect potential timing oracle probing patterns
  • Deploy application-level logging for cryptographic operations to identify anomalous usage patterns
  • Use intrusion detection systems with rules targeting timing attack reconnaissance behavior

Monitoring Recommendations

  • Enable detailed logging for TLS handshake operations and RSA key usage
  • Monitor OpenSSL version deployments across your Node.js infrastructure
  • Track cryptographic operation latencies for statistical anomalies that may indicate probing
  • Audit applications for use of RSA PKCS#1 v1.5 padding in decryption workflows

How to Mitigate CVE-2023-46809

Immediate Actions Required

  • Update Node.js to the latest patched version that includes fixed OpenSSL libraries
  • If using system OpenSSL, ensure it is updated to a version patched against the Marvin Attack
  • Audit applications to identify usage of RSA PKCS#1 v1.5 padding and migrate to OAEP where possible
  • Review cryptographic configurations to minimize exposure to timing attacks

Patch Information

Node.js released security updates addressing this vulnerability in February 2024. Administrators should update to the patched versions as detailed in the Node.js Security Release Blog. Debian users should apply updates from the Debian LTS Advisory March 2024 and the Debian LTS Advisory September 2024.

Workarounds

  • Migrate from RSA PKCS#1 v1.5 padding to RSA-OAEP (Optimal Asymmetric Encryption Padding) which is designed to be resistant to timing attacks
  • Where migration is not immediately possible, implement additional network-level rate limiting on endpoints performing RSA decryption
  • Add artificial random delays to RSA operations to obscure timing information (note: this is not a complete mitigation)
  • Use hardware security modules (HSMs) for RSA operations which may provide constant-time implementations
bash
# Check Node.js version and update
node --version
# Update using package manager (example for npm-based version management)
nvm install --lts
nvm use --lts

# Check linked OpenSSL version
node -e "console.log(process.versions.openssl)"

# For Debian-based systems, update OpenSSL
sudo apt update && sudo apt upgrade openssl libssl-dev

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechNode Js

  • SeverityHIGH

  • CVSS Score7.4

  • EPSS Probability1.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-385
  • Technical References
  • Node.js Security Release Blog

  • Debian LTS Advisory March 2024

  • Debian LTS Advisory September 2024
  • Related CVEs
  • CVE-2025-54994: MCP Server Starter Kit RCE Vulnerability

  • CVE-2024-22020: Node.js RCE Vulnerability

  • CVE-2026-21717: Node.js V8 Hash Collision DoS Vulnerability

  • CVE-2025-59464: Node.js OpenSSL Memory Leak 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