CVE-2025-24561

7.1 HIGH

📋 TL;DR

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

💻 Affected Systems

Products:
  • ReviewsTap WordPress Plugin
Versions: n/a through 1.1.2
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with ReviewsTap 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 infected pages.

🟠

Likely Case

Attackers create fake review submission forms that trick administrators into approving malicious content, leading to persistent XSS payloads being stored and executed when users visit affected pages.

🟢

If Mitigated

With proper CSRF tokens and input validation, the attack would fail as unauthorized requests would be rejected before reaching the vulnerable functionality.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires tricking an authenticated administrator into clicking a malicious link or visiting a crafted page. The CSRF leads to stored XSS, making it a two-stage attack.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.1.2

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/reviewstap/vulnerability/wordpress-reviewstap-plugin-1-1-2-csrf-to-stored-cross-site-scripting-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find ReviewsTap plugin. 4. Click 'Update Now' if available. 5. If no update appears, manually download latest version from WordPress repository and replace files.

🔧 Temporary Workarounds

Implement CSRF Protection

WordPress

Add CSRF tokens to all form submissions and AJAX requests in the plugin

Requires custom code modification - not recommended for non-developers

Disable Plugin

WordPress

Temporarily disable ReviewsTap plugin until patched

wp plugin deactivate reviewstap

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block CSRF attempts and XSS payloads
  • Restrict admin panel access to trusted IP addresses only using .htaccess or firewall rules

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for ReviewsTap version. If version is 1.1.2 or earlier, you are vulnerable.

Check Version:

wp plugin get reviewstap --field=version

Verify Fix Applied:

After updating, verify ReviewsTap plugin version is higher than 1.1.2 in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to ReviewsTap endpoints without referrer headers
  • Multiple failed review submissions from same IP
  • Administrator accounts performing unexpected plugin actions

Network Indicators:

  • HTTP requests with suspicious JavaScript in review content fields
  • CSRF attempts with missing or invalid nonce/token parameters

SIEM Query:

source="wordpress.log" AND ("reviewstap" OR "CSRF") AND ("POST" OR "admin-ajax.php")

🔗 References

📤 Share & Export