CVE-2024-50347: Laravel Reverb Missing API Signature Verification
6.3
CVSS Score
4.0
Basic Information
CVE ID
GHSA ID
EPSS Score
0.06439%
CWE
Published
10/31/2024
Updated
10/31/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:Green
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
laravel/reverb | composer | < 1.4.0 | 1.4.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stemmed from two key issues: 1) The verify method in the base controller did not invoke signature verification at all before the patch (missing $this->verifySignature($request) call), leaving all API endpoints unprotected. 2) The verifySignature method itself had flawed implementation where it directly accessed $this->query['auth_signature'] without handling missing values, and the patch added null coalescing ($authSignature = $this->query['auth_signature'] ?? '') to address this. The high confidence for the verify method comes from the explicit addition of the verification call in the patch, while the medium confidence for verifySignature reflects the subtler parameter handling improvement.