CVE-2026-4566
Remote Stack-Based Buffer Overflow in Belkin F9K1122 formWISP5G
Publication date: 2026-03-23
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 |
|---|---|---|
| belkin | f9k1122_firmware | 1.00.33 |
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': 'The CVE-2026-4566 vulnerability affects the Belkin F9K1122 router, specifically firmware version 1.00.33. It is a stack-based buffer overflow in the web interface\'s formWISP5G function. This function processes a user-supplied parameter called "webpage" and copies it into a fixed-size buffer without checking its length. This lack of bounds checking allows an attacker to overflow the buffer by sending a specially crafted HTTP POST request to the /goform/formWISP5G endpoint.'}, {'type': 'paragraph', 'content': 'Exploiting this vulnerability can lead to denial of service or potentially allow remote code execution on the device.'}] [1]
How can this vulnerability impact me? :
This vulnerability can impact you by allowing an attacker to remotely execute arbitrary code or cause a denial of service on your Belkin F9K1122 router running firmware version 1.00.33. This could lead to loss of control over the device, disruption of network services, or unauthorized access to your network.
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 sent to the /goform/formWISP5G endpoint on the Belkin F9K1122 router firmware version 1.00.33.'}, {'type': 'paragraph', 'content': 'Specifically, detection involves checking for unusually large or malformed payloads in the "webpage" parameter of these POST requests, which may indicate attempts to trigger the stack-based buffer overflow.'}, {'type': 'paragraph', 'content': 'A suggested command to detect such attempts using network traffic analysis tools like tcpdump or tshark could be:'}, {'type': 'list_item', 'content': "tcpdump -A -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' | grep '/goform/formWISP5G'"}, {'type': 'paragraph', 'content': 'Alternatively, using tshark to filter HTTP POST requests to the vulnerable endpoint:'}, {'type': 'list_item', 'content': 'tshark -Y \'http.request.method == "POST" and http.request.uri contains "/goform/formWISP5G"\' -T fields -e http.file_data'}, {'type': 'paragraph', 'content': 'Inspect the captured data for large or suspicious values in the "webpage" parameter that could indicate exploitation attempts.'}] [1]
What immediate steps should I take to mitigate this vulnerability?
[{'type': 'paragraph', 'content': "Immediate mitigation steps include restricting access to the vulnerable router's web interface, especially the /goform/formWISP5G endpoint, to trusted networks only."}, {'type': 'paragraph', 'content': 'Implement network-level controls such as firewall rules to block incoming HTTP POST requests targeting /goform/formWISP5G from untrusted sources.'}, {'type': 'paragraph', 'content': 'Monitor network traffic for suspicious POST requests with large or malformed "webpage" parameters and block or alert on such activity.'}, {'type': 'paragraph', 'content': 'Since the vendor has not responded with a patch, consider isolating or replacing the affected device if possible to prevent exploitation.'}] [1]