CVE-2024-31828:
Lavalite CMS Cross Site Scripting vulnerability
6.1
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.38076%
CWE
Published
4/27/2024
Updated
7/3/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
lavalite/cms | composer | = 10.1.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability manifests through URL-based XSS payloads affecting documentation routes (/docs/master/...). This suggests:
- Route handlers (like PublicController) process URL segments without validation
- Blade templates output these parameters without HTML escaping (using {!! !!} instead of {{ }})
- The specific reproduction path suggests documentation rendering components are vulnerable While exact code isn't available, Laravel CMS patterns and the attack vector indicate controller/view handling of URL parameters as the likely source.