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-2026-8159

CVE-2026-8159: Pillarjs Multiparty DOS Vulnerability

CVE-2026-8159 is a denial of service flaw in Pillarjs Multiparty caused by regex backtracking in the Content-Disposition parser. This article covers the technical details, affected versions, impact, and mitigation.

Published: May 17, 2026

CVE-2026-8159 Overview

CVE-2026-8159 is a Regular Expression Denial of Service (ReDoS) vulnerability in the multiparty Node.js module, a widely used library for parsing multipart form data. Versions 4.2.3 and earlier contain a vulnerable regular expression in the Content-Disposition filename parameter parser. Attackers can submit a crafted multipart upload with a long header value to trigger catastrophic backtracking, causing regex matching to consume seconds of CPU time and block the Node.js event loop. Any service that accepts multipart uploads through multiparty is affected. The issue is tracked under [CWE-1333] and resolved in multiparty@4.3.0.

Critical Impact

A single unauthenticated HTTP request with a header of approximately 8 KB can stall the Node.js event loop, denying service to all concurrent users.

Affected Products

  • pillarjs/multiparty versions 4.2.3 and earlier
  • Node.js applications and services accepting multipart uploads via multiparty
  • Express and Connect-based web frameworks using multiparty as a body parser

Discovery Timeline

  • 2026-05-12 - CVE-2026-8159 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-8159

Vulnerability Analysis

The vulnerability is a Regular Expression Denial of Service ([CWE-1333]) in the parser responsible for extracting the filename parameter from the Content-Disposition header of multipart uploads. The regex used to match the filename value contains overlapping quantifiers that produce catastrophic backtracking when fed adversarial input. A header value of roughly 8 KB is enough to push regex evaluation into multi-second execution times.

Because Node.js is single-threaded, blocking the event loop halts every concurrent request handled by the same process. An attacker can repeatedly send crafted requests to exhaust CPU capacity across worker processes and render the service unavailable. No authentication, user interaction, or special privileges are required.

Root Cause

The filename parameter parser uses a regular expression that allows ambiguous matches on quoted and unquoted filename values. When the input does not cleanly terminate, the regex engine explores an exponential number of backtracking paths. The fix in multiparty@4.3.0 rewrites the pattern to remove the ambiguity and bound execution time.

Attack Vector

An attacker sends an HTTP request with Content-Type: multipart/form-data to any endpoint that invokes multiparty to parse the request body. The crafted Content-Disposition header contains a long filename value designed to trigger backtracking. The vulnerability manifests during header parsing, before any file content is read, so attackers do not need to upload an actual file. See the GitHub Security Advisory GHSA-65x3-rw7q-gx94 and the OWASP ReDoS Attack Analysis for technical details on the pattern and exploitation class.

Detection Methods for CVE-2026-8159

Indicators of Compromise

  • Inbound HTTP requests with Content-Type: multipart/form-data containing Content-Disposition headers larger than typical filename values (multiple kilobytes).
  • Node.js processes showing sustained CPU saturation on a single core correlated with multipart upload endpoints.
  • Event loop lag metrics spiking into the seconds range during upload traffic.

Detection Strategies

  • Inspect HTTP traffic at the proxy or WAF layer for Content-Disposition filename parameters exceeding a reasonable length threshold such as 1 KB.
  • Monitor Node.js runtime metrics for event loop blocking using perf_hooks.monitorEventLoopDelay or APM instrumentation.
  • Audit application dependency manifests (package.json, package-lock.json, yarn.lock) for multiparty versions at or below 4.2.3.

Monitoring Recommendations

  • Alert on request rates to multipart upload endpoints that correlate with rising p99 latency or 5xx error rates.
  • Track per-request CPU time on upload handlers and flag outliers exceeding 500 ms.
  • Log and review oversized request headers at the reverse proxy or load balancer.

How to Mitigate CVE-2026-8159

Immediate Actions Required

  • Upgrade multiparty to version 4.3.0 or higher in all affected applications.
  • Rebuild and redeploy container images and serverless bundles that vendor multiparty transitively.
  • Apply request size and header length limits at the upstream proxy, load balancer, or API gateway.

Patch Information

The vendor released a fix in multiparty@4.3.0 that rewrites the Content-Disposition filename parser to eliminate catastrophic backtracking. Refer to the GitHub Security Advisory GHSA-65x3-rw7q-gx94 and the OpenJSF Security Advisories for full remediation guidance.

Workarounds

  • Limit maximum request header size at the proxy layer, though this only reduces the attack surface since headers near 8 KB still trigger the issue.
  • Run multipart parsing inside a worker thread or child process to isolate event loop stalls from the main request handler.
  • Add a timeout-based circuit breaker around multiparty invocation to abort requests that exceed expected parse time.
bash
# Upgrade multiparty to the patched version
npm install multiparty@^4.3.0

# Verify the resolved version in the dependency tree
npm ls multiparty

# Audit for known advisories
npm audit --production

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechPillarjs

  • 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-1333
  • Technical References
  • OpenJSF Security Advisories

  • OWASP ReDoS Attack Analysis
  • Vendor Resources
  • GitHub Security Advisory GHSA-65x3
  • 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