CVE-2026-36770
Deferred Deferred - Pending Action
Stack Overflow in Tenda US_W3V1.0BR Router

Publication date: 2026-06-09

Last updated on: 2026-06-09

Assigner: MITRE

Description
Shenzhen Tenda Technology Co., Ltd Tenda US_W3V1.0BR v1.0.0.3 was discovered to contain a stack overflow in the Go parameter of the ask_to_reboot function. This vulnerability allows attackers to cause a Denial of Service (DoS) via a crafted input.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-09
Last Modified
2026-06-09
Generated
2026-06-10
AI Q&A
2026-06-09
EPSS Evaluated
N/A
NVD
Affected Vendors & Products
Showing 2 associated CPEs
Vendor Product Version / Range
tenda us_w3v1.0br 1.0.0.3
tenda w3 to 1.0.0.3 (inc)
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-121 A stack-based buffer overflow condition is a condition where the buffer being overwritten is allocated on the stack (i.e., is a local variable or, rarely, a parameter to a function).
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Executive Summary

CVE-2026-36770 is a stack-based buffer overflow vulnerability found in the Tenda W3 Wireless Router firmware version 1.0.0.3. It occurs in the ask_to_reboot function, which handles a user-controlled HTTP parameter named "GO". This parameter is unsafely concatenated into a fixed-size stack buffer using the sprintf function without proper bounds checking. When an attacker sends a crafted HTTP request with an excessively long "GO" parameter, it causes a stack overflow.

This overflow can crash the httpd service or reboot the device, resulting in a Denial of Service (DoS). Depending on the device's architecture and security protections like stack canaries, NX, and ASLR, it may also allow arbitrary code execution.

Impact Analysis

This vulnerability can impact you by causing a Denial of Service (DoS) on the affected Tenda W3 Wireless Router. An attacker can exploit the stack overflow to crash the router's httpd service or force the device to reboot, disrupting network connectivity and availability.

In some cases, if the device's security protections are insufficient, the attacker might also execute arbitrary code, potentially leading to further compromise of the device.

Detection Guidance

This vulnerability can be detected by monitoring for HTTP requests sent to the ask_to_reboot CGI handler that contain an unusually long or crafted "GO" parameter. Such requests may cause the device's httpd service to crash or the device to reboot unexpectedly.

A practical detection method is to capture and analyze HTTP traffic targeting the Tenda W3 Wireless Router's configuration interface, specifically looking for requests to the ask_to_reboot endpoint with the "GO" parameter.

  • Use a network packet capture tool like tcpdump or Wireshark to filter HTTP requests to the router's IP on the ask_to_reboot CGI path.
  • Example tcpdump command to capture suspicious requests: tcpdump -i <interface> -A 'tcp port 80 and (((ip dst <router_ip>) and (tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x474f3d))' where 0x474f3d corresponds to 'GO=' in ASCII.
  • Alternatively, use curl or similar tools to test the endpoint by sending a crafted HTTP request with a long "GO" parameter and observe if the device crashes or reboots.
Mitigation Strategies

Immediate mitigation steps include restricting access to the ask_to_reboot CGI handler to trusted users only, such as by limiting access to the router's management interface via firewall rules or network segmentation.

Additionally, monitor the device for unexpected reboots or crashes that may indicate exploitation attempts.

If possible, disable or restrict the functionality of the ask_to_reboot endpoint until a firmware update addressing the vulnerability is available.

Contact the vendor for firmware updates or patches that fix the stack overflow vulnerability in the ask_to_reboot function.

Compliance Impact

The provided information does not specify any direct impact of the CVE-2026-36770 vulnerability on compliance with common standards and regulations such as GDPR or HIPAA.

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