CVE-2026-81814

Severity CVSS v4.0:
MEDIUM
Type:
CWE-79 Cross-Site Scripting (XSS)
Publication date:
27/08/2026
Last modified:
28/08/2026

Description

Affected versions of Flowintel render calendar event titles using innerHTML. Because those titles are derived from case titles, a user able to create or modify a case title could store HTML or script-capable content that is later interpreted by the browser when another user views the calendar.<br /> <br /> <br /> The fix changes:<br /> <br /> <br /> titleEl.innerHTML = arg.event.title<br /> <br /> <br /> to:<br /> <br /> <br /> titleEl.textContent = arg.event.title || &amp;#39;&amp;#39;<br /> <br /> and similarly stops using innerHTML for the static download icon.<br /> <br /> Version impacted =&gt;3.3.0