I have currently have a code that uses multi-threading and urllib2 to fuzz a web server (GET and POST) but the problem is that every thread keep waiting for the response of the request.
import urllib,urllib2
from threading import Thread
def open_website(opener):
while True:
formdata ={"udsan":"fdsf",
"width":"1200",
"height":"1920",
"param":"32",
"rememberUn":"on"}
data_encoded = urllib.urlencode(formdata)
response = opener.open("https://example.com/", data_encoded)
opener = urllib2.build_opener()
opener.addheaders=[("Connection"," keep-alive"),
("Cache-Control"," max-age=0"),
("Accept"," text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8"),
("Accept-Language"," en-US,en;q=0.8,es;q=0.6")]
THREADS=40
for i in range(THREADS):
t=Thread(target=open_website, args=[opener])
t.start()
Ho can I do so I just send the request and the thread forgets about the response and do the next request?
The faster the better.
Thank you.