CVE-2025-23895

7.1 HIGH

📋 TL;DR

This CVE describes a Cross-Site Request Forgery (CSRF) vulnerability in the WordPress Add RSS plugin that can lead to Stored Cross-Site Scripting (XSS). Attackers can trick authenticated administrators into executing malicious actions, potentially injecting persistent scripts into vulnerable sites. WordPress sites using Add RSS plugin versions up to 1.5 are affected.

💻 Affected Systems

Products:
  • WordPress Add RSS plugin
Versions: n/a through 1.5
Operating Systems: All
Default Config Vulnerable: ⚠️ Yes
Notes: Requires plugin to be installed and activated on WordPress sites. Attack requires tricking authenticated users with administrative privileges.

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

Complete site takeover through privilege escalation, data theft, or malware distribution to visitors via persistent malicious scripts injected into the site.

🟠

Likely Case

Unauthorized content modification, defacement, or injection of malicious scripts that affect site visitors, potentially leading to credential theft or malware distribution.

🟢

If Mitigated

Limited impact with proper CSRF protections and content security policies in place, though the vulnerability still exists in the codebase.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

Exploitation requires social engineering to trick authenticated administrators into clicking malicious links while logged in.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Version after 1.5

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/add-rss/vulnerability/wordpress-add-rss-plugin-1-5-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. Locate 'Add RSS' plugin
4. Click 'Update Now' if update available
5. If no update available, deactivate and remove the plugin
6. Consider alternative RSS feed plugins

🔧 Temporary Workarounds

Implement CSRF Protection

all

Add CSRF tokens to all form submissions and state-changing requests in the plugin

Content Security Policy

all

Implement strict CSP headers to mitigate XSS impact

🧯 If You Can't Patch

  • Deactivate and remove the Add RSS plugin immediately
  • Implement web application firewall rules to block suspicious requests to the plugin endpoints

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for Add RSS plugin version 1.5 or earlier

Check Version:

wp plugin list --name=add-rss --field=version

Verify Fix Applied:

Verify plugin version is greater than 1.5 or plugin is completely removed

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to Add RSS plugin endpoints
  • Multiple failed CSRF token validations
  • Unexpected plugin file modifications

Network Indicators:

  • Suspicious referrer headers in requests to admin-ajax.php or plugin endpoints
  • Unexpected content-type changes in responses

SIEM Query:

source="wordpress" AND (plugin="add-rss" OR uri="/wp-content/plugins/add-rss/") AND (status=403 OR method=POST)

🔗 References

📤 Share & Export