CVE-2017-14920: eGroupware Community Edition Stored XSS vulnerability
6.1
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.78159%
CWE
Published
5/17/2022
Updated
4/25/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
egroupware/egroupware | composer | < 16.1.20170922 | 16.1.20170922 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from how statustext values were handled. Before the patch, the tooltip system unconditionally interpreted statustext as HTML via jQuery.append()
in prepare()
, and tooltipBind()
didn't enforce text rendering. The User-Agent
header (attacker-controlled) was stored and rendered without proper escaping when admins viewed logs/tooltips. The patch introduced statustext_html
to force text rendering by default, only allowing HTML when explicitly marked safe. The vulnerable functions are directly responsible for processing and rendering untrusted input without sanitization.