Sunday, 5 May 2013

Denial of service attack with CMD to kill websites and servers


Denial of service attacks commonly known as DOS attacks, is used to kill a website by dumping its server with as many requests as possible.now we will go for a simple DOS attack with CMD. If you dont have any basic idea about DOS attacks , 

read my article from here

Ok now we can continue making this DOS attacker

First open your CMD from run ( window + r )

Now the important thing what we want is the ip address of the site that we are going to attack. 

To get the ip of any site just type nslookup in cmd followed by the address of website

for eg: if you want the ip address of google just type 

nslookup www.google.com

this command will give you the ip address 

Ok , now you got the ip address of the site you are going to attack,

then type the following command in your CMD and hit enter 

ping website-IP -l 65500 -n 10000000 -w 0.00001

-n 10000000= the number of DoS attemps.. u can change the value "10000000" with ur desiredvalue u want to attempt attack.

website-IP= Replace the text with the ip address of the site u want to be attacked..

-w 0.00001 = It is the waiting time after one ping attack.

for eg: if the ip address is 112.158.10.2 

just type

ping 112.158.10.2 -l 65500 -n 10000000 -w 0.00001

And thats it you are done . Dont Change or Remove -l, -n and -w in this command.. otherwise it wont work

NOTE:This type of attack can be done only to smallwebsites usually school sites where there is low security.But there are many softwares available to DOS attack on big sites.I will post more on this soon

No comments:

Post a Comment