CVE-2025-30631

7.1 HIGH

📋 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

Products:
  • Woocommerce Sales Funnel Builder
  • Amazon Affiliates Addon for WPBakery Page Builder (formerly Visual Composer)
Versions: Woocommerce Sales Funnel Builder: up to 1.1; Amazon Affiliates Addon: up to 1.2
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with these specific plugins installed and activated.

⚠️ 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.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. 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.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

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

all

Temporarily disable the affected plugins until patches can be applied

wp plugin deactivate woosales
wp plugin deactivate azon-addon-js-composer

Implement WAF rules

all

Add 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

📤 Share & Export