CVE-2025-67465

8.8 HIGH

📋 TL;DR

This CSRF vulnerability in QuantumCloud Simple Link Directory WordPress plugin allows attackers to trick authenticated administrators into performing unintended actions. It affects all WordPress sites running Simple Link Directory version 8.8.3 or earlier. Attackers could modify plugin settings or add malicious links without the admin's knowledge.

💻 Affected Systems

Products:
  • QuantumCloud Simple Link Directory WordPress Plugin
Versions: All versions up to and including 8.8.3
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: Requires WordPress admin to be logged in and visit a malicious page while authenticated.

⚠️ 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 completely compromise the WordPress site by tricking an admin into changing critical settings, installing malicious plugins, or granting attacker access.

🟠

Likely Case

Attackers modify link directory settings, add spam/malicious links, or change plugin configurations to serve malicious content.

🟢

If Mitigated

With proper CSRF protections and admin awareness, impact is limited to unsuccessful attack attempts.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: LIKELY
Unauthenticated Exploit: ✅ No
Complexity: LOW

CSRF attacks are well-understood and easy to weaponize. Requires social engineering to trick authenticated admins.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: 8.8.4 or later

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/simple-link-directory/vulnerability/wordpress-simple-link-directory-plugin-8-8-3-cross-site-request-forgery-csrf-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Go to Plugins → Installed Plugins. 3. Find 'Simple Link Directory'. 4. Click 'Update Now' if available. 5. Alternatively, download latest version from WordPress repository and manually update.

🔧 Temporary Workarounds

Implement CSRF Protection Headers

all

Add security headers to WordPress to help prevent CSRF attacks

Add to .htaccess: Header set X-Frame-Options "SAMEORIGIN"
Add to .htaccess: Header set Content-Security-Policy "frame-ancestors 'self'"

Use WordPress Security Plugin

all

Install security plugin with CSRF protection features

🧯 If You Can't Patch

  • Disable Simple Link Directory plugin until patched
  • Implement strict access controls and educate admins about CSRF risks

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin → Plugins → Simple Link Directory → Version. If version is 8.8.3 or lower, you are vulnerable.

Check Version:

wp plugin list --name=simple-link-directory --field=version

Verify Fix Applied:

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

📡 Detection & Monitoring

Log Indicators:

  • Unexpected plugin setting changes
  • Multiple failed CSRF token validations
  • Admin actions from unusual IPs

Network Indicators:

  • POST requests to wp-admin/admin-ajax.php without proper referrer headers
  • Cross-origin requests to plugin endpoints

SIEM Query:

source="wordpress.log" AND ("simple-link-directory" OR "admin-ajax.php") AND status=200 AND referrer NOT CONTAINS "yourdomain.com"

🔗 References

📤 Share & Export