CVE-2026-5628
Received Received - Intake
Stack-Based Buffer Overflow in Belkin F9K1015 Setting Handler

Publication date: 2026-04-06

Last updated on: 2026-04-30

Assigner: VulDB

Description
A security vulnerability has been detected in Belkin F9K1015 1.00.10. Impacted is the function formSetSystemSettings of the file /goform/formSetSystemSettings of the component Setting Handler. The manipulation of the argument webpage leads to stack-based buffer overflow. Remote exploitation of the attack is possible. The exploit has been disclosed publicly and may be used. The vendor was contacted early about this disclosure but did not respond in any way.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-04-06
Last Modified
2026-04-30
Generated
2026-06-16
AI Q&A
2026-04-06
EPSS Evaluated
2026-06-14
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
belkin f9k1015_firmware 1.00.10
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
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 Quick Actions
Instant insights powered by AI
Executive Summary

The vulnerability in Belkin F9K1015 firmware version 1.00.10 is a stack-based buffer overflow in the web interface, specifically in the function formSetSystemSettings.

This function processes a user-supplied parameter named "webpage," which is assigned to a variable and copied using the unsafe strcpy function without any length validation.

Because there is no boundary checking, an attacker can send a specially crafted HTTP POST request with an excessively long "webpage" parameter to overflow the buffer on the stack.

This overflow can lead to denial of service (DoS) or remote code execution (RCE) on the device.

Impact Analysis

Exploitation of this vulnerability can allow an attacker to remotely execute arbitrary code on the affected Belkin F9K1015 device.

This can lead to a denial of service (DoS), causing the device to crash or become unresponsive.

Remote code execution could allow attackers to take control of the device, potentially compromising network security and privacy.

Detection Guidance

This vulnerability can be detected by monitoring for specially crafted HTTP POST requests sent to the endpoint /goform/formSetSystemSettings that contain an excessively long "webpage" parameter.

A detection method involves capturing network traffic and filtering for POST requests to /goform/formSetSystemSettings with unusually large payloads in the "webpage" parameter.

  • Use a network packet capture tool like tcpdump or Wireshark to capture HTTP POST requests.
  • 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)) > 100)'
  • Use grep or similar tools to search captured traffic for POST requests to /goform/formSetSystemSettings containing the "webpage" parameter.
  • Example grep command on a captured file: grep -a 'POST /goform/formSetSystemSettings' capture.pcap | grep 'webpage='
Mitigation Strategies

Immediate mitigation steps include restricting access to the vulnerable endpoint and monitoring for exploit attempts.

  • Block or restrict external network access to the /goform/formSetSystemSettings endpoint on the Belkin F9K1015 device.
  • Implement network-level filtering or firewall rules to prevent malicious HTTP POST requests with large payloads targeting the "webpage" parameter.
  • Monitor device logs and network traffic for signs of exploitation attempts.

Since the vendor has not responded with a patch, consider isolating the device from untrusted networks until a fix is available.

Compliance Impact

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