CVE-2015-3880: phpBB Open Redirect
6.1
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.71394%
CWE
Published
5/17/2022
Updated
8/3/2023
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 |
---|---|---|---|
phpbb/phpbb | composer | < 3.0.14 | 3.0.14 |
phpbb/phpbb | composer | >= 3.1.0, < 3.1.4 | 3.1.4 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The commit diff shows critical modifications to the redirect() function in phpBB/includes/functions.php. The original code allowed redirects to proceed if the host didn't match by naively resetting the URL to generate_board_url(), which could be bypassed via URL obfuscation techniques (e.g., embedded credentials, subdomain tricks). The added checks (strpos() validation and error triggers) directly address the open redirect flaw. The test cases in redirect_test.php confirm scenarios where external/abnormal URLs were previously allowed but now blocked. This aligns with the CVE's description of insufficient validation for Chrome-specific attack vectors.