CVE-2026-66920
HighCVSS 8.2Exploitation Probability (EPSS)
Low risk17th percentile - higher than 17% of all known CVEs
Summary
Pivotick has an uncontrolled-recursion vulnerability when processing graph and node data. Recursive graph traversals and JSON rendering can exhaust the JavaScript call stack with specially crafted data, causing page or browser crashes.
Risk Assessment
The risk is client-side denial of service (DoS), potentially making the application unusable.
Recommendation
Update Pivotick to a patched version that replaces recursive traversals with iterative ones and limits JSON depth to 64 levels.
Other vulnerabilities in Pivotick
See all- CVE-2026-67174Critical
Pivotick contains a DOM-based XSS vulnerability in UI element resolution and icon-rendering utilities. The tryResolveHTMLElement function treats any resolved string as HTML markup, and createIcon inserts SVG icons without sanitization. An unauthenticated attacker can provide a crafted graph, property value, or SVG icon, leading to JavaScript execution in the victim's browser.
- CVE-2026-67173Medium
Pivotick did not validate the URI scheme of node imagePath values, allowing an attacker to set a malicious URI. When a victim renders the graph, the browser could initiate an unintended request or invoke scheme-specific handling.
- CVE-2026-66922Medium
Pivotick used plain JavaScript objects as lookup tables indexed by caller-controlled node identifiers. Identifiers matching inherited properties from Object.prototype (e.g., constructor, __proto__) could be misinterpreted, leading to omitted nodes, incorrect hierarchies, bypassed cycle detection, or exceptions causing denial of service.
- CVE-2026-66921Medium
Pivotick's Markdown node-reference renderer fails to HTML-escape the attacker-controlled nodeName value, allowing injection of malicious HTML attributes or elements. This can lead to arbitrary JavaScript execution in the victim's browser.
- CVE-2026-66919Medium
Pivotick contains a cross-site scripting vulnerability in the inspect and edit node modals. Node labels and descriptions from graph data are interpolated directly into HTML, allowing an attacker to inject malicious JavaScript.
- CVE-2026-66918High
Pivotick fails to sanitize attacker-controlled SVG markup from the style.svgIcon property before inserting it into the document. The vulnerable code assigns SVG markup to innerHTML, allowing execution of event handlers like <image> with onerror. An attacker can execute arbitrary JavaScript in the application context.
- CVE-2026-66825Medium
Pivotick contains an XSS vulnerability in the sidebar property-list component. Link-like property values (url, uri, href, link, website, homepage) were rendered as hyperlinks without URL scheme validation. An attacker can supply a malicious value using the javascript: scheme, including whitespace or control characters. Clicking the link can execute JavaScript in the application context. The vulnerability was fixed by normalizing values and blocking unsafe schemes.
Original NVD description (English source)
Pivotick contains an uncontrolled-recursion vulnerability when processing caller-supplied graph and node data. The affected graph algorithms recursively traversed graph edges, while the JSON viewer recursively processed each level of a node’s data structure. A specially crafted graph containing an excessively long path, deeply nested properties, or circular object references could therefore exhaust the JavaScript call stack when Pivotick calculates a layout or displays a node in the inspection modal. Successful exploitation may cause an uncaught exception, freeze the affected page, or crash the browser tab, resulting in a client-side denial of service. No confidentiality or integrity impact has been identified. The patch replaces the recursive graph traversals with iterative stack-based implementations and limits the reachability calculation to 1,000,000 edge traversals. It also limits JSON rendering to 64 levels and detects circular references before descending further into an object.

