CVE-2025-64630

4.7 MEDIUM

📋 TL;DR

This CVE describes a missing authorization vulnerability in the Strategy11 Team Business Directory WordPress plugin that allows attackers to exploit incorrectly configured access control security levels. It affects all versions up to and including 6.4.19, potentially allowing unauthorized users to access restricted functionality.

💻 Affected Systems

Products:
  • Strategy11 Team Business Directory WordPress Plugin
Versions: All versions through 6.4.19
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects WordPress installations using the Business Directory plugin. The vulnerability exists in the plugin's access control implementation.

⚠️ 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 or delete business directory listings, access administrative functions, or manipulate plugin settings without authorization.

🟠

Likely Case

Unauthorized users could view or modify business directory content they shouldn't have access to, potentially defacing listings or accessing sensitive business information.

🟢

If Mitigated

With proper access controls and authentication mechanisms in place, only authorized users can access directory management functions.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires understanding of WordPress plugin structure and access control bypass techniques.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 6.4.20 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/business-directory-plugin/vulnerability/wordpress-business-directory-plugin-6-4-19-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 'Business Directory' plugin
4. Click 'Update Now' if available
5. Alternatively, download version 6.4.20+ from WordPress.org and manually update

🔧 Temporary Workarounds

Temporary Plugin Deactivation

all

Disable the Business Directory plugin until patched

wp plugin deactivate business-directory-plugin

Access Restriction via .htaccess

linux

Restrict access to plugin directories

# Add to .htaccess in wp-content/plugins/business-directory-plugin:
Order Deny,Allow
Deny from all
Allow from 127.0.0.1

🧯 If You Can't Patch

  • Implement strict role-based access controls in WordPress
  • Monitor plugin directories for unauthorized access attempts

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Business Directory → Version. If version is 6.4.19 or earlier, you are vulnerable.

Check Version:

wp plugin get business-directory-plugin --field=version

Verify Fix Applied:

Verify plugin version is 6.4.20 or later in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized access attempts to /wp-content/plugins/business-directory-plugin/
  • Unexpected POST requests to plugin admin endpoints from non-admin users

Network Indicators:

  • Unusual traffic patterns to plugin-specific endpoints from unauthorized IPs

SIEM Query:

source="wordpress.log" AND ("business-directory-plugin" OR "business-directory") AND ("unauthorized" OR "403" OR "admin_access")

🔗 References

📤 Share & Export