CVE-2025-64238

4.3 MEDIUM

📋 TL;DR

This CVE describes a missing authorization vulnerability in the WPS Bidouille WordPress plugin that allows attackers to bypass access controls. It affects all WordPress sites running WPS Bidouille version 1.33.1 or earlier. The vulnerability enables unauthorized users to access functionality intended only for authenticated administrators.

💻 Affected Systems

Products:
  • WPS Bidouille WordPress Plugin
Versions: All versions through 1.33.1
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Affects all WordPress installations with the vulnerable plugin version 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, access sensitive site configuration data, or potentially chain with other vulnerabilities for privilege escalation.

🟠

Likely Case

Unauthorized users accessing administrative plugin features, potentially modifying site behavior or extracting configuration information.

🟢

If Mitigated

With proper access controls, only authenticated administrators can access plugin functionality, limiting impact to authorized users only.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Missing authorization vulnerabilities typically require minimal technical skill to exploit once the vulnerable endpoint is identified.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.33.1

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/wps-bidouille/vulnerability/wordpress-wps-bidouille-plugin-1-33-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 WPS Bidouille and click 'Update Now'. 4. Verify update to version after 1.33.1.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily deactivate the WPS Bidouille plugin until patched

wp plugin deactivate wps-bidouille

Restrict Access via .htaccess

linux

Block access to plugin directories for non-admin users

# Add to .htaccess in wp-content/plugins/wps-bidouille/
Order Deny,Allow
Deny from all
Allow from 127.0.0.1

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block unauthorized access to plugin endpoints
  • Monitor access logs for unauthorized attempts to access /wp-content/plugins/wps-bidouille/ paths

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for WPS Bidouille version 1.33.1 or earlier

Check Version:

wp plugin get wps-bidouille --field=version

Verify Fix Applied:

Verify plugin version is greater than 1.33.1 in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • HTTP 200/403 responses to /wp-content/plugins/wps-bidouille/ from unauthenticated users
  • Unusual POST/GET requests to plugin-specific endpoints

Network Indicators:

  • Unauthenticated requests to plugin admin endpoints
  • Traffic patterns suggesting enumeration of plugin functionality

SIEM Query:

source="web_server" AND (uri_path="/wp-content/plugins/wps-bidouille/*" OR user_agent CONTAINS "wps-bidouille") AND http_status=200 AND auth_status="unauthenticated"

🔗 References

📤 Share & Export