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

CVE-2024-42460: Indutny Elliptic Signature Malleability Flaw

CVE-2024-42460 is an ECDSA signature malleability flaw in Indutny Elliptic for Node.js caused by missing validation checks. This article covers the technical details, affected versions, security impact, and mitigation.

Updated: January 22, 2026

CVE-2024-42460 Overview

CVE-2024-42460 is a cryptographic vulnerability affecting the Elliptic package version 6.5.6 for Node.js. The vulnerability stems from ECDSA signature malleability due to a missing validation check for whether the leading bit of the r and s signature components is zero. This oversight allows attackers to create multiple valid signatures for the same message, potentially bypassing signature verification controls in applications that rely on signature uniqueness.

Critical Impact

Applications using the affected Elliptic package may be vulnerable to signature replay attacks or authentication bypasses where signature uniqueness is assumed as a security control.

Affected Products

  • Indutny Elliptic version 6.5.6 for Node.js
  • Applications and services dependent on the Elliptic npm package for ECDSA cryptographic operations

Discovery Timeline

  • August 2, 2024 - CVE-2024-42460 published to NVD
  • November 3, 2025 - Last updated in NVD database

Technical Details for CVE-2024-42460

Vulnerability Analysis

The vulnerability exists in the ECDSA signature implementation within the Elliptic package. In properly implemented ECDSA, signatures consist of two integer components (r and s) that must conform to specific formatting requirements to ensure signature uniqueness. The affected version fails to validate that the leading bit of both r and s components is zero when required by DER encoding rules.

This missing check creates a signature malleability issue where an attacker who obtains a valid signature can mathematically derive alternative valid signatures for the same message without possessing the private key. While this does not allow forging signatures for new messages, it undermines security assumptions in systems that treat signature values as unique identifiers or use them in replay protection mechanisms.

Root Cause

The root cause is an improper handling of length with inconsistent values (CWE-130). The Elliptic package's signature verification and generation routines do not properly enforce that the r and s values have their leading bits set to zero when the high bit would otherwise indicate a negative number in DER encoding. This allows for non-canonical signature representations to be accepted as valid.

Attack Vector

The vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker can:

  1. Intercept a valid ECDSA signature produced by the vulnerable library
  2. Mathematically compute an alternative valid signature for the same message
  3. Use the modified signature to bypass systems that assume signature uniqueness

The attack is particularly impactful against:

  • Transaction systems that use signature values as unique identifiers
  • Replay protection mechanisms relying on signature caching
  • Smart contracts or blockchain applications using signature deduplication

The technical details of the signature malleability issue involve the mathematical relationship between valid ECDSA signature representations. When a signature (r, s) is valid, certain transformations can produce alternative valid signatures that pass verification. The fix involves enforcing strict DER encoding requirements to ensure only canonical signature forms are accepted. See the GitHub Pull Request for implementation details.

Detection Methods for CVE-2024-42460

Indicators of Compromise

  • Duplicate transactions or operations with mathematically related but different signature values
  • Multiple valid signatures for identical message payloads in application logs
  • Signature verification successes for non-canonical DER-encoded signatures
  • Anomalous patterns in signature r and s component byte lengths

Detection Strategies

  • Audit npm dependency trees to identify usage of Elliptic version 6.5.6 using npm ls elliptic or yarn why elliptic
  • Implement Software Composition Analysis (SCA) scanning in CI/CD pipelines to flag vulnerable package versions
  • Monitor application logs for signature verification patterns that may indicate malleability exploitation
  • Use npm audit or similar tools to detect known vulnerabilities in dependencies

Monitoring Recommendations

  • Deploy continuous dependency monitoring with alerts for vulnerable Elliptic package versions
  • Implement integrity monitoring for cryptographic operations that may be affected by signature malleability
  • Review transaction and authentication logs for evidence of signature manipulation attempts
  • Establish baseline metrics for signature verification operations to detect anomalous patterns

How to Mitigate CVE-2024-42460

Immediate Actions Required

  • Update the Elliptic npm package to a patched version that enforces canonical signature validation
  • Audit applications for security controls that assume ECDSA signature uniqueness
  • Review and update any signature caching or deduplication mechanisms to account for malleability
  • Implement additional signature normalization checks at the application layer if immediate patching is not possible

Patch Information

The vulnerability was addressed through updates to the Elliptic package's signature handling code. Technical details of the fix are available in the GitHub Pull Request #317. Organizations using affected versions should update to the latest patched release. NetApp has also issued a Security Advisory for affected products.

Workarounds

  • Implement application-layer signature normalization to convert all signatures to canonical form before processing
  • Add secondary validation checks for signature uniqueness that are resistant to malleability
  • Consider using alternative cryptographic libraries with strict canonical signature enforcement until patching is complete
  • Implement transaction or message-level deduplication that does not rely solely on signature values
bash
# Check for vulnerable Elliptic package versions in your project
npm ls elliptic
# or
yarn why elliptic

# Update Elliptic package to latest version
npm update elliptic
# or
yarn upgrade elliptic

# Audit for known vulnerabilities
npm audit

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechIndutny Elliptic

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.24%

  • 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-130
  • Technical References
  • GitHub Pull Request Update

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

  • CVE-2024-42459: Elliptic EDDSA 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