Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-69873

CVE-2025-69873: ajv JSON Validator ReDoS Vulnerability

CVE-2025-69873 is a Regular Expression Denial of Service (ReDoS) flaw in ajv JSON Validator through version 8.17.1 that enables attackers to cause complete denial of service. This article covers technical details, impact, and mitigation.

Published: February 13, 2026

CVE-2025-69873 Overview

A Regular Expression Denial of Service (ReDoS) vulnerability exists in ajv (Another JSON Schema Validator) through version 8.17.1 when the $data option is enabled. The vulnerability allows attackers to inject malicious regex patterns that cause catastrophic backtracking, resulting in complete denial of service with a single HTTP request against any API using ajv with $data: true for dynamic schema validation.

Critical Impact

A 31-character payload causes approximately 44 seconds of CPU blocking, with each additional character doubling execution time. This enables complete denial of service with minimal attacker effort.

Affected Products

  • ajv (Another JSON Schema Validator) through version 8.17.1
  • Applications using ajv with $data: true configuration
  • APIs performing dynamic schema validation with runtime data

Discovery Timeline

  • 2026-02-11 - CVE-2025-69873 published to NVD
  • 2026-02-12 - Last updated in NVD database

Technical Details for CVE-2025-69873

Vulnerability Analysis

This vulnerability exploits a fundamental flaw in how ajv handles the pattern keyword when the $data option is enabled. The pattern keyword accepts runtime data via JSON Pointer syntax ($data reference), which is passed directly to the JavaScript RegExp() constructor without any validation or sanitization.

The lack of input validation enables attackers to supply malicious regular expressions that exhibit exponential time complexity during matching operations. This is classified as CWE-400 (Uncontrolled Resource Consumption), as the vulnerable code path allows unbounded CPU consumption through carefully crafted inputs.

Root Cause

The root cause lies in the direct passthrough of user-controlled data to the RegExp() constructor. When ajv is configured with $data: true, the library allows schemas to reference runtime values using JSON Pointer notation. The pattern keyword implementation accepts these dynamic values and constructs regular expressions without validating whether the pattern could cause catastrophic backtracking.

Patterns like ^(a|a)*$ contain nested quantifiers that create exponential state space during regex matching. When combined with crafted input strings, the JavaScript regex engine enters a backtracking spiral that consumes CPU resources proportional to 2^n where n is the input length.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction. An attacker can craft a malicious JSON payload containing:

  1. A schema with a $data reference in the pattern field pointing to attacker-controlled data
  2. A regex pattern designed for catastrophic backtracking (e.g., ^(a|a)*$)
  3. Input data crafted to maximize backtracking iterations

The vulnerability manifests when the attacker submits a JSON request to any API endpoint that performs dynamic schema validation using ajv with $data enabled. A single HTTP request containing a 31-character payload can block CPU execution for approximately 44 seconds, and each additional character doubles the processing time exponentially. For detailed technical information, see the GitHub CVE-2025-69873 Disclosure.

Detection Methods for CVE-2025-69873

Indicators of Compromise

  • Abnormally high CPU utilization on servers running Node.js applications with ajv
  • HTTP requests containing regex metacharacters in JSON payloads (e.g., ^, $, *, +, |)
  • Request timeouts or application unresponsiveness following specific API calls
  • Repeated patterns like (a|a)* or (a+)+ in request bodies

Detection Strategies

  • Monitor application response times for sudden degradation patterns indicating ReDoS attacks
  • Implement request body inspection rules to detect common ReDoS patterns in JSON payloads
  • Deploy SentinelOne Singularity Platform to identify and alert on CPU exhaustion patterns characteristic of ReDoS exploitation
  • Configure web application firewalls to flag requests containing nested quantifiers in string fields

Monitoring Recommendations

  • Set up CPU utilization alerts with thresholds appropriate for detecting sustained high-load events
  • Implement request timeout monitoring to identify endpoints experiencing unusual delays
  • Enable detailed logging for ajv validation operations to capture suspicious schema patterns
  • Deploy SentinelOne's behavioral AI to detect anomalous resource consumption patterns in real-time

How to Mitigate CVE-2025-69873

Immediate Actions Required

  • Audit all applications using ajv to identify instances where $data: true is configured
  • Disable the $data option if dynamic pattern validation is not strictly required
  • Implement request timeout limits at the application and infrastructure levels
  • Deploy rate limiting to reduce the impact of repeated DoS attempts

Patch Information

At the time of publication, review the GitHub CVE-2025-69873 Disclosure for the latest patch status and remediation guidance. Monitor the official ajv repository for security updates addressing this vulnerability.

Workarounds

  • Disable the $data option in ajv configuration if runtime schema references are not required
  • Implement a validation layer to sanitize or reject regex patterns before they reach ajv
  • Set strict request timeouts at the reverse proxy or load balancer level to terminate long-running requests
  • Consider using regex analysis libraries to detect potentially malicious patterns before validation
bash
# Configuration example - Disable $data option in ajv initialization
# In your Node.js application configuration:
# const ajv = new Ajv({ $data: false });

# Nginx timeout configuration to limit request processing time
location /api/ {
    proxy_read_timeout 5s;
    proxy_connect_timeout 5s;
    proxy_send_timeout 5s;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechAjv

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.02%

  • 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-400
  • Technical References
  • GitHub CVE-2025-69873 Disclosure
  • Related CVEs
  • CVE-2020-15366: Ajv.js Ajv RCE 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