A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-39249

CVE-2024-39249: Async Library ReDoS Vulnerability

CVE-2024-39249 is a Regular Expression Denial of Service vulnerability in Async library affecting versions 2.6.4 and 3.2.5. This article covers the technical details, affected versions, security impact, and mitigation.

Published: January 28, 2026

CVE-2024-39249 Overview

CVE-2024-39249 is a Regular Expression Denial of Service (ReDoS) vulnerability affecting the Async JavaScript library, a popular utility module for working with asynchronous JavaScript. The vulnerability exists in the autoinject function's parsing logic, where a regular expression pattern can be exploited to cause catastrophic backtracking when processing specially crafted input.

Critical Impact

Applications using vulnerable versions of Async may experience significant performance degradation or complete service unavailability when the autoInject function processes malicious input strings, leading to denial of service conditions.

Note: This vulnerability is disputed by the supplier, who argues there is no realistic threat model since regular expressions are not used with untrusted input in typical usage scenarios.

Affected Products

  • Async <= 2.6.4 (2.x branch)
  • Async <= 3.2.5 (3.x branch)

Discovery Timeline

  • 2024-07-01 - CVE CVE-2024-39249 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2024-39249

Vulnerability Analysis

The vulnerability stems from an inefficient regular expression pattern used within the autoInject.js module of the Async library. When the function parses function parameters to determine dependency injection requirements, it utilizes a regex that exhibits exponential time complexity under certain input conditions. This creates an opportunity for ReDoS attacks where an attacker can provide carefully constructed strings that trigger excessive backtracking in the regex engine, consuming CPU resources and potentially blocking the Node.js event loop.

The weakness is classified under CWE-1333 (Inefficient Regular Expression Complexity), which describes scenarios where regular expressions are implemented in ways that allow adversaries to consume excessive system resources through algorithmic complexity attacks.

Root Cause

The root cause lies in the regular expression implementation within the autoInject function's parameter parsing logic. The regex pattern contains nested quantifiers or alternation structures that create pathological backtracking scenarios when matched against adversarial input strings. Specifically, the vulnerable code is located in the autoInject.js module where function signatures are parsed.

Attack Vector

The attack vector is network-based, requiring no authentication or user interaction. An attacker who can influence the input processed by the autoInject function could supply specially crafted strings designed to maximize regex backtracking. However, the supplier disputes the practical exploitability of this vulnerability, noting that in typical usage patterns, the regular expressions do not process untrusted input.

The vulnerability mechanism works as follows: when the regex engine encounters a malicious input string, it enters a state of catastrophic backtracking where the number of steps grows exponentially with input length. This can cause the Node.js event loop to become blocked, resulting in denial of service for the entire application.

Detection Methods for CVE-2024-39249

Indicators of Compromise

  • Abnormal CPU utilization spikes in Node.js processes, particularly in applications using Async library
  • Event loop blocking or significant latency increases in application response times
  • Application hangs or timeouts when processing specific function injection patterns
  • Monitoring alerts indicating thread or process starvation in affected services

Detection Strategies

  • Implement application performance monitoring (APM) to detect unusual CPU consumption patterns in Node.js runtimes
  • Monitor for blocked event loop indicators using Node.js diagnostic tools such as blocked-at or similar profiling libraries
  • Scan dependencies using software composition analysis (SCA) tools to identify vulnerable Async library versions
  • Review application logs for timeout errors or unresponsive behavior correlated with autoInject function usage

Monitoring Recommendations

  • Configure alerting thresholds for Node.js process CPU usage exceeding baseline metrics
  • Implement event loop lag monitoring with tools like prom-client for Prometheus integration
  • Set up dependency vulnerability scanning in CI/CD pipelines to flag affected Async versions
  • Monitor application response time percentiles for anomalies indicating potential ReDoS exploitation

How to Mitigate CVE-2024-39249

Immediate Actions Required

  • Audit your application's package dependencies to identify usage of Async versions <= 2.6.4 or <= 3.2.5
  • Evaluate whether your application passes untrusted input to the autoInject function and assess actual risk
  • Review the GitHub Issue discussion for vendor guidance on the disputed nature of this vulnerability
  • Consider the supplier's position that this is not exploitable in realistic scenarios before implementing changes

Patch Information

As of the last modification date, the vendor disputes this vulnerability and indicates that the regular expression is not designed to process untrusted input. Organizations should monitor the Async GitHub repository for any future updates or patches. Review the CVE-2024-39249 repository and the related issue discussion for additional technical context.

Workarounds

  • Ensure that only trusted, validated input is passed to the autoInject function in your application code
  • Implement input validation and length restrictions before data reaches the Async library functions
  • Consider using alternative dependency injection patterns that do not rely on regex-based function parsing
  • Apply timeout mechanisms around potentially vulnerable function calls to prevent complete service unavailability
bash
# Check for vulnerable Async versions in your Node.js project
npm list async
npm audit

# If using yarn
yarn list --pattern async
yarn audit

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechN/A

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.16%

  • 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 Code Snippet

  • GitHub Code Snippet

  • GitHub Issue Comment

  • GitHub CVE-2024-39249

  • GitHub Issue for CVE-2024-39249
  • Latest CVEs
  • CVE-2024-8261: Prolizyazilim OBS Auth Bypass Vulnerability

  • CVE-2024-13068: LimonDesk Auth Bypass Vulnerability

  • CVE-2025-53679: Fortinet FortiSandbox RCE Vulnerability

  • CVE-2026-9446: Simple POS Inventory System SQLi Flaw
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