CVE-2025-25148

7.1 HIGH

📋 TL;DR

This CSRF vulnerability in the WordPress Read More Copy Link plugin allows attackers to trick authenticated administrators into performing actions that inject malicious scripts. When exploited, it leads to stored cross-site scripting (XSS), affecting all WordPress sites using vulnerable plugin versions. The vulnerability requires an authenticated admin to be tricked into visiting a malicious page.

💻 Affected Systems

Products:
  • WordPress Read More Copy Link plugin
Versions: n/a through 1.0.2
Operating Systems: All operating systems running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations with the vulnerable plugin version 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

Attackers could inject persistent malicious scripts that steal admin credentials, deface websites, redirect visitors to malicious sites, or install backdoors on the WordPress installation.

🟠

Likely Case

Attackers would inject scripts to steal admin session cookies or credentials, potentially gaining full control over the WordPress site.

🟢

If Mitigated

With proper CSRF protections and content security policies, the attack would fail or have limited impact.

🌐 Internet-Facing: HIGH
🏢 Internal Only: LOW

🎯 Exploit Status

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

Exploitation requires tricking an authenticated admin user to click a malicious link or visit a crafted page. No public exploit code is known at this time.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 1.0.2

Vendor Advisory: https://patchstack.com/database/wordpress/plugin/read-more-copy-link/vulnerability/wordpress-read-more-copy-link-plugin-1-0-2-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 'Read More Copy Link' plugin. 4. Click 'Update Now' if available. 5. If no update is available, deactivate and delete the plugin, then install the latest version from WordPress repository.

🔧 Temporary Workarounds

Implement CSRF Protection

WordPress

Add CSRF tokens to all plugin forms and AJAX requests

Requires custom code modification: Add wp_nonce_field() to forms and check_ajax_referer() to AJAX handlers

Content Security Policy

Apache

Implement CSP headers to prevent script execution from unauthorized sources

Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self' 'unsafe-inline' https://trusted.cdn.com;"

🧯 If You Can't Patch

  • Deactivate and remove the Read More Copy Link plugin immediately
  • Implement web application firewall rules to block suspicious POST requests to the plugin's endpoints

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Installed Plugins. If 'Read More Copy Link' version is 1.0.2 or earlier, you are vulnerable.

Check Version:

wp plugin list --name='read-more-copy-link' --field=version

Verify Fix Applied:

After updating, verify the plugin version shows higher than 1.0.2 in WordPress admin plugins page.

📡 Detection & Monitoring

Log Indicators:

  • Unusual POST requests to /wp-admin/admin-ajax.php with plugin-specific actions
  • Multiple failed nonce verification attempts in WordPress debug logs

Network Indicators:

  • Suspicious referer headers in POST requests to WordPress admin endpoints
  • Unexpected iframe or script tags being inserted into database via plugin functions

SIEM Query:

source="wordpress.log" AND ("admin-ajax.php" AND "action=read_more_copy_link") AND status=200

🔗 References

📤 Share & Export