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-25283

CVE-2025-25283: parse-duraton DoS Vulnerability

CVE-2025-25283 is a denial of service flaw in parse-duraton that causes event loop delays and memory exhaustion, potentially crashing Node.js applications. This article covers technical details, affected versions, and mitigation.

Published: April 22, 2026

CVE-2025-25283 Overview

CVE-2025-25283 is a Regular Expression Denial of Service (ReDoS) vulnerability affecting the parse-duration npm package, a popular JavaScript library that converts human-readable duration strings to milliseconds. Versions prior to 2.1.3 are susceptible to event loop delays and memory exhaustion attacks through specially crafted input strings.

The vulnerability stems from inefficient string processing operations that can cause CPU-bound delays ranging from 0.5ms up to ~50ms per operation with varying input sizes from 0.01 MB to 4.3 MB. More critically, an attacker can trigger an out-of-memory condition by supplying a string of approximately 10 MB utilizing unicode characters, potentially crashing the entire Node.js application.

Critical Impact

Attackers can exploit this vulnerability to cause denial of service conditions in Node.js applications, leading to event loop blocking or complete application crashes through memory exhaustion.

Affected Products

  • parse-duration versions prior to 2.1.3
  • Node.js applications utilizing vulnerable parse-duration versions
  • Web applications and APIs processing user-supplied duration strings

Discovery Timeline

  • 2025-02-12 - CVE CVE-2025-25283 published to NVD
  • 2026-04-15 - Last updated in NVD database

Technical Details for CVE-2025-25283

Vulnerability Analysis

This vulnerability is classified as CWE-1333 (Inefficient Regular Expression Complexity), commonly known as ReDoS. The parse-duration library processes user-provided strings to extract duration values and convert them to milliseconds. When processing maliciously crafted input strings, the parsing logic exhibits exponential time complexity, causing the Node.js event loop to become blocked.

The attack can manifest in two primary ways: event loop delay attacks using moderately sized payloads (0.01 MB to 4.3 MB) that cause processing delays of 0.5ms to 50ms per operation, and memory exhaustion attacks using larger payloads (~10 MB) with unicode characters that can crash the application entirely.

Root Cause

The root cause lies in the CPU-bound string resolution operation within the parse-duration library. When the library attempts to resolve specially crafted strings—particularly those containing unicode characters—the processing algorithm exhibits non-linear time complexity. This allows an attacker to consume disproportionate server resources relative to the size of the input, making it an ideal vector for denial of service attacks.

Attack Vector

The vulnerability is exploitable remotely over the network without any authentication or user interaction required. An attacker can target any application endpoint that accepts duration strings and passes them to the vulnerable parse-duration function. This includes REST APIs, form inputs, configuration endpoints, or any interface that processes time-related user input.

The attack is particularly dangerous in high-traffic environments where multiple malicious requests could be submitted simultaneously, amplifying the denial of service effect and potentially exhausting server resources across multiple concurrent connections.

Detection Methods for CVE-2025-25283

Indicators of Compromise

  • Abnormally high CPU utilization on Node.js processes handling duration parsing
  • Increased memory consumption in application servers processing user input
  • Node.js application crashes with out-of-memory errors
  • Slow API response times or timeouts on endpoints accepting duration parameters
  • Event loop lag metrics showing significant delays (>50ms)

Detection Strategies

  • Monitor Node.js event loop lag metrics for sudden spikes indicating blocking operations
  • Implement application performance monitoring (APM) to track duration parsing operation times
  • Set up alerting for Node.js process crashes with heap allocation failure errors
  • Use software composition analysis (SCA) tools to identify vulnerable parse-duration versions in dependencies

Monitoring Recommendations

  • Configure alerts for Node.js memory usage exceeding normal operational thresholds
  • Monitor request payloads for unusually large duration string inputs (>1MB)
  • Track application restart frequency to detect crash-and-restart patterns
  • Implement logging for duration parsing operations that exceed expected completion times

How to Mitigate CVE-2025-25283

Immediate Actions Required

  • Upgrade parse-duration to version 2.1.3 or later immediately
  • Review application endpoints that accept duration string inputs for exposure
  • Implement input validation to limit the size of duration strings before processing
  • Consider adding request timeout protections to prevent long-running parsing operations

Patch Information

The vulnerability has been patched in parse-duration version 2.1.3. The fix addresses the inefficient string processing that allowed CPU exhaustion and memory overflow attacks. Organizations should update their dependencies to this version or later.

For detailed information about the patch, refer to the GitHub commit and the official release notes for v2.1.3. Additional security details are available in the GitHub Security Advisory GHSA-hcrg-fc28-fcg5.

Workarounds

  • Implement input length validation to reject duration strings exceeding a reasonable size threshold (e.g., 1KB)
  • Add timeouts around duration parsing operations to prevent extended blocking
  • Deploy rate limiting on endpoints that process duration inputs to reduce attack surface
  • Consider running duration parsing in a separate worker thread to isolate potential crashes from the main application
bash
# Update parse-duration to patched version
npm update parse-duration@2.1.3

# Or explicitly install the patched version
npm install parse-duration@^2.1.3

# Verify installed version
npm list parse-duration

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechParse Duration

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.12%

  • 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-1333
  • Technical References
  • GitHub Commit Update

  • GitHub Release v2.1.3

  • GitHub Security Advisory GHSA-hcrg-fc28-fcg5
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

  • CVE-2026-43330: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43331: Linux Kernel DOS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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