CVE-2023-32302: Silverstripe Framework: Members with no password can be created and bypass custom login forms
N/A
CVSS Score
Basic Information
CVE ID
GHSA ID
EPSS Score
-
CWE
Published
7/31/2023
Updated
11/8/2023
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS metrics data is empty
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| silverstripe/framework | composer | >= 5.0.0, < 5.0.13 | 5.0.13 |
| silverstripe/framework | composer | >= 3.0.0, < 4.13.14 | 4.13.14 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from the password field configuration in Member class. The key modification in the patch was changing 'setCanBeEmpty(true)' to 'setCanBeEmpty(false)' in getMemberPasswordField method. This function directly controlled password field validation rules in administrative interfaces, and its permissive configuration was the root cause enabling empty password creation. The file path and method name are explicitly shown in the commit diff, and the CWE-20 (Input Validation) mapping confirms this as the vulnerable location.