CVE-2025-32477

7.1 HIGH

📋 TL;DR

A Cross-Site Request Forgery (CSRF) vulnerability in the WP-Easy Menu WordPress plugin allows attackers to perform stored cross-site scripting (XSS) attacks. When exploited, this can enable attackers to inject malicious scripts into WordPress sites that execute when users visit affected pages. This affects all WordPress sites running WP-Easy Menu versions up to 0.41.

💻 Affected Systems

Products:
  • WP-Easy Menu WordPress Plugin
Versions: 0.41 and earlier
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires the plugin to be installed and activated on WordPress sites. The vulnerability is present in default configurations.

⚠️ 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 inject persistent malicious scripts that steal administrator credentials, redirect users to malicious sites, or take full control of the WordPress site.

🟠

Likely Case

Attackers trick administrators into clicking malicious links that inject JavaScript payloads, potentially compromising user sessions or defacing the website.

🟢

If Mitigated

With proper CSRF protections and content security policies, the attack would fail or have limited impact.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires tricking authenticated users (typically administrators) into clicking malicious links or visiting compromised pages.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 0.42 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/wp-easy-menu/vulnerability/wordpress-wp-easy-menu-plugin-0-41-csrf-to-stored-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find WP-Easy Menu and click 'Update Now' if available. 4. If no update appears, manually download version 0.42+ from WordPress.org and replace the plugin files.

🔧 Temporary Workarounds

Temporary Plugin Deactivation

all

Disable the WP-Easy Menu plugin until patched

wp plugin deactivate wp-easy-menu

CSRF Protection Headers

all

Implement Content Security Policy headers to mitigate XSS impact

Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Add to nginx config: add_header Content-Security-Policy "default-src 'self'; script-src 'self'";

🧯 If You Can't Patch

  • Remove WP-Easy Menu plugin entirely and use alternative menu solutions
  • Implement strict firewall rules to block suspicious requests to wp-admin areas

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin > Plugins > Installed Plugins for WP-Easy Menu version. If version is 0.41 or lower, you are vulnerable.

Check Version:

wp plugin get wp-easy-menu --field=version

Verify Fix Applied:

After updating, verify WP-Easy Menu shows version 0.42 or higher in WordPress plugins list.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to wp-admin/admin-ajax.php with menu-related actions
  • Multiple failed CSRF token validations in WordPress debug logs

Network Indicators:

  • Unexpected JavaScript payloads in HTTP POST parameters
  • Requests with suspicious referer headers to admin endpoints

SIEM Query:

source="wordpress.log" AND ("wp-easy-menu" OR "admin-ajax.php") AND ("action=save_menu" OR "CSRF")

🔗 References

📤 Share & Export