CVE-2023-33319

7.1 HIGH

📋 TL;DR

This vulnerability allows unauthenticated attackers to inject malicious scripts via reflected cross-site scripting (XSS) in the WooCommerce Follow-Up Emails (AutomateWoo) plugin. When exploited, it can lead to session hijacking, credential theft, or website defacement. WordPress sites using vulnerable plugin versions are affected.

💻 Affected Systems

Products:
  • WordPress WooCommerce Follow-Up Emails (AutomateWoo) plugin
Versions: <= 4.9.40
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Affects all WordPress installations with the vulnerable plugin version, regardless of OS or hosting environment.

📦 What is this software?

⚠️ Risk & Real-World Impact

🔴

Worst Case

Complete site takeover, admin credential theft, malware distribution to visitors, and data exfiltration from user sessions.

🟠

Likely Case

Session hijacking of logged-in users, credential theft via phishing, and website defacement.

🟢

If Mitigated

Minimal impact if proper Content Security Policy (CSP) headers are implemented and user input validation is enforced.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: LIKELY
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Reflected XSS vulnerabilities are commonly exploited with simple payloads; no authentication required makes this easily weaponizable.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 4.9.41 or later

Vendor Advisory: https://patchstack.com/database/vulnerability/woocommerce-follow-up-emails/wordpress-woocommerce-follow-up-emails-plugin-4-9-40-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'WooCommerce Follow-Up Emails' plugin. 4. Click 'Update Now' if available, or download latest version from WordPress repository. 5. Activate the updated plugin.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily deactivate the WooCommerce Follow-Up Emails plugin until patched.

wp plugin deactivate woocommerce-follow-up-emails

Implement Content Security Policy

all

Add CSP headers to mitigate XSS attacks by restricting script execution sources.

Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Or use WordPress security plugins to configure CSP

🧯 If You Can't Patch

  • Implement Web Application Firewall (WAF) rules to block XSS payloads
  • Disable the plugin entirely and use alternative email automation solutions

🔍 How to Verify

Check if Vulnerable:

Check plugin version in WordPress admin under Plugins > Installed Plugins, or run: wp plugin get woocommerce-follow-up-emails --field=version

Check Version:

wp plugin get woocommerce-follow-up-emails --field=version

Verify Fix Applied:

Confirm plugin version is 4.9.41 or higher using the same command, and test XSS payloads no longer execute.

📡 Detection & Monitoring

Log Indicators:

  • Unusual GET/POST requests containing script tags or JavaScript payloads in query parameters
  • Multiple 400/404 errors with suspicious parameters

Network Indicators:

  • HTTP requests with encoded script payloads in URL parameters
  • Unexpected redirects to external domains

SIEM Query:

source="web_logs" AND (url="*<script>*" OR url="*javascript:*" OR url="*onerror=*" OR url="*onload=*")

🔗 References

📤 Share & Export