CVE-2024-24751: derhansen/sf_event_mgt vulnerable to Broken Access Control in Backend Module
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.5427%
CWE
Published
2/13/2024
Updated
10/18/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| derhansen/sf_event_mgt | composer | >= 7.0.0, < 7.4.0 | 7.4.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the fact that checkEventAccess() in the affected versions called $this->redirect('list') but did not return the RedirectResponse. Controller actions like exportAction, indexNotifyAction, and notifyAction relied on checkEventAccess to enforce access control but continued execution even when a redirect was triggered. The commit diff explicitly modifies these functions to check the return value of checkEventAccess and return the redirect, confirming their role in the vulnerability. The CVE description and patch context directly link the unhandled RedirectResponse to these functions.