CVE-2024-55661: Laravel Pulse Allows Remote Code Execution via Unprotected Query Method
N/A
CVSS Score
Basic Information
CVE ID
GHSA ID
EPSS Score
0.83274%
CWE
Published
12/13/2024
Updated
12/17/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
-
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
laravel/pulse | composer | < 1.3.1 | 1.3.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the remember() method being publicly accessible in Livewire components. The commit diff shows this method's visibility was changed from public to protected to fix the issue. As a public method handling user-controlled callables without proper validation, it enabled code injection (CWE-94) by allowing attackers to execute arbitrary functions like \Illuminate\Support\Facades\Config::all. The NVD description and GHSA advisory explicitly identify this method as the attack vector.