Cyber Resilience

CVE-2025-69873

Low

Published: 11 February 2026

Published
11 February 2026
Modified
15 April 2026
KEV Added
Patch
CVSS Score v3.1 2.9 CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L
EPSS Score 0.0001 3.1th percentile
Risk Priority 6 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2025-69873 is a low-severity Inefficient Regular Expression Complexity (CWE-1333) vulnerability. Its CVSS base score is 2.9 (Low).

Operationally, exploitation aligns with the MITRE ATT&CK technique Application or System Exploitation (T1499.004); ranked at the 3.1th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified are NIST 800-53 SI-10 (Information Input Validation) and SI-2 (Flaw Remediation).

Deeper analysis

CVE-2025-69873 is a Regular Expression Denial of Service (ReDoS) vulnerability in ajv (Another JSON Schema Validator) versions before 8.18.0. The issue arises when the $data option is enabled, as the pattern keyword accepts runtime data via JSON Pointer syntax ($data reference), which is passed directly to the JavaScript RegExp() constructor without validation. This allows injection of malicious regex patterns, such as "^(a|a)*$", leading to catastrophic backtracking when combined with crafted input. A 31-character payload can cause approximately 44 seconds of CPU blocking, with each additional character roughly doubling execution time. The vulnerability is also addressed in ajv version 6.14.0.

An attacker can exploit this vulnerability by submitting a specially crafted input to any API or application using ajv with $data: true for dynamic schema validation, enabling a complete denial of service via a single HTTP request. The CVSS v3.1 base score is 2.9 (Low), reflecting a local attack vector (AV:L), high attack complexity (AC:H), no privileges required (PR:N), no user interaction (UI:N), unchanged scope (S:U), and low impact on availability (A:L) with no impact on confidentiality or integrity. Associated CWEs are CWE-1333 (Inefficient Regular Expression Complexity) and CWE-400 (Uncontrolled Resource Consumption).

Advisories and patches recommend upgrading to ajv 8.18.0 or later, or version 6.14.0 for the legacy branch. The GitHub Security Advisory (GHSA-2g4f-4pwh-qvx6) details the issue, while pull requests #2588 and #2590 in the ajv-validator/ajv repository implement the fixes, and the v6.14.0 release tag confirms the patch availability. A detailed disclosure is available at https://github.com/EthanKim88/ethan-cve-disclosures/blob/main/CVE-2025-69873-ajv-ReDoS.md.

EU & UK References

Vulnerability details

ajv (Another JSON Schema Validator) before 8.18.0 is vulnerable to Regular Expression Denial of Service (ReDoS) when the $data option is enabled. The pattern keyword accepts runtime data via JSON Pointer syntax ($data reference), which is passed directly to the…

more

JavaScript RegExp() constructor without validation. An attacker can inject a malicious regex pattern (e.g., "^(a|a)*$") combined with crafted input to cause catastrophic backtracking. 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 a single HTTP request against any API using ajv with $data: true for dynamic schema validation. This issue is also fixed in version 6.14.0.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1499.004 Application or System Exploitation Impact
Adversaries may exploit software vulnerabilities that can cause an application or system to crash and deny availability to users.
Why these techniques?

ReDoS vulnerability directly enables application-layer DoS via crafted regex input causing CPU exhaustion.

Confidence: HIGH · MITRE ATT&CK Enterprise v18.1

CVEs Like This One

CVE-2026-39320Shared CWE-1333, CWE-400
CVE-2026-24001Shared CWE-1333, CWE-400
CVE-2026-4926Shared CWE-1333, CWE-400
CVE-2024-56921Shared CWE-400
CVE-2026-21945Shared CWE-400
CVE-2024-33618Shared CWE-400
CVE-2025-9278Shared CWE-400
CVE-2026-41135Shared CWE-400
CVE-2026-20650Shared CWE-400
CVE-2025-71031Shared CWE-400

Affected Assets

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Directly requires validation of untrusted input (the $data-referenced pattern) before it is passed to RegExp() to block malicious regexes that trigger catastrophic backtracking.

prevent

Requires mechanisms to protect against denial-of-service conditions caused by resource exhaustion from a single crafted request exploiting the ReDoS flaw.

prevent

Mandates timely application of the available patches (ajv 8.18.0 or 6.14.0) that eliminate the unsafe direct use of runtime pattern data in RegExp().

References