CVE-2025-64380

6.5 MEDIUM

📋 TL;DR

This stored cross-site scripting (XSS) vulnerability in the Booster for WooCommerce plugin allows attackers to inject malicious scripts into web pages that are then executed when other users view those pages. The vulnerability affects all WooCommerce sites using vulnerable versions of the plugin, potentially compromising user sessions and site security.

💻 Affected Systems

Products:
  • Booster for WooCommerce (woocommerce-jetpack)
Versions: All versions up to and including 7.3.2
Operating Systems: All operating systems running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects WordPress sites with WooCommerce and the vulnerable plugin installed. The vulnerability exists in the plugin's input handling during web page generation.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could steal administrator credentials, take over the WordPress site, install backdoors, deface the site, or redirect users to malicious sites, leading to complete site compromise and data theft.

🟠

Likely Case

Attackers inject malicious JavaScript to steal user session cookies, redirect users to phishing pages, or perform actions on behalf of authenticated users, potentially leading to account takeover and data exfiltration.

🟢

If Mitigated

With proper input validation and output encoding, malicious scripts would be neutralized before execution, preventing any successful exploitation.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: LOW

Stored XSS vulnerabilities are commonly exploited. While no public PoC is confirmed, the vulnerability type and CVSS score suggest exploitation is straightforward for attackers with basic web security knowledge.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 7.3.3 or later

Vendor Advisory: 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

Restart Required: No

Instructions:

1. Log into WordPress admin dashboard
2. Navigate to Plugins → Installed Plugins
3. Find 'Booster for WooCommerce'
4. Click 'Update Now' if update is available
5. Alternatively, download version 7.3.3+ from WordPress.org and manually update

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily disable the Booster for WooCommerce plugin until patched

wp plugin deactivate woocommerce-jetpack

Implement Content Security Policy

all

Add CSP headers to restrict script execution sources

Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Or add to WordPress functions.php: header("Content-Security-Policy: default-src 'self'; script-src 'self'");

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block XSS payloads
  • Restrict plugin access to trusted users only and monitor for suspicious activity

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for 'Booster for WooCommerce' version

Check Version:

wp plugin get woocommerce-jetpack --field=version

Verify Fix Applied:

Verify plugin version is 7.3.3 or higher in WordPress admin

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to plugin endpoints with script tags
  • Multiple failed XSS attempts in web server logs
  • Unexpected JavaScript in database content fields

Network Indicators:

  • Outbound connections to suspicious domains from your site
  • Unexpected script loads in page responses

SIEM Query:

source="web_server.log" AND ("<script" OR "javascript:" OR "onload=" OR "onerror=") AND uri="*jetpack*"

🔗 References

📤 Share & Export