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

CVE-2025-47944: Multer Node.js Middleware DoS Vulnerability

CVE-2025-47944 is a denial of service flaw in Multer, a Node.js middleware for handling multipart/form-data. Attackers can crash processes with malformed requests. This article covers technical details, impact, and patches.

Updated: January 22, 2026

CVE-2025-47944 Overview

CVE-2025-47944 is a Denial of Service (DoS) vulnerability in Multer, a popular Node.js middleware used for handling multipart/form-data requests, commonly employed for file uploads in Express.js applications. The vulnerability allows an attacker to crash the Node.js process by sending a specially crafted malformed multipart upload request, causing an unhandled exception that terminates the application.

Critical Impact

Attackers can exploit this vulnerability remotely without authentication to crash Node.js applications using vulnerable versions of Multer, causing service disruption for all users.

Affected Products

  • Multer versions 1.4.4-lts.1 and later (prior to 2.0.0)
  • Node.js applications using affected Multer versions for file upload handling
  • Express.js applications with multipart/form-data endpoints

Discovery Timeline

  • May 19, 2025 - CVE-2025-47944 published to NVD
  • May 21, 2025 - Last updated in NVD database

Technical Details for CVE-2025-47944

Vulnerability Analysis

This vulnerability is classified under CWE-248 (Uncaught Exception), indicating that the Multer middleware fails to properly handle certain malformed input during multipart form data processing. When a maliciously crafted multipart upload request is received, the middleware encounters an unexpected condition that triggers an exception. Because this exception is not caught and handled appropriately, it propagates up the call stack and causes the entire Node.js process to crash.

The network-accessible nature of this vulnerability means any attacker who can send HTTP requests to an affected endpoint can exploit it without requiring any authentication or special privileges. The impact is limited to availability—there is no confidentiality or integrity breach—but the ability to crash production services makes this a significant concern for applications relying on Multer for file uploads.

Root Cause

The root cause of CVE-2025-47944 lies in insufficient input validation and error handling within Multer's multipart form data parser. When processing the boundaries and headers of multipart requests, the code fails to account for certain malformed input patterns, leading to an unhandled exception. The lack of proper try-catch blocks or error handlers around the vulnerable code path allows the exception to crash the Node.js event loop.

Attack Vector

The attack vector for this vulnerability is network-based and requires no user interaction or special privileges. An attacker can exploit this vulnerability by:

  1. Identifying an endpoint that accepts multipart/form-data requests (typically file upload functionality)
  2. Crafting a malformed multipart request with specific boundary or header anomalies
  3. Sending the malicious request to the target endpoint
  4. The unhandled exception crashes the Node.js process, causing a denial of service

The vulnerability does not require the attacker to upload a complete file or have valid credentials. Simply sending the malformed request structure is sufficient to trigger the crash.

For technical details on the vulnerability and the specific fix, see the GitHub Security Advisory and the commit that patches the issue.

Detection Methods for CVE-2025-47944

Indicators of Compromise

  • Sudden, unexplained crashes of Node.js processes handling file uploads
  • Error logs showing uncaught exceptions originating from Multer middleware
  • Spike in failed or incomplete multipart upload requests before process termination
  • Application restarts coinciding with suspicious HTTP POST requests to upload endpoints

Detection Strategies

  • Monitor Node.js process stability and implement alerting on unexpected crashes
  • Review application logs for unhandled exception errors related to multipart parsing
  • Implement request logging to capture details of HTTP requests preceding crashes
  • Use application performance monitoring (APM) tools to detect crash patterns
  • Audit package.json and package-lock.json for vulnerable Multer versions (>=1.4.4-lts.1 and <2.0.0)

Monitoring Recommendations

  • Enable verbose logging on file upload endpoints to capture request metadata
  • Set up automated dependency scanning to identify vulnerable Multer versions
  • Configure process managers (PM2, systemd) to alert on repeated restarts
  • Monitor network traffic patterns for unusual multipart request structures

How to Mitigate CVE-2025-47944

Immediate Actions Required

  • Upgrade Multer to version 2.0.0 or later immediately
  • Audit all Node.js applications to identify those using vulnerable Multer versions
  • If immediate upgrade is not possible, consider temporarily disabling file upload functionality
  • Implement rate limiting on upload endpoints to reduce exposure
  • Deploy web application firewalls (WAF) with rules to filter malformed multipart requests

Patch Information

The Multer development team has addressed this vulnerability in version 2.0.0. Users should upgrade to this version to receive the fix. The patch is available in commit 2c8505f.

To update Multer, run:

bash
npm install multer@2.0.0

Or update your package.json to specify the fixed version and run npm install.

Workarounds

  • No official workarounds are available according to the security advisory
  • As a temporary measure, consider adding a reverse proxy layer to filter requests
  • Implement process monitoring with automatic restart capabilities to minimize downtime
  • Consider using alternative file upload middleware temporarily while planning the upgrade
bash
# Verify your current Multer version
npm list multer

# Update to the patched version
npm update multer --save

# Verify the update was successful
npm list multer

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechMulter

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.01%

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

  • GitHub Issue Discussion

  • GitHub Security Advisory GHSA-4pg4-qvpc-4q3h
  • Related CVEs
  • CVE-2026-3520: Multer Node.js Middleware DoS Vulnerability

  • CVE-2026-2359: Multer Node.js Middleware DoS Vulnerability

  • CVE-2026-3304: Multer Node.js Middleware DoS Vulnerability

  • CVE-2025-7338: Multer Node.js Middleware DoS Vulnerability
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