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
    • 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-2327

CVE-2026-2327: markdown-it ReDoS Vulnerability

CVE-2026-2327 is a Regular Expression Denial of Service flaw in markdown-it package affecting versions 13.0.0 to 14.1.0. Attackers can exploit regex backtracking to cause DoS. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 13, 2026

CVE-2026-2327 Overview

CVE-2026-2327 is a Regular Expression Denial of Service (ReDoS) vulnerability affecting the markdown-it JavaScript package. Versions from 13.0.0 and before 14.1.1 are vulnerable due to the use of an inefficient regular expression pattern /\*+$/ in the linkify function. An attacker can exploit this vulnerability by supplying a specially crafted input containing a long sequence of asterisk (*) characters followed by a non-matching character, which triggers excessive backtracking in the regex engine and may lead to a denial-of-service condition.

Critical Impact

Applications using vulnerable versions of markdown-it may become unresponsive when processing malicious input, potentially affecting service availability for all users.

Affected Products

  • markdown-it 13.0.0 to 14.1.0
  • Applications and services using vulnerable markdown-it versions for Markdown parsing
  • Node.js projects with markdown-it as a dependency

Discovery Timeline

  • 2026-02-12 - CVE-2026-2327 published to NVD
  • 2026-02-12 - Last updated in NVD database

Technical Details for CVE-2026-2327

Vulnerability Analysis

This vulnerability falls under CWE-1333 (Inefficient Regular Expression Complexity). The root issue lies in how the regex engine processes the pattern /\*+$/ when presented with adversarial input. When an attacker provides a string containing many consecutive asterisk characters that does not match the expected pattern, the regex engine enters a state of catastrophic backtracking. This occurs because the greedy + quantifier combined with the end-of-string anchor $ causes the engine to repeatedly attempt different combinations before ultimately failing to match, consuming excessive CPU resources in the process.

The vulnerability is remotely exploitable over a network without requiring authentication or user interaction. While it does not compromise confidentiality or integrity, it can significantly impact availability by exhausting server resources.

Root Cause

The vulnerability stems from an inefficient regular expression pattern in the linkify.mjs module at line 33. The pattern /\*+$/ uses a greedy quantifier (+) that matches one or more asterisks at the end of a string. When the input contains a long sequence of asterisks followed by a character that prevents the pattern from matching, the regex engine must backtrack through all possible combinations of asterisk groupings before determining that no match exists. This exponential time complexity relative to input length creates the ReDoS condition.

Attack Vector

The attack vector is network-based, allowing remote attackers to submit malicious Markdown content to any application that processes user-supplied input using vulnerable markdown-it versions. The attack requires no special privileges or user interaction. An attacker simply needs to craft input containing a long string of asterisk characters followed by a non-matching character. When this input is processed by the linkify function, the application thread becomes blocked while the regex engine backtracks, potentially causing service degradation or complete denial of service.

The vulnerability mechanism exploits regex backtracking behavior. For detailed technical analysis, see the security researcher's proof of concept and the vulnerable code in the linkify module.

Detection Methods for CVE-2026-2327

Indicators of Compromise

  • Unusual CPU spikes when processing Markdown content
  • Application timeouts or unresponsive behavior during content parsing
  • Request logs showing submissions containing long sequences of asterisk characters
  • Increased memory usage in Node.js processes handling Markdown rendering

Detection Strategies

  • Implement application performance monitoring to detect abnormal processing times for Markdown parsing operations
  • Configure web application firewalls (WAF) to flag requests containing unusually long strings of repetitive characters
  • Use dependency scanning tools (npm audit, Snyk, or similar) to identify vulnerable markdown-it versions in your codebase
  • Monitor Node.js event loop lag as an indicator of potential ReDoS attacks

Monitoring Recommendations

  • Set up alerts for request processing times exceeding normal thresholds on endpoints that handle Markdown content
  • Implement rate limiting on user-submitted content endpoints to reduce the impact of repeated attack attempts
  • Enable verbose logging for content processing operations to aid in forensic analysis
  • Monitor container and process resource utilization for services using markdown-it

How to Mitigate CVE-2026-2327

Immediate Actions Required

  • Upgrade markdown-it to version 14.1.1 or later immediately
  • Audit your application dependencies to identify all instances of vulnerable markdown-it versions
  • Implement input length restrictions on user-submitted Markdown content as a defense-in-depth measure
  • Consider implementing request timeouts for content processing operations

Patch Information

The markdown-it maintainers have addressed this vulnerability in version 14.1.1. The fix involves optimizing the regular expression pattern to prevent catastrophic backtracking. The specific fix can be reviewed in the commit addressing this vulnerability. For additional details, see the Snyk vulnerability advisory.

Workarounds

  • Implement input validation to limit the maximum length of user-submitted content containing repetitive special characters
  • Add request timeout configurations to prevent individual requests from consuming excessive resources
  • Deploy a reverse proxy or WAF with regex-based filtering to block suspicious input patterns
  • Consider implementing content processing in separate worker threads or processes with strict resource limits
bash
# Update markdown-it to patched version
npm update markdown-it@14.1.1

# Verify installed version
npm list markdown-it

# Audit dependencies for vulnerabilities
npm audit

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechMarkdown It

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:P/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-1333
  • Technical References
  • GitHub Gist Script

  • GitHub Markdown Linkify Code

  • GitHub Commit Update

  • Snyk Security Vulnerability
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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