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.
The fix changes:
titleEl.innerHTML = arg.event.title
to:
titleEl.textContent = arg.event.title || ''
and similarly stops using innerHTML for the static download icon.
Version impacted =>3.3.0
CVSS
No CVSS.
References
Configurations
No configuration.
History
No history.
Information
Published : 2026-08-27 13:18
Updated : 2026-08-28 15:28
NVD link : CVE-2026-81814
Mitre link : CVE-2026-81814
CVE.ORG link : CVE-2026-81814
JSON object : View
Products Affected
No product.
CWE
CWE-79
Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
