CVE-2025-32922

7.1 HIGH

📋 TL;DR

A Cross-Site Request Forgery (CSRF) vulnerability in the Tobias WP2LEADS WordPress plugin allows attackers to perform stored cross-site scripting (XSS) attacks. This affects WordPress sites using WP2LEADS plugin versions up to 3.5.0. Attackers can trick authenticated administrators into executing malicious actions that inject persistent scripts.

💻 Affected Systems

Products:
  • Tobias WP2LEADS WordPress Plugin
Versions: n/a through 3.5.0
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with WP2LEADS plugin enabled. 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 malicious JavaScript that steals administrator credentials, redirects users to malicious sites, or takes full control of the WordPress site when administrators view compromised pages.

🟠

Likely Case

Attackers create fake forms or links that trick logged-in administrators into unknowingly submitting requests that inject malicious scripts into the site, leading to session hijacking or defacement.

🟢

If Mitigated

With proper CSRF tokens and input validation, the vulnerability would be prevented, and only legitimate requests from authenticated users would be processed.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires tricking an authenticated administrator into clicking a malicious link or visiting a crafted page. No public proof-of-concept is available, but CSRF to XSS chains are commonly weaponized.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 3.5.1 or later

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/wp2leads/vulnerability/wordpress-wp2leads-plugin-3-5-0-cross-site-request-forgery-csrf-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'WP2LEADS' and click 'Update Now' if available. 4. Alternatively, download version 3.5.1+ from WordPress repository and manually replace files via FTP/SFTP.

🔧 Temporary Workarounds

Disable WP2LEADS Plugin

all

Temporarily deactivate the vulnerable plugin until patched.

wp plugin deactivate wp2leads

Implement CSRF Protection Headers

all

Add 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

  • Restrict admin access to trusted networks only using firewall rules.
  • Implement web application firewall (WAF) rules to block CSRF and XSS patterns.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for WP2LEADS version. If version is 3.5.0 or earlier, it is vulnerable.

Check Version:

wp plugin get wp2leads --field=version

Verify Fix Applied:

Verify WP2LEADS plugin version is 3.5.1 or later in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to wp-admin/admin-ajax.php or plugin-specific endpoints from unexpected referrers.
  • Administrator sessions with unexpected actions like plugin settings changes.

Network Indicators:

  • HTTP requests with missing or mismatched CSRF tokens to WP2LEADS endpoints.
  • Inbound traffic with malicious JavaScript payloads in parameters.

SIEM Query:

source="web_logs" AND (uri_path="/wp-admin/admin-ajax.php" OR uri_path CONTAINS "wp2leads") AND (referrer NOT IN allowed_domains OR csrf_token MISSING)

🔗 References

📤 Share & Export