CVE-2025-62748

6.5 MEDIUM

📋 TL;DR

This DOM-based XSS vulnerability in Genetech Products' Web and WooCommerce Addons for WPBakery Builder allows attackers to inject malicious scripts that execute in users' browsers when they visit compromised pages. It affects WordPress sites using this plugin up to version 1.5. Attackers can steal session cookies, redirect users, or perform actions on their behalf.

💻 Affected Systems

Products:
  • Web and WooCommerce Addons for WPBakery Builder
Versions: n/a through 1.5
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress with WPBakery Builder plugin and the affected addon plugin installed and active.

⚠️ 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 steal administrator session cookies, gain full control of WordPress site, install backdoors, deface website, or steal sensitive customer data from WooCommerce stores.

🟠

Likely Case

Attackers steal user session cookies, redirect visitors to malicious sites, or perform limited actions within the compromised user's context.

🟢

If Mitigated

With proper input validation and output encoding, malicious scripts are neutralized before reaching users' browsers.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

DOM-based XSS typically requires user interaction but can be exploited via crafted links or stored payloads.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.6 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/vc-addons-by-bit14/vulnerability/wordpress-web-and-woocommerce-addons-for-wpbakery-builder-plugin-1-5-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 'Web and WooCommerce Addons for WPBakery Builder'. 4. Click 'Update Now' if update available. 5. If no update, download version 1.6+ from WordPress repository and manually update.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily disable the affected plugin until patched

wp plugin deactivate vc-addons-by-bit14

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'"
Add to wp-config.php: header("Content-Security-Policy: default-src 'self'; script-src 'self'");

🧯 If You Can't Patch

  • Implement WAF rules to block XSS payloads in requests
  • Disable user input fields that trigger the DOM manipulation

🔍 How to Verify

Check if Vulnerable:

Check plugin version in WordPress admin under Plugins > Installed Plugins

Check Version:

wp plugin get vc-addons-by-bit14 --field=version

Verify Fix Applied:

Verify plugin version is 1.6 or higher after update

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST/GET requests with script tags or JavaScript payloads to plugin endpoints
  • Multiple failed login attempts after visiting specific pages

Network Indicators:

  • Outbound connections to suspicious domains from user browsers after visiting site pages
  • Unexpected redirects in HTTP traffic

SIEM Query:

source="web_access" AND (uri="*vc-addons*" OR uri="*wp-content/plugins/vc-addons*") AND (request="*<script>*" OR request="*javascript:*" OR request="*onload=*" OR request="*onerror=*")

🔗 References

📤 Share & Export