Cyber Resilience

CVE-2026-24006

HighDDoS

Published: 22 January 2026

Published
22 January 2026
Modified
06 April 2026
KEV Added
Patch
CVSS Score v3.1 7.5 CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
EPSS Score 0.0004 12.9th percentile
Risk Priority 15 60% EPSS · 20% KEV · 20% CVSS

Summary

CVE-2026-24006 is a high-severity Allocation of Resources Without Limits or Throttling (CWE-770) vulnerability in Lxsmnsyc Seroval. Its CVSS base score is 7.5 (High).

Operationally, exploitation aligns with the MITRE ATT&CK technique Application or System Exploitation (T1499.004); ranked at the 12.9th 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 SC-6 (Resource Availability) and SI-10 (Information Input Validation).

Deeper analysis

CVE-2026-24006 is a denial-of-service vulnerability in the Seroval JavaScript library, which enables stringification of complex JavaScript values beyond the capabilities of JSON.stringify. The issue affects versions 1.4.0 and below, where serializing objects with extreme nesting depth exceeds the maximum call stack limit, leading to a crash. This corresponds to CWE-770 (Allocation of Resources Without Limits or Throttling) and carries a CVSS v3.1 base score of 7.5 (AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H).

Attackers can exploit this vulnerability remotely with low complexity and no privileges or user interaction required. By supplying a maliciously crafted object with deeply nested structures to a Seroval serialization or deserialization function, an attacker triggers a stack overflow, causing the application to terminate or become unresponsive and resulting in high availability impact.

The Seroval security advisory (GHSA-3j22-8qj3-26mx) and associated commit (ce9408ebc87312fcad345a73c172212f2a798060) detail the fix in version 1.4.1, which introduces a configurable `depthLimit` parameter to serialization and deserialization methods. If the depth limit is exceeded, an error is thrown instead of allowing unbounded recursion.

EU & UK References

Vulnerability details

Seroval facilitates JS value stringification, including complex structures beyond JSON.stringify capabilities. In versions 1.4.0 and below, serialization of objects with extreme depth can exceed the maximum call stack limit. In version 1.4.1, Seroval introduces a `depthLimit` parameter in serialization/deserialization methods.…

more

An error will be thrown if the depth limit is reached.

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?

Direct stack overflow DoS via crafted nested input to exposed serialization function matches Application or System Exploitation for availability impact.

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

CVEs Like This One

CVE-2026-23957Same product: Lxsmnsyc Seroval
CVE-2026-23956Same product: Lxsmnsyc Seroval
CVE-2026-23737Same product: Lxsmnsyc Seroval
CVE-2026-23736Same product: Lxsmnsyc Seroval
CVE-2021-47877Shared CWE-770
CVE-2026-3260Shared CWE-770
CVE-2025-66560Shared CWE-770
CVE-2025-68136Shared CWE-770
CVE-2020-37038Shared CWE-770
CVE-2025-36070Shared CWE-770

Affected Assets

lxsmnsyc
seroval
≤ 1.4.1

Mitigating Controls

Mitigating Controls (NIST 800-53 r5) AI

prevent

Requires timely remediation of the stack overflow flaw in Seroval versions 1.4.0 and below by patching to 1.4.1, which adds depth limiting to prevent DoS crashes.

prevent

Mandates validation of inputs to Seroval serialization/deserialization functions to reject objects with excessive nesting depth, blocking the CWE-770 resource exhaustion attack vector.

prevent

Enforces resource allocation limits, such as maximum recursion or stack depth, during processing of complex serialized objects to mitigate unbounded resource consumption leading to DoS.

References