CVE-2026-11524
Received Received - Intake
Stack-Based Buffer Overflow in Tenda W20E Web Management Interface

Publication date: 2026-06-08

Last updated on: 2026-06-08

Assigner: VulDB

Description
A vulnerability has been found in Tenda W20E 15.11.0.6. Impacted is the function modifyWifiFilterRules of the file /goform/modifyWifiFilterRules of the component Web Management Interface. The manipulation of the argument wifiFilterListRemark leads to stack-based buffer overflow. The attack may be initiated remotely. The exploit has been disclosed to the public and may be used.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-08
Last Modified
2026-06-08
Generated
2026-06-09
AI Q&A
2026-06-08
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
tenda w20e 15.11.0.6
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

This vulnerability is a stack-based buffer overflow found in the Tenda W20E router's web management interface, specifically in the modifyWifiFilterRules function accessed via the /goform/modifyWifiFilterRules endpoint.

It occurs when a maliciously crafted, overly long string is sent in the wifiFilterListRemark parameter, which is improperly handled by the sprintf function, leading to memory corruption.

This flaw allows an attacker to remotely trigger the overflow by sending a specially crafted HTTP POST request, potentially causing the web service to crash or enabling remote code execution.

Mitigation Strategies

Immediate mitigation steps include restricting access to the router's web management interface to trusted networks or IP addresses to prevent remote exploitation.

Additionally, monitoring and filtering incoming HTTP POST requests to the /goform/modifyWifiFilterRules endpoint can help detect and block malicious attempts.

If possible, disable remote management features temporarily until a patch or firmware update addressing this vulnerability is applied.

Applying any available firmware updates from the vendor that fix this vulnerability is the most effective long-term mitigation.

Compliance Impact

The vulnerability in the Tenda W20E router's web management interface allows remote attackers to cause a stack-based buffer overflow, potentially leading to Denial of Service or Remote Code Execution.

Such a vulnerability could impact compliance with standards like GDPR or HIPAA by exposing the device to unauthorized access or disruption, which may lead to unauthorized disclosure, alteration, or loss of sensitive data.

However, the provided information does not explicitly detail the direct effects on compliance with these regulations.

Impact Analysis

Exploitation of this vulnerability can lead to a Denial of Service (DoS) by crashing the router's web management interface, making the device unavailable or unmanageable.

More severely, it may allow an attacker to execute arbitrary code remotely on the affected device, potentially gaining control over the router.

Detection Guidance

This vulnerability can be detected by monitoring HTTP POST requests sent to the /goform/modifyWifiFilterRules endpoint on the Tenda W20E router's web management interface.

Specifically, detection involves checking for unusually long or malformed values in the wifiFilterListRemark parameter, as exploitation involves sending an overly long string (e.g., a payload of 1000 'A' characters) to trigger the stack-based buffer overflow.

A practical approach is to capture and analyze network traffic targeting the router's web interface, looking for POST requests to /goform/modifyWifiFilterRules with suspiciously large wifiFilterListRemark values.

Example commands to detect such attempts might include using tools like tcpdump or tshark to filter HTTP POST requests to the vulnerable endpoint, for instance:

  • tcpdump -i <interface> -A -s 0 'tcp port 80 and (((ip dst <router_ip>) and (tcp[((tcp[12:1] & 0xf0) >> 2):4] = 0x504f5354)))'
  • tshark -i <interface> -Y 'http.request.method == "POST" and http.request.uri contains "/goform/modifyWifiFilterRules"' -T fields -e http.file_data

These commands help capture POST requests to the vulnerable endpoint, allowing inspection of the wifiFilterListRemark parameter for suspiciously long or malformed input.

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