CVE-2025-0809
📋 TL;DR
The Link Fixer WordPress plugin has a stored XSS vulnerability that allows unauthenticated attackers to inject malicious scripts into website pages. These scripts execute automatically when users visit compromised pages, potentially stealing credentials or performing unauthorized actions. All WordPress sites using Link Fixer plugin versions up to 3.4 are affected.
💻 Affected Systems
- WordPress Link Fixer plugin
⚠️ 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.
- Review the CVE details at NVD
- Check vendor security advisories for your specific version
- Test if the vulnerability is exploitable in your environment
- Consider updating to the latest version as a precaution
⚠️ Risk & Real-World Impact
Worst Case
Attackers could steal administrator credentials, take over the WordPress site, install backdoors, deface the website, or redirect visitors to malicious sites.
Likely Case
Attackers inject malicious scripts to steal user session cookies, redirect users to phishing pages, or display unwanted advertisements.
If Mitigated
With proper web application firewalls and content security policies, script execution could be blocked, limiting impact to script injection without execution.
🎯 Exploit Status
Attackers can exploit this without authentication by submitting specially crafted broken links that contain malicious scripts.
🛠️ Fix & Mitigation
✅ Official Fix
Patch Version: Version 3.5 or later
Vendor Advisory: https://wordpress.org/plugins/permalink-finder/
Restart Required: No
Instructions:
1. Log into WordPress admin panel. 2. Navigate to Plugins → Installed Plugins. 3. Find 'Link Fixer' plugin. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and delete plugin, then install fresh version 3.5+ from WordPress repository.
🔧 Temporary Workarounds
Disable Link Fixer Plugin
WordPressTemporarily disable the vulnerable plugin until patched version can be installed
wp plugin deactivate link-fixer
Implement Content Security Policy
allAdd CSP headers to prevent script execution from untrusted sources
Add to .htaccess: Header set Content-Security-Policy "default-src 'self'; script-src 'self'"
Add to wp-config.php: header("Content-Security-Policy: default-src 'self'; script-src 'self'");
🧯 If You Can't Patch
- Disable the Link Fixer plugin immediately
- Implement web application firewall rules to block XSS payloads
🔍 How to Verify
Check if Vulnerable:
Check WordPress admin panel → Plugins → Link Fixer → check version number. If version is 3.4 or lower, you are vulnerable.
Check Version:
wp plugin get link-fixer --field=version
Verify Fix Applied:
After updating, verify plugin version shows 3.5 or higher in WordPress admin plugins page.
📡 Detection & Monitoring
Log Indicators:
- Unusual POST requests to broken link submission endpoints
- JavaScript payloads in URL parameters or form submissions
- Multiple failed XSS attempts in web server logs
Network Indicators:
- Suspicious script tags in HTTP POST data
- Unusual outbound connections from WordPress site after page visits
SIEM Query:
source="web_server" AND ("broken-link" OR "link-fixer") AND ("<script>" OR "javascript:" OR "onerror=" OR "onload=")