CVE-2025-23627

7.1 HIGH

📋 TL;DR

A Cross-Site Request Forgery (CSRF) vulnerability in the WordPress Comment-Emailer plugin allows attackers to perform stored cross-site scripting (XSS) attacks. This affects WordPress administrators who can be tricked into executing malicious actions, potentially compromising their sites. All users of Comment-Emailer versions up to 1.0.5 are vulnerable.

💻 Affected Systems

Products:
  • WordPress Comment-Emailer plugin
Versions: n/a through 1.0.5
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress administrator access exploitation via CSRF; vulnerable in default plugin 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 inject malicious scripts that execute in administrators' browsers, leading to complete site takeover, data theft, or malware distribution to visitors.

🟠

Likely Case

Attackers trick administrators into clicking malicious links, resulting in stored XSS payloads being injected into the site, potentially stealing session cookies or defacing content.

🟢

If Mitigated

With proper CSRF tokens and input validation, the attack chain is broken, preventing both CSRF and XSS exploitation.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

Exploitation requires tricking an authenticated administrator into clicking a malicious link; combines CSRF with stored XSS.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.0.5

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/comment-emailer/vulnerability/wordpress-comment-emailer-plugin-1-0-5-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 Comment-Emailer and update to the latest version. 4. If no update is available, deactivate and remove the plugin.

🔧 Temporary Workarounds

Implement CSRF Protection

all

Add CSRF tokens to plugin forms to prevent unauthorized requests.

🧯 If You Can't Patch

  • Deactivate and remove the Comment-Emailer plugin immediately.
  • Implement a web application firewall (WAF) with CSRF and XSS protection rules.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin > Plugins > Installed Plugins for Comment-Emailer version; if version is 1.0.5 or earlier, it is vulnerable.

Check Version:

wp plugin list --name=comment-emailer --field=version

Verify Fix Applied:

After updating, confirm the plugin version is higher than 1.0.5 in the WordPress plugins list.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to comment-emailer admin endpoints without referrer headers or CSRF tokens.
  • JavaScript injection patterns in plugin settings or comments.

Network Indicators:

  • HTTP requests with suspicious payloads targeting /wp-admin/admin.php?page=comment-emailer.

SIEM Query:

source="wordpress.log" AND (uri_path="/wp-admin/admin.php" AND query="page=comment-emailer") AND (status=200 OR status=302)

🔗 References

📤 Share & Export