CVE-2026-2930
Remote Stack-Based Buffer Overflow in Tenda A18 Httpd Service
Publication date: 2026-02-22
Last updated on: 2026-04-29
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| tenda | a18_firmware | 15.13.07.13 |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| 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. |
| 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 Powered Q&A
Can you explain this vulnerability to me?
[{'type': 'paragraph', 'content': 'CVE-2026-2930 is a stack-based buffer overflow vulnerability found in the Tenda A18 router firmware version 15.13.07.13. It exists in the Httpd Service component, specifically in the function webCgiGetUploadFile within the /cgi-bin/UploadCfg interface.'}, {'type': 'paragraph', 'content': "The vulnerability occurs because the 'boundary' parameter from a multipart/form-data POST request is not properly validated for length before being copied into a fixed-size stack buffer. This improper handling allows an attacker to overflow the buffer on the stack."}, {'type': 'paragraph', 'content': 'Exploiting this flaw can lead to remote code execution or cause a denial of service (DoS) condition on the device. The attack can be performed remotely without requiring local access or physical interaction.'}] [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can have serious impacts including remote code execution, which allows an attacker to run arbitrary code on the affected device.
It can also cause a denial of service (DoS), making the router unavailable or unstable.
Because the vulnerability affects confidentiality, integrity, and availability of the device, it can compromise the security and proper functioning of your network.
There are no known mitigations or patches available, so the recommended action is to replace the affected product to avoid risk.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
I don't know
How can this vulnerability be detected on my network or system? Can you suggest some commands?
[{'type': 'paragraph', 'content': "This vulnerability can be detected by monitoring for suspicious HTTP POST requests targeting the '/cgi-bin/UploadCfg' endpoint on Tenda A18 routers running firmware version 15.13.07.13. Specifically, look for requests containing a multipart/form-data POST with a specially crafted 'boundary' parameter that exceeds normal length or contains unusual characters."}, {'type': 'paragraph', 'content': "Network intrusion detection systems (NIDS) or web application firewalls (WAF) can be configured to alert on unusually long or malformed 'boundary' parameters in HTTP POST requests to this endpoint."}, {'type': 'paragraph', 'content': "Example commands to detect such activity might include using tools like tcpdump or tshark to capture and filter HTTP POST requests to '/cgi-bin/UploadCfg':"}, {'type': 'list_item', 'content': "tcpdump -i <interface> -A -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' | grep '/cgi-bin/UploadCfg'"}, {'type': 'list_item', 'content': 'tshark -i <interface> -Y \'http.request.method == "POST" and http.request.uri contains "/cgi-bin/UploadCfg"\' -T fields -e http.file_data'}, {'type': 'paragraph', 'content': "Additionally, inspecting logs for abnormal POST requests with large or malformed 'boundary' strings can help identify exploitation attempts."}] [1, 2, 3]
What immediate steps should I take to mitigate this vulnerability?
[{'type': 'paragraph', 'content': 'Currently, there are no known vendor-provided patches or fixes available for this vulnerability in the Tenda A18 router firmware version 15.13.07.13.'}, {'type': 'paragraph', 'content': 'Immediate mitigation steps include:'}, {'type': 'list_item', 'content': "Disabling remote access to the router's web management interface to prevent exploitation from external networks."}, {'type': 'list_item', 'content': "Restricting access to the '/cgi-bin/UploadCfg' endpoint via firewall rules or access control lists to trusted internal networks only."}, {'type': 'list_item', 'content': 'Monitoring network traffic for suspicious POST requests targeting the vulnerable endpoint and blocking malicious IP addresses.'}, {'type': 'list_item', 'content': 'Considering replacing the affected device with a different model or vendor that is not vulnerable to this issue.'}, {'type': 'paragraph', 'content': 'These steps help reduce the risk of exploitation until an official patch or firmware update is released.'}] [2]