CVE-2026-11516
Received Received - Intake
Buffer Overflow in UTT HiPER 2610G Firmware

Publication date: 2026-06-08

Last updated on: 2026-06-08

Assigner: VulDB

Description
A vulnerability was found in UTT HiPER 2610G up to 3.0.0-171107. This affects the function strcpy of the file /goform/formNatStaticMap. Performing a manipulation of the argument NatBinds results in buffer overflow. The exploit has been made public and could be used.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-08
Last Modified
2026-06-08
Generated
2026-06-08
AI Q&A
2026-06-08
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
utt hiper_2610g to 3.0.0-171107 (inc)
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-120 The product copies an input buffer to an output buffer without verifying that the size of the input buffer is less than the size of the output buffer.
CWE-119 The product performs operations on a memory buffer, but it reads from or writes to a memory location outside the buffer's intended boundary. This may result in read or write operations on unexpected memory locations that could be linked to other variables, data structures, or internal program data.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Executive Summary

A vulnerability exists in UTT HiPER 2610G devices up to version 3.0.0-171107. It affects the strcpy function in the file /goform/formNatStaticMap. By manipulating the NatBinds argument, an attacker can cause a buffer overflow.

This vulnerability has a public exploit available, meaning attackers can use it to compromise affected devices.

Detection Guidance

This vulnerability can be detected by monitoring for malicious HTTP POST requests targeting the /goform/formNatStaticMap endpoint on UTT HiPER 2610G devices. Specifically, detection involves identifying requests where the NatBinds parameter is excessively long or malformed, as this triggers the buffer overflow.

A practical detection method is to capture and analyze network traffic for POST requests to /goform/formNatStaticMap with unusually large or suspicious NatBinds parameters.

Example commands to detect such attempts might include using network packet capture tools like tcpdump or tshark:

  • tcpdump -i <interface> -A -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' | grep '/goform/formNatStaticMap'
  • tshark -i <interface> -Y 'http.request.method == "POST" and http.request.uri contains "/goform/formNatStaticMap"' -T fields -e http.file_data

These commands help filter HTTP POST requests to the vulnerable endpoint. Further inspection of the NatBinds parameter length or content can indicate exploitation attempts.

Mitigation Strategies

Immediate mitigation steps include restricting access to the vulnerable /goform/formNatStaticMap endpoint to trusted users only, such as by implementing network-level access controls or firewall rules.

Additionally, monitoring and blocking suspicious HTTP POST requests with oversized NatBinds parameters can help prevent exploitation.

If possible, update the firmware of the UTT HiPER 2610G device to a version later than 3.0.0-171107 where this vulnerability is fixed.

Until an official patch is available, consider disabling or limiting the use of the affected functionality if feasible.

Impact Analysis

The buffer overflow caused by this vulnerability can potentially allow an attacker with limited privileges to execute arbitrary code or cause a denial of service on the affected device.

Since the exploit is publicly available, the risk of exploitation is higher, which could lead to unauthorized access or disruption of network services.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-11516. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart