CVE-2025-28923

7.1 HIGH

📋 TL;DR

This CSRF vulnerability in the WordPress No Disposable Email plugin allows attackers to trick authenticated administrators into performing actions that inject malicious scripts. When exploited, it leads to stored cross-site scripting (XSS) attacks. All WordPress sites using No Disposable Email plugin versions up to 2.5.1 are affected.

💻 Affected Systems

Products:
  • WordPress No Disposable Email Plugin
Versions: n/a through 2.5.1
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress administrator access for exploitation via CSRF

⚠️ 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 persistent malicious scripts that steal administrator credentials, hijack sessions, deface websites, or install backdoors when administrators view affected pages.

🟠

Likely Case

Attackers create fake forms or links that trick logged-in administrators into unknowingly submitting requests that inject malicious JavaScript into the site, leading to session hijacking or credential theft.

🟢

If Mitigated

With proper CSRF protections and input validation, the attack would fail, preventing XSS injection and maintaining site integrity.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

Exploitation requires social engineering to trick authenticated administrators into clicking malicious links or submitting forms

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 2.5.1

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/no-disposable-email/vulnerability/wordpress-no-disposable-email-plugin-2-5-1-csrf-to-stored-xss-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'No Disposable Email' plugin. 4. Click 'Update Now' if available. 5. Alternatively, download latest version from WordPress repository and replace plugin files.

🔧 Temporary Workarounds

Implement CSRF Protection

all

Add CSRF tokens to all forms and validate them server-side

Input Validation and Sanitization

all

Implement strict input validation and output encoding to prevent XSS

🧯 If You Can't Patch

  • Disable or remove the No Disposable Email plugin temporarily
  • Implement web application firewall (WAF) rules to block CSRF attempts and XSS payloads

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > No Disposable Email > Version. If version is 2.5.1 or earlier, you are vulnerable.

Check Version:

wp plugin list --name='no-disposable-email' --field=version (if WP-CLI installed)

Verify Fix Applied:

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

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to plugin admin endpoints without referrer headers
  • Multiple failed CSRF token validations

Network Indicators:

  • Requests containing malicious script patterns in form submissions
  • Cross-origin requests to plugin admin endpoints

SIEM Query:

source="wordpress.log" AND ("no-disposable-email" OR "nd_email") AND (POST OR "admin-ajax.php") AND NOT referer="your-domain.com"

🔗 References

📤 Share & Export