CVE-2025-66145

5.4 MEDIUM

📋 TL;DR

This CVE describes a Missing Authorization vulnerability in the Worker for WPBakery WordPress plugin that allows attackers to bypass access controls. It affects all versions up to 1.1.1, potentially enabling unauthorized actions on WordPress sites using this plugin. The vulnerability stems from incorrectly configured security levels that fail to properly verify user permissions.

💻 Affected Systems

Products:
  • Worker for WPBakery WordPress plugin
Versions: All versions up to and including 1.1.1
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Only affects WordPress installations with the Worker for WPBakery plugin 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 modify plugin settings, inject malicious content, or potentially gain administrative privileges on the WordPress site, leading to complete site compromise.

🟠

Likely Case

Unauthorized users could change plugin configurations, disrupt site functionality, or inject limited malicious content into affected pages.

🟢

If Mitigated

With proper access controls and authentication mechanisms, the vulnerability would be prevented from being exploited.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: LOW

Exploitation requires some WordPress access but not necessarily administrative privileges. The vulnerability is in access control logic rather than requiring complex technical exploitation.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.1.2 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/worker-wpbakery/vulnerability/wordpress-worker-for-wpbakery-plugin-1-1-1-broken-access-control-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Worker for WPBakery' and click 'Update Now'. 4. Alternatively, download version 1.1.2+ from WordPress repository and manually replace plugin files.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched

wp plugin deactivate worker-wpbakery

Restrict Access

linux

Implement IP-based restrictions to WordPress admin area

# Add to .htaccess for Apache: Order Deny,Allow
Deny from all
Allow from 192.168.1.0/24
# Add to nginx config: allow 192.168.1.0/24; deny all;

🧯 If You Can't Patch

  • Implement strict role-based access controls for WordPress users
  • Deploy a web application firewall (WAF) with WordPress-specific rules

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for 'Worker for WPBakery' version 1.1.1 or earlier

Check Version:

wp plugin get worker-wpbakery --field=version

Verify Fix Applied:

Verify plugin version is 1.1.2 or later in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized access attempts to plugin admin endpoints
  • Unexpected modifications to plugin settings

Network Indicators:

  • Unusual POST requests to /wp-admin/admin-ajax.php with plugin-specific actions

SIEM Query:

source="wordpress.log" AND ("worker-wpbakery" OR "admin-ajax.php") AND (action="save_settings" OR action="update_options")

🔗 References

📤 Share & Export