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-2022-24434

CVE-2022-24434: Dicer Package DOS Vulnerability

CVE-2022-24434 is a denial of service flaw in Dicer package that allows attackers to crash Node.js services by sending malicious forms. This post covers technical details, affected versions, impact, and mitigation.

Published: February 17, 2026

CVE-2022-24434 Overview

CVE-2022-24434 is a Denial of Service (DoS) vulnerability affecting all versions of the Dicer package, a popular Node.js streaming multipart parser commonly used by the Busboy library for handling file uploads. A malicious attacker can exploit this vulnerability by sending a specially crafted form to a server running the vulnerable package, causing the Node.js service to crash. The attack is particularly dangerous because it can be repeated continuously, resulting in persistent service disruption.

Critical Impact

All versions of the Dicer package are affected, enabling attackers to repeatedly crash Node.js services through maliciously crafted form submissions, causing sustained denial of service conditions.

Affected Products

  • Dicer package (all versions) for Node.js
  • Applications using Busboy library with Dicer dependency
  • Node.js web servers accepting multipart form data via affected packages

Discovery Timeline

  • 2022-05-20 - CVE-2022-24434 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-24434

Vulnerability Analysis

The vulnerability exists in the Dicer package's handling of multipart form data. Dicer is a streaming multipart parser widely used in Node.js applications for processing file uploads and form submissions. The package fails to properly validate or handle malformed boundary conditions in multipart form data, leading to an unhandled exception that crashes the Node.js process.

When a Node.js application uses Dicer (often indirectly through Busboy) to parse incoming multipart/form-data requests, an attacker can craft a malicious payload that triggers the crash condition. Since Node.js is single-threaded by default, this crash takes down the entire service. The vulnerability's network-accessible attack vector with no authentication requirements makes it particularly concerning for public-facing web applications.

Root Cause

The root cause stems from insufficient input validation in Dicer's multipart boundary parsing logic. When processing form data boundaries, the parser does not adequately handle edge cases involving malformed or manipulated boundary strings. This leads to an uncaught exception that propagates up the call stack, terminating the Node.js process.

The issue is tracked in GitHub Pull Request #22, which contains the fix addressing the boundary validation problem.

Attack Vector

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

  1. Identifying a target application that accepts multipart form uploads
  2. Crafting a malicious HTTP request with a manipulated form boundary
  3. Sending the request to the server
  4. Observing the Node.js service crash
  5. Repeating the attack to maintain persistent denial of service

The vulnerability affects any Node.js application using Dicer for multipart parsing, including those using the popular Busboy library, Express with multer, and similar middleware. For technical details on the vulnerability mechanism, refer to the Snyk vulnerability advisory.

Detection Methods for CVE-2022-24434

Indicators of Compromise

  • Unexpected Node.js process crashes in web servers handling file uploads
  • Repeated HTTP POST requests with multipart/form-data content type from suspicious sources
  • Application logs showing unhandled exceptions in Dicer or Busboy modules
  • Service monitoring alerts indicating frequent process restarts

Detection Strategies

  • Monitor application crash logs for exceptions originating from dicer or related multipart parsing modules
  • Implement rate limiting on endpoints accepting multipart form data to detect potential DoS attempts
  • Use application performance monitoring (APM) tools to track process restart frequency
  • Review web server access logs for unusual patterns of POST requests to file upload endpoints

Monitoring Recommendations

  • Configure process managers (PM2, systemd) to alert on repeated service restarts
  • Implement centralized logging to correlate crashes across multiple application instances
  • Monitor network traffic for high volumes of multipart form submissions from single sources
  • Set up SentinelOne Singularity platform to detect and alert on application-layer DoS patterns

How to Mitigate CVE-2022-24434

Immediate Actions Required

  • Audit your Node.js applications for Dicer package dependencies using npm ls dicer or npm audit
  • Check indirect dependencies through Busboy and similar multipart parsing libraries
  • Implement network-level rate limiting on endpoints accepting file uploads
  • Consider deploying a Web Application Firewall (WAF) to filter malicious requests
  • Ensure process managers are configured to restart crashed services and alert administrators

Patch Information

A fix has been developed and is available in GitHub commit b7fca2e from Pull Request #22. Organizations should verify if updated versions incorporating this fix are available and update their dependencies accordingly. Additional context is available in GitHub Issue #250 on the Busboy repository.

Workarounds

  • Implement input validation middleware to sanitize multipart form boundaries before they reach Dicer
  • Use alternative multipart parsing libraries that are not affected by this vulnerability
  • Deploy reverse proxy rate limiting to prevent rapid repeated requests
  • Consider implementing custom error handling to catch and manage Dicer-related exceptions gracefully
bash
# Check for vulnerable dicer package in your Node.js project
npm ls dicer
npm audit

# Update dependencies to patched versions when available
npm update dicer
npm update busboy

# Run security audit to verify remediation
npm audit fix

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechDicer

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability2.80%

  • 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
  • NVD-CWE-noinfo
  • Technical References
  • Snyk Vulnerability SNYK-JAVA-ORGWEBJARSNPM-2838865

  • Snyk Vulnerability SNYK-JS-DICER-2311764
  • Vendor Resources
  • GitHub Issue #250

  • GitHub Pull Request #22

  • GitHub Commit b7fca2e
  • Latest CVEs
  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal Vulnerability

  • CVE-2026-40259: SiYuan Auth Bypass Vulnerability

  • CVE-2026-40255: AdonisJS HTTP Server CSRF 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