CVE-2026-0691

4.4 MEDIUM

📋 TL;DR

This stored XSS vulnerability in the CM E-Mail Blacklist WordPress plugin allows authenticated administrators to inject malicious scripts that execute when users view affected pages. Only WordPress multi-site installations and sites with unfiltered_html disabled are affected. Attackers can steal session cookies, redirect users, or perform actions on their behalf.

💻 Affected Systems

Products:
  • CM E-Mail Blacklist WordPress Plugin
Versions: All versions up to and including 1.6.2
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ✅ No
Notes: Only affects WordPress multi-site installations OR single-site installations where unfiltered_html capability is disabled for administrators.

⚠️ 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

Administrator account compromise leading to full site takeover, data theft, malware distribution to visitors, and credential harvesting.

🟠

Likely Case

Session hijacking of other administrators or users, defacement of admin pages, or redirection to malicious sites.

🟢

If Mitigated

Limited impact due to requiring admin privileges and specific WordPress configurations; primarily affects admin interface.

🌐 Internet-Facing: MEDIUM - Requires admin access but affects public-facing WordPress sites; successful exploitation impacts visitors.
🏢 Internal Only: LOW - Primarily affects admin interface; requires authenticated admin access to exploit.

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ✅ No
Complexity: LOW - Simple XSS injection via black_email parameter.

Requires administrator-level WordPress access. Exploitation is straightforward once authenticated.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 1.6.2

Vendor Advisory: https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3440158%40cm-email-blacklist&new=3440158%40cm-email-blacklist&sfp_email=&sfph_mail=

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'CM E-Mail Blacklist'. 4. Click 'Update Now' if available, or delete and reinstall latest version. 5. Verify plugin version is >1.6.2.

🔧 Temporary Workarounds

Disable Plugin

all

Temporarily disable the vulnerable plugin until patched.

wp plugin deactivate cm-email-blacklist

Enable unfiltered_html

all

For single-site installations, enable unfiltered_html capability for administrators (not recommended for security).

Add define('DISALLOW_UNFILTERED_HTML', false); to wp-config.php

🧯 If You Can't Patch

  • Remove administrator access from untrusted users immediately.
  • Implement web application firewall (WAF) rules to block XSS payloads in black_email parameter.

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins for CM E-Mail Blacklist version ≤1.6.2.

Check Version:

wp plugin get cm-email-blacklist --field=version

Verify Fix Applied:

Confirm plugin version is >1.6.2 in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to /wp-admin/admin.php?page=cm-email-blacklist with script tags in parameters
  • Multiple failed login attempts followed by successful admin login

Network Indicators:

  • HTTP requests containing <script> tags in black_email parameter to WordPress admin endpoints

SIEM Query:

source="wordpress.log" AND (uri_path="/wp-admin/admin.php" AND query_string="*page=cm-email-blacklist*" AND (post_data="*black_email=*<script>*" OR post_data="*black_email=*javascript:*"))

🔗 References

📤 Share & Export