CVE-2025-32678

4.3 MEDIUM

📋 TL;DR

This CSRF vulnerability in the WP Show Stats WordPress plugin allows attackers to trick authenticated administrators into performing unintended actions. Attackers can create malicious requests that execute when administrators visit compromised pages, potentially modifying plugin settings. All WordPress sites using WP Show Stats version 1.5 or earlier are affected.

💻 Affected Systems

Products:
  • Ashish Ajani WP Show Stats WordPress Plugin
Versions: All versions up to and including 1.5
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with WP Show Stats plugin enabled. Vulnerability exists in default configuration.

⚠️ 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 configuration, potentially disrupting site functionality or enabling further attacks through plugin settings manipulation.

🟠

Likely Case

Attackers trick administrators into changing plugin settings, causing minor site functionality issues or enabling data collection changes.

🟢

If Mitigated

With proper CSRF protections, requests would be rejected unless they include valid nonces, preventing unauthorized actions.

🌐 Internet-Facing: MEDIUM
🏢 Internal Only: LOW

🎯 Exploit Status

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

Exploitation requires tricking authenticated administrators into clicking malicious links or visiting compromised pages.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.5 (check plugin repository for latest)

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/wp-show-stats/vulnerability/wordpress-wp-show-stats-plugin-1-5-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 WP Show Stats and click 'Update Now' if available. 4. If no update available, deactivate and delete the plugin, then install latest version from WordPress repository.

🔧 Temporary Workarounds

Implement CSRF Protection Manually

all

Add nonce verification to plugin forms if you cannot update immediately

Modify plugin PHP files to include wp_nonce_field() and wp_verify_nonce() checks

Restrict Admin Access

all

Limit administrative access to trusted networks only

Use .htaccess or firewall rules to restrict /wp-admin/ access to specific IPs

🧯 If You Can't Patch

  • Deactivate the WP Show Stats plugin immediately
  • Implement web application firewall with CSRF protection rules

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for WP Show Stats version 1.5 or earlier

Check Version:

wp plugin list --name=wp-show-stats --field=version

Verify Fix Applied:

Verify plugin version is updated beyond 1.5 and test form submissions include nonce parameters

📡 Detection & Monitoring

Log Indicators:

  • Multiple POST requests to wp-admin/admin.php without referrer headers or nonce parameters
  • Unexpected plugin setting changes in WordPress logs

Network Indicators:

  • POST requests to plugin admin endpoints without proper CSRF tokens
  • Suspicious referrer domains in admin area requests

SIEM Query:

source="wordpress.log" AND "wp-show-stats" AND ("admin.php" OR "plugin settings") AND status=200

🔗 References

📤 Share & Export