CVE-2026-11503
Deferred Deferred - Pending Action
Stack-Based Buffer Overflow in Tenda CX12L Wi-Fi Configuration

Publication date: 2026-06-08

Last updated on: 2026-06-08

Assigner: VulDB

Description
A security vulnerability has been detected in Tenda CX12L 16.03.53.12. The affected element is the function form_fast_setting_wifi_set of the file /goform/fast_setting_wifi_set of the component Wi-Fi Configuration Endpoint. Such manipulation of the argument ssid leads to stack-based buffer overflow. The attack can be launched remotely. The exploit has been disclosed publicly and may 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
tenda cx12l 16.03.53.12
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).
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

CVE-2026-11503 is a stack-based buffer overflow vulnerability found in the Tenda CX12L router firmware version 16.03.53.12. It exists in the function form_fast_setting_wifi_set within the /goform/fast_setting_wifi_set endpoint, which handles Wi-Fi configuration.

The vulnerability arises because the function processes the SSID parameter into a fixed-size 64-byte buffer without proper length validation. Specifically, it uses the unsafe sprintf function to append "_5G" to the SSID, which can overflow the buffer if the SSID is too long.

This overflow can corrupt the stack, potentially causing the httpd process to crash (Denial of Service) or allowing an attacker to execute arbitrary code with root privileges by overwriting the return address.

The root cause is the lack of bounds checking on the SSID length during 5GHz SSID generation.

Impact Analysis

This vulnerability can have serious impacts including:

  • Denial of Service (DoS) by crashing the router's httpd process, disrupting network connectivity.
  • Remote Code Execution (RCE) with root privileges, allowing an attacker to take full control of the device remotely.
  • Potential compromise of network security and privacy due to unauthorized access.
Detection Guidance

This vulnerability can be detected by monitoring requests to the `/goform/fast_setting_wifi_set` endpoint on the Tenda CX12L router firmware version V16.03.53.12, specifically looking for unusually long SSID parameters that exceed the expected buffer size.

A practical detection method is to capture HTTP POST requests to this endpoint and analyze the SSID parameter length. An overly long SSID (longer than 61 characters before appending "_5G") may indicate an attempt to exploit the buffer overflow.

Commands to detect such attempts could include using network traffic capture tools like tcpdump or Wireshark to filter HTTP POST requests to `/goform/fast_setting_wifi_set` and then inspecting the SSID parameter length.

  • Example tcpdump command to capture relevant traffic: tcpdump -i <interface> -A 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)'
  • Use grep or similar tools to extract and check the SSID parameter length from captured HTTP POST data.
Mitigation Strategies

Immediate mitigation steps include restricting or blocking access to the vulnerable `/goform/fast_setting_wifi_set` endpoint from untrusted networks to prevent remote exploitation.

If possible, update the router firmware to a version where the vulnerability is fixed by replacing unsafe functions like `sprintf` with safer alternatives such as `snprintf` and implementing input validation to limit SSID length.

As a temporary workaround, monitor and filter incoming requests to ensure SSID parameters do not exceed safe lengths.

Compliance Impact

The provided information does not specify how the CVE-2026-11503 vulnerability affects 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-11503. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart