CVE-2022-22107: Missing Authorization in DayByDay CRM
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.3659%
CWE
Published
1/8/2022
Updated
2/3/2023
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 |
---|---|---|---|
bottelet/flarepoint | composer | >= 2.0.0, < 2.2.1 | 2.2.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing authorization in the calendar endpoint. The GitHub patch shows the critical addition of an authorization gate (!auth()->user()->can
('calendar-view')) in the calendar()
method. Before this fix, the function returned the calendar
view without any permission checks, which aligns with the described vulnerability where low-privilege users could access unauthorized data via URL manipulation. Other changes in the commit relate to password policies and delete permission fixes, which are unrelated to the core authorization flaw.