CVE-2024-12384
📋 TL;DR
The Binary MLM Woocommerce WordPress plugin contains a reflected cross-site scripting (XSS) vulnerability in the 'page' parameter that allows unauthenticated attackers to inject malicious scripts. When a user clicks a specially crafted link, the script executes in their browser context, potentially stealing session cookies or performing unauthorized actions. All WordPress sites using this plugin up to version 2.0 are affected.
💻 Affected Systems
- Binary MLM Woocommerce WordPress Plugin
⚠️ Manual Verification Required
This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.
Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).
🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- Consider updating to the latest version as a precaution
⚠️ Risk & Real-World Impact
Worst Case
Attackers steal administrator session cookies, gain full control of the WordPress site, install backdoors, deface the site, or steal sensitive customer data from the e-commerce platform.
Likely Case
Attackers steal user session cookies to hijack accounts, redirect users to malicious sites, or perform limited actions within the user's privilege level.
If Mitigated
Script execution is blocked by modern browser XSS protections or Content Security Policy headers, limiting impact to basic phishing attempts.
🎯 Exploit Status
Reflected XSS vulnerabilities are commonly weaponized in phishing campaigns. No public exploit code is required as the vulnerability is straightforward to exploit.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: 2.1 or later
Vendor Advisory: https://plugins.trac.wordpress.org/browser/woo-binary-mlm
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Binary MLM Woocommerce'. 4. Click 'Update Now' if update is available. 5. If no update appears, manually download version 2.1+ from WordPress repository and replace plugin files.
🔧 Temporary Workarounds
Implement Web Application Firewall (WAF)
allConfigure WAF rules to block XSS payloads in URL parameters
Add Content Security Policy Header
linuxImplement CSP to restrict script execution sources
Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Add to .htaccess for Apache or nginx.conf for Nginx
🧯 If You Can't Patch
- Disable the Binary MLM Woocommerce plugin immediately
- Restrict access to admin pages using IP whitelisting or authentication requirements
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin → Plugins → Installed Plugins for 'Binary MLM Woocommerce' version. If version is 2.0 or lower, you are vulnerable.
Check Version:
wp plugin list --name='binary-mlm-woocommerce' --field=version (if WP-CLI installed)
Verify Fix Applied:
After updating, verify plugin version shows 2.1 or higher in WordPress admin panel.
📡 Detection & Monitoring
Log Indicators:
- Unusual GET requests with script tags in 'page' parameter
- Multiple failed login attempts following suspicious URL accesses
- Admin pages accessed with encoded JavaScript in URL parameters
Network Indicators:
- HTTP requests containing <script>, javascript:, or encoded XSS payloads in URL parameters
- Outbound connections to suspicious domains following admin page access
SIEM Query:
source="web_server_logs" AND (uri="*page=*<script>*" OR uri="*page=*javascript:*" OR uri="*page=*%3Cscript%3E*")
🔗 References
- https://plugins.trac.wordpress.org/browser/woo-binary-mlm/trunk/includes/admin/payout/payout-report.php#L121
- https://plugins.trac.wordpress.org/browser/woo-binary-mlm/trunk/includes/admin/payout/payout-report.php#L44
- https://plugins.trac.wordpress.org/browser/woo-binary-mlm/trunk/includes/admin/register-first-user.php#L82
- https://www.wordfence.com/threat-intel/vulnerabilities/id/fdf6b2ea-5a6a-481b-9431-650c895f54ef?source=cve