CVE-2019-11767: phpBB Server side request forgery (SSRF)
5.8
CVSS Score
3.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.44935%
CWE
Published
5/24/2022
Updated
4/24/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
phpbb/phpbb | composer | < 3.2.6 | 3.2.6 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the remote avatar handling functionality. Key functions are in profile field validation and remote avatar driver where:
- type_avatar::validate_profile_field handles user-supplied avatar URLs
- remote::get_data performs the actual HTTP request. The lack of proper validation for internal network targets in these functions allowed SSRF. The vendor's mitigation involved disabling remote avatars entirely, confirming these components' central role. Code structure analysis of phpBB's avatar handling architecture supports this assessment.