import httplib
class Server:
#server class
def __init__(self, host):
self.host = host
def fetch(self, path):
http = httplib.HTTPConnection(self.host)
http.putrequest("GET", path)
r = http.getresponse()
print str(r.status) + " : " + r.reason
server = Server("www.python.org")
fp=open("phpvuln.txt")
x=fp.readlines();
for y in x:
server.fetch("/" + y);
In the above code the phpvuln.txt file contains a list of directories.
Why the above code throws ResponseNotReady exception ???
--
http://mail.python.org/mailman/listinfo/python-list