SEPTEMBER 17, 2026
Live Feed
Back to database
Case File

CVE-2026-11573

HIGH · CVSS 7.1 EPSS 0.39% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-09-08 · Last synced 2026-09-17

CyberRota Analysis

AI-Generated

The vulnerability in Qt's QDomDocument serialization allows for uncontrolled recursion when processing deeply nested untrusted XML, leading to potential application crashes due to stack exhaustion. This denial-of-service (DoS) risk can affect any application utilizing the Qt framework for XML handling. Developers and organizations using Qt in their applications should prioritize addressing this issue to prevent service disruptions.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Detected Signals
code execution

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-11573
Severity
HIGH
CVSS
7.1
EPSS
0.39%

Original NVD Description

Uncontrolled recursion (CWE-674) in the QDomDocument/QDomNode serialization path of the Qt XML module (QtXml, qtbase). QDomElementPrivate::save() and QDomNodePrivate::save() recurse mutually, consuming one stack frame per level of element nesting with no depth limit, no configurable bound and no error return. A document with deeply nested elements parses successfully but exhausts the call stack and terminates the process when serialized. Reachable via QDomDocument::toByteArray() (Qt 4.0 and later), QDomDocument::toString(), QDomDocument::toCString(), QDomNode::save(), and operator<<(QTextStream&, const QDomNode&). Denial of service only — no code execution and no memory disclosure.