CVE-2020-13487:
bbPress stored Cross-Site Scripting (XSS) vulnerability in the Forum creation section
4.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.67879%
CWE
Published
5/24/2022
Updated
4/25/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
bbpress/bbpress | composer | <= 2.6.4 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper input sanitization in forum creation/editing combined with insufficient output escaping. Key points:
- The attack vector requires admin privileges in the post editor (wp-admin/post.php), implicating backend save handlers
- Stored XSS manifests in the admin list view (edit.php?post_type=forum), indicating rendering issues
- bbPress's custom forum metadata handling (likely in metabox save functions) would be the primary suspect for unsanitized input storage
- Admin list table implementations often require explicit escaping which might be missing in custom columns While exact code isn't available, the pattern matches common WordPress plugin XSS vulnerabilities where admin-side metabox handling fails to properly sanitize privileged user input before storage and display.