CVE-2013-2209: Review Board Cross-site scripting (XSS) vulnerability in the reviews dropdown
6.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.60343%
CWE
Published
5/17/2022
Updated
8/29/2023
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:N/I:H/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| reviewboard | pip | >= 1.6, < 1.6.17 | 1.6.17 |
| reviewboard | pip | >= 1.7, < 1.7.10 | 1.7.10 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the formatItem callback in the autocomplete widget implementation. The original code (pre-patch) concatenated raw user input from data[options.nameKey] and data[options.descKey] into HTML strings without sanitization. The patch fixes this by using jQuery.text() method to HTML-escape the description content. The function's direct handling of unescaped user input in HTML construction matches the described XSS vulnerability vector via user full names.