CVE-2025-0809

7.2 HIGH

📋 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

Products:
  • WordPress Link Fixer plugin
Versions: All versions up to and including 3.4
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Vulnerability affects all installations with the plugin enabled. No special configuration required for exploitation.

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

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

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

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

WordPress

Temporarily disable the vulnerable plugin until patched version can be installed

wp plugin deactivate link-fixer

Implement Content Security Policy

all

Add 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=")

🔗 References

📤 Share & Export