CVE-2025-30631
📋 TL;DR
This CVE describes a reflected cross-site scripting (XSS) vulnerability in two WordPress plugins. Attackers can inject malicious scripts via crafted URLs, which execute in victims' browsers when they visit those URLs. WordPress sites using vulnerable versions of these plugins are affected.
💻 Affected Systems
- Woocommerce Sales Funnel Builder
- Amazon Affiliates Addon for WPBakery Page Builder (formerly Visual Composer)
⚠️ 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 could steal administrator session cookies, take over WordPress admin accounts, deface websites, or redirect users to malicious sites.
Likely Case
Attackers would typically steal user session cookies or credentials, potentially leading to account compromise.
If Mitigated
With proper input validation and output encoding, the malicious scripts would be neutralized before execution.
🎯 Exploit Status
Reflected XSS typically requires user interaction (clicking malicious link) but is straightforward to exploit.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Check WordPress plugin repository for updated versions
Vendor Advisory: https://patchstack.com/database/vulnerability
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Update both affected plugins to latest versions. 4. Clear any caching plugins/CDN caches.
🔧 Temporary Workarounds
Disable vulnerable plugins
allTemporarily disable the affected plugins until patches can be applied
wp plugin deactivate woosales
wp plugin deactivate azon-addon-js-composer
Implement WAF rules
allAdd web application firewall rules to block XSS payloads
🧯 If You Can't Patch
- Implement Content Security Policy (CSP) headers to restrict script execution
- Use browser security headers like X-XSS-Protection and X-Content-Type-Options
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin > Plugins > Installed Plugins for affected plugin versions
Check Version:
wp plugin list --field=name,version
Verify Fix Applied:
Verify plugin versions are updated beyond vulnerable ranges (Woocommerce Sales Funnel Builder > 1.1, Amazon Affiliates Addon > 1.2)
📡 Detection & Monitoring
Log Indicators:
- Unusual GET/POST requests with script tags or JavaScript in parameters
- Multiple failed XSS attempts in web server logs
Network Indicators:
- HTTP requests containing <script> tags or JavaScript in URL parameters
- Traffic patterns showing users being redirected to suspicious URLs
SIEM Query:
source="web_logs" AND ("<script" OR "javascript:" OR "onerror=" OR "onload=")
🔗 References
- https://patchstack.com/database/wordpress/plugin/azon-addon-js-composer/vulnerability/wordpress-amazon-affiliates-addon-for-wpbakery-page-builder-formerly-visual-composer-1-2-cross-site-scripting-xss-vulnerability?_s_id=cve
- https://patchstack.com/database/wordpress/plugin/woosales/vulnerability/wordpress-woocommerce-sales-funnel-builder-plugin-1-1-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve