CVE-2026-2410

4.3 MEDIUM

📋 TL;DR

This CSRF vulnerability in the Disable Admin Notices WordPress plugin allows attackers to add arbitrary URLs to the blocked redirects list by tricking administrators into clicking malicious links. All WordPress sites using this plugin up to version 1.4.2 are affected. Attackers can manipulate redirect behavior without authentication.

💻 Affected Systems

Products:
  • Disable Admin Notices – Hide Dashboard Notifications WordPress plugin
Versions: All versions up to and including 1.4.2
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress installation with the vulnerable plugin active. Attack requires administrator interaction.

⚠️ 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 redirect administrators to malicious sites, potentially leading to credential theft, malware installation, or further site compromise through social engineering.

🟠

Likely Case

Attackers add malicious URLs to redirect block lists, disrupting legitimate site functionality and potentially redirecting users to phishing or scam sites.

🟢

If Mitigated

With proper CSRF protections and user awareness, exploitation attempts fail, maintaining normal site operations.

🌐 Internet-Facing: MEDIUM
🏢 Internal Only: LOW

🎯 Exploit Status

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

Exploitation requires social engineering to trick administrators but uses simple HTTP requests. No authentication needed for the attack vector.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 1.4.3 or later

Vendor Advisory: https://plugins.trac.wordpress.org/changeset/3463239/disable-admin-notices/trunk/admin/pages/class-pages-edit-redirects.php

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Disable Admin Notices – Hide Dashboard Notifications'. 4. Click 'Update Now' if available. 5. Alternatively, delete and reinstall latest version from WordPress repository.

🔧 Temporary Workarounds

Temporary Plugin Deactivation

all

Disable the vulnerable plugin until patched

wp plugin deactivate disable-admin-notices

CSRF Protection via .htaccess

linux

Add basic CSRF protection headers

Header set X-Frame-Options "SAMEORIGIN"
Header set Content-Security-Policy "frame-ancestors 'self'"

🧯 If You Can't Patch

  • Implement strict Content Security Policy headers to limit frame embedding
  • Educate administrators about phishing risks and require confirmation for plugin configuration changes

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Disable Admin Notices. If version is 1.4.2 or lower, you're vulnerable.

Check Version:

wp plugin get disable-admin-notices --field=version

Verify Fix Applied:

Verify plugin version is 1.4.3 or higher in WordPress admin panel.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to /wp-admin/admin.php?page=disable-admin-notices-redirects
  • Multiple failed CSRF validation attempts

Network Indicators:

  • Unexpected redirects from WordPress admin pages
  • Suspicious iframe embedding of admin pages

SIEM Query:

source="wordpress" AND (uri="/wp-admin/admin.php?page=disable-admin-notices-redirects" OR user_agent CONTAINS "CSRF")

🔗 References

📤 Share & Export