CVE-2020-36608: Tribal Systems Zenario CMS vulnerable to Cross-site Scripting
6.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.19879%
CWE
Published
11/3/2022
Updated
2/1/2023
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| tribalsystems/zenario | composer | < 8.5.51340 | 8.5.51340 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The GitHub patch shows critical changes in admin_organizer.js where title attributes were being built with item.name. The original code used htmlspecialchars(item.name) once, but XSS was still possible due to context-aware escaping requirements. The vulnerability stems from insufficient output encoding when handling user-supplied referer URLs in error logs, which were then reflected in admin-facing title attributes without proper sanitization. The fix applies double escaping (htmlspecialchars(htmlspecialchars(...))) to prevent this injection.