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

CVE-2025-62370: Alloy Core Libraries DoS Vulnerability

CVE-2025-62370 is a denial-of-service flaw in Alloy Core libraries for Rust Ethereum that allows attackers to trigger crashes via malformed input. This article covers technical details, affected versions, and mitigation.

Updated: May 11, 2026

CVE-2025-62370 Overview

CVE-2025-62370 is a denial-of-service vulnerability in the Alloy Core libraries, a foundational set of Rust crates used across the Ethereum ecosystem. The flaw resides in the alloy_dyn_abi::TypedData component, where malformed input passed to eip712_signing_hash() triggers an uncaught panic [CWE-248]. Attackers can submit crafted EIP-712 typed data to crash any Rust service that processes it. Network-facing software such as RPC endpoints, indexers, signers, and wallet backends are exposed because the panic can be triggered remotely without authentication. The maintainers patched the issue in alloy-dyn-abi versions 1.4.1 and backported the fix to 0.8.26.

Critical Impact

Remote attackers can crash Rust-based Ethereum services by sending malformed EIP-712 typed data, disrupting wallets, signers, RPC nodes, and other high-availability blockchain infrastructure.

Affected Products

  • alloy-dyn-abi crate versions prior to 0.8.26 (0.x branch)
  • alloy-dyn-abi crate versions prior to 1.4.1 (1.x branch)
  • Rust applications consuming the Alloy Core libraries for Ethereum EIP-712 typed data processing

Discovery Timeline

  • 2025-10-15 - CVE-2025-62370 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-62370

Vulnerability Analysis

The vulnerability stems from an uncaught panic [CWE-248] in the Alloy Core implementation of EIP-712 typed data hashing. The eip712_signing_hash() function in alloy_dyn_abi::TypedData accesses the first element of a collection without first verifying that the collection contains any elements. When an attacker supplies malformed TypedData input, the underlying indexing operation panics, terminating the Rust thread or process.

In services that process untrusted EIP-712 payloads, such as wallet backends, RPC providers, signing services, and indexers, this panic propagates and brings down the running instance. Software with high availability requirements is the primary target because each crafted request reliably terminates the affected component. External auto-restart mechanisms such as systemd or container orchestrators only partially mitigate the issue, since repeated requests reproduce the crash on every restart.

Root Cause

The root cause is missing input validation before an unchecked element access in TypedData handling. The original implementation assumed the relevant collection was non-empty when computing the EIP-712 signing hash. The upstream patch in commit 7823e9af8c20e9fcfb5360f5eafd891c457ebccf introduces an explicit emptiness check and returns a recoverable error instead of panicking on empty input.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker submits crafted JSON or structured EIP-712 typed data to any endpoint that calls eip712_signing_hash() on attacker-controlled input. Examples include wallet signing APIs, dApp backends, custody systems, and Rust-based Ethereum nodes that expose typed data verification. Each malformed payload causes the worker thread or process to abort, producing a denial-of-service condition.

No public proof-of-concept exploit code is available. For technical specifics, refer to the GitHub Security Advisory GHSA-pgp9-98jm-wwq2 and the corresponding RustSec Advisory RUSTSEC-2025-0073.

Detection Methods for CVE-2025-62370

Indicators of Compromise

  • Unexpected process or thread termination logs from Rust services containing the string panicked at near references to alloy_dyn_abi or TypedData.
  • Repeated service restarts by systemd, Kubernetes, or other supervisors immediately following inbound EIP-712 typed data requests.
  • Spikes in malformed eth_signTypedData or custom EIP-712 verification requests from a small set of source addresses.

Detection Strategies

  • Inventory Rust services and dependencies for the alloy-dyn-abi crate at versions below 0.8.26 or 1.4.x below 1.4.1 using cargo audit against the RustSec database.
  • Enable Rust panic logging (RUST_BACKTRACE=1) and forward stderr to centralized logging so panics in eip712_signing_hash are searchable.
  • Correlate application crash events with inbound API traffic to identify request patterns that trigger panics.

Monitoring Recommendations

  • Alert on elevated rates of HTTP 5xx responses or connection resets from endpoints that accept EIP-712 typed data.
  • Monitor container restart counts and process uptime for Rust-based Ethereum infrastructure components.
  • Track cargo audit results in CI pipelines and fail builds when RUSTSEC-2025-0073 is reported.

How to Mitigate CVE-2025-62370

Immediate Actions Required

  • Upgrade alloy-dyn-abi to version 1.4.1 for the 1.x branch or 0.8.26 for the 0.x branch and rebuild all dependent Rust binaries.
  • Audit transitive dependencies with cargo tree -i alloy-dyn-abi to identify every workspace member that pulls in the vulnerable crate.
  • Rate-limit and validate untrusted EIP-712 typed data at the application boundary until the upgrade is deployed.

Patch Information

The maintainers released the fix in commit 7823e9af8c20e9fcfb5360f5eafd891c457ebccf, which adds a non-empty check before accessing the first element and returns an error on empty input. The patched releases are available on crates.io: alloy-dyn-abi 1.4.1 and the backport alloy-dyn-abi 0.8.26.

Workarounds

  • Wrap calls to eip712_signing_hash() in std::panic::catch_unwind so malformed input does not terminate worker threads.
  • Validate EIP-712 types and message fields for required structure and non-empty arrays before passing input to Alloy.
  • Deploy auto-restart supervisors and per-source rate limiting to reduce the impact of repeated panic-triggering requests.
bash
# Configuration example: upgrade and verify the patched crate
cargo update -p alloy-dyn-abi --precise 1.4.1
cargo audit
cargo tree -i alloy-dyn-abi

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechAlloy

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-248
  • Technical References
  • Crates.io Package Version 0.8.26

  • Crates.io Package Version 1.4.1

  • GitHub Commit Details

  • GitHub Security Advisory GHSA-pgp9-98jm-wwq2

  • RustSec Advisory RUSTSEC-2025-0073
  • Latest CVEs
  • CVE-2026-8468: Elixir Plug Library DoS Vulnerability

  • CVE-2026-8295: simdjson Information Disclosure Vulnerability

  • CVE-2025-68421: Comarch ERP Optima Auth Bypass Vulnerability

  • CVE-2025-68420: Comarch ERP Optima Privilege Escalation
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