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-2024-42459

CVE-2024-42459: Elliptic EDDSA Signature Malleability Flaw

CVE-2024-42459 is an EDDSA signature malleability vulnerability in Indutny Elliptic for Node.js caused by missing signature length validation. This article covers the technical details, affected versions, and mitigation.

Published: January 28, 2026

CVE-2024-42459 Overview

CVE-2024-42459 is a cryptographic vulnerability affecting the Elliptic package version 6.5.6 for Node.js. The vulnerability stems from EDDSA signature malleability due to a missing signature length check, which allows zero-valued bytes to be removed or appended to signatures. This improper verification of cryptographic signatures (CWE-347) can undermine the integrity guarantees that digital signatures are designed to provide.

Critical Impact

Signature malleability vulnerabilities can allow attackers to modify signatures in ways that still pass verification, potentially enabling transaction replay attacks, authentication bypasses, or other security issues in systems relying on the uniqueness of signatures.

Affected Products

  • Indutny Elliptic 6.5.6 for Node.js
  • Applications and services using the affected Elliptic package version
  • Cryptocurrency wallets and blockchain applications utilizing EDDSA signatures through this library

Discovery Timeline

  • 2024-08-02 - CVE-2024-42459 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2024-42459

Vulnerability Analysis

The Elliptic package is a widely-used JavaScript library that implements various elliptic curve cryptography operations, including the Edwards-curve Digital Signature Algorithm (EDDSA). The vulnerability exists because the library fails to perform proper length validation on EDDSA signatures during the verification process.

EDDSA signatures should have a fixed, canonical length. When the signature verification routine does not enforce this length constraint, it creates a malleability condition. An attacker can take a valid signature and modify it by either removing trailing zero-valued bytes or appending additional zero-valued bytes, producing a different signature that still validates against the same message and public key.

This vulnerability is classified under CWE-347 (Improper Verification of Cryptographic Signature), as the verification logic does not properly validate all aspects of the signature format.

Root Cause

The root cause of this vulnerability is the absence of a signature length check in the EDDSA verification implementation. The Elliptic library's signature parsing logic accepts signatures of varying lengths rather than enforcing the expected canonical format. When zero bytes at the end of a signature are treated as optional or when additional zero bytes can be appended without invalidating the signature, the cryptographic guarantee of signature uniqueness is compromised.

Attack Vector

The attack vector for this vulnerability is network-based and does not require authentication. An attacker with access to a valid EDDSA signature can manipulate it by:

  1. Removing trailing zero-valued bytes from the signature
  2. Appending zero-valued bytes to create an alternative valid signature
  3. Using these modified signatures in systems that rely on signature uniqueness for deduplication or replay protection

The modified signature will still pass verification against the original message and public key, potentially bypassing security controls that assume each valid signature is unique. This is particularly concerning for blockchain and cryptocurrency applications where transaction signatures must be canonical to prevent double-spending or replay attacks.

Detection Methods for CVE-2024-42459

Indicators of Compromise

  • Multiple valid signatures appearing for the same transaction or message with different byte lengths
  • Signature verification logs showing signatures with unexpected trailing bytes
  • Unusual patterns in signature lengths deviating from the expected EDDSA signature format

Detection Strategies

  • Audit application dependencies to identify usage of elliptic package version 6.5.6
  • Use software composition analysis (SCA) tools to scan for vulnerable package versions in your Node.js projects
  • Monitor signature verification operations for signatures with non-canonical lengths
  • Review transaction logs for potential signature duplication or modification patterns

Monitoring Recommendations

  • Implement logging for all cryptographic signature operations including signature lengths
  • Set up alerts for dependency vulnerabilities using tools like npm audit or Snyk
  • Monitor application behavior for anomalies in signature processing
  • Track package versions across your development and production environments

How to Mitigate CVE-2024-42459

Immediate Actions Required

  • Update the Elliptic package to a patched version that includes the signature length validation fix
  • Review applications using EDDSA signatures through the Elliptic library for potential impact
  • Audit transaction and signature logs for evidence of exploitation
  • Consider implementing application-level signature length validation as an additional defense layer

Patch Information

The vulnerability has been addressed through a pull request that adds proper signature length validation to the EDDSA implementation. The fix ensures that signatures must conform to the expected canonical length, rejecting any signatures with additional or missing bytes. For detailed patch information, refer to GitHub Pull Request #317. Additional vendor guidance is available in the NetApp Security Advisory.

Workarounds

  • Implement application-level validation to check EDDSA signature lengths before passing them to the verification function
  • Add signature canonicalization logic to normalize signatures before verification
  • Consider using alternative cryptographic libraries with proper signature format enforcement until the patch is applied
  • For critical applications, implement additional signature uniqueness checks at the application layer
bash
# Check for vulnerable package version in your Node.js project
npm list elliptic

# Update to a patched version
npm update elliptic

# Run security audit to identify vulnerable dependencies
npm audit

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechIndutny Elliptic

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.13%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-347
  • Technical References
  • GitHub Pull Request #317

  • NetApp Security Advisory
  • Related CVEs
  • CVE-2024-48948: Indutny Elliptic ECDSA Signature Vulnerability

  • CVE-2024-42460: Indutny Elliptic Signature Malleability Flaw
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