CVE-2025-12681

5.3 MEDIUM

📋 TL;DR

The Comment Edit Core plugin for WordPress exposes sensitive user data including email addresses, IPs, and user IDs through an unauthenticated AJAX endpoint. All WordPress sites using this plugin up to version 3.1.0 are affected. Attackers can harvest this information without any authentication.

💻 Affected Systems

Products:
  • Comment Edit Core – Simple Comment Editing WordPress plugin
Versions: All versions up to and including 3.1.0
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations with vulnerable plugin versions are affected regardless of 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

Mass data breach exposing all commenter PII leading to targeted phishing, credential stuffing attacks, and privacy violations.

🟠

Likely Case

Attackers harvest email addresses and user data for spam campaigns, credential stuffing, and targeted attacks.

🟢

If Mitigated

Limited exposure if plugin is disabled or patched quickly, but any exposed data remains compromised.

🌐 Internet-Facing: HIGH - WordPress sites are internet-facing by default and the exploit requires no authentication.
🏢 Internal Only: LOW - This primarily affects public WordPress sites, though internal sites with the plugin would also be vulnerable.

🎯 Exploit Status

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

Simple HTTP request to the vulnerable AJAX endpoint. Proof of concept is publicly available in the references.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 3.1.1

Vendor Advisory: https://plugins.trac.wordpress.org/changeset/3392054/

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Comment Edit Core – Simple Comment Editing'. 4. Click 'Update Now' if available, or manually update to version 3.1.1. 5. Verify plugin is active on version 3.1.1.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily deactivate the plugin until patched

wp plugin deactivate simple-comment-editing

Block AJAX endpoint

linux

Add web application firewall rule to block access to vulnerable endpoint

# Add to .htaccess for Apache:
RewriteRule ^wp-admin/admin-ajax\.php\?action=ajax_get_comment - [F,L]

🧯 If You Can't Patch

  • Disable the Comment Edit Core plugin immediately
  • Implement web application firewall rules to block access to the vulnerable AJAX endpoint

🔍 How to Verify

Check if Vulnerable:

Check WordPress plugin version: Navigate to Plugins → Installed Plugins and verify 'Comment Edit Core – Simple Comment Editing' version is 3.1.0 or lower.

Check Version:

wp plugin get simple-comment-editing --field=version

Verify Fix Applied:

Confirm plugin version is 3.1.1 or higher in WordPress admin panel under Plugins → Installed Plugins.

📡 Detection & Monitoring

Log Indicators:

  • Multiple requests to /wp-admin/admin-ajax.php with action=ajax_get_comment parameter
  • Unusual traffic patterns to AJAX endpoints from unauthenticated users

Network Indicators:

  • HTTP GET requests to WordPress AJAX endpoint with ajax_get_comment action parameter

SIEM Query:

source="wordpress.log" AND uri_path="/wp-admin/admin-ajax.php" AND query_string="*action=ajax_get_comment*"

🔗 References

📤 Share & Export