#!/bin/bash
# TBH Zone-H Mass Poster
#c0ded by Red V!per
notifier=$1
sites=$2
url="http://www.zone-h.org/notify/single"
banner()
{
echo " "
echo -e '\E[32m'"_________ ______ "; tput sgr0
echo -e '\E[32m'"\__ __/( ___ \ |\ /| "; tput sgr0
echo -e '\E[32m'" ) ( | ( ) )| ) ( | "; tput sgr0
echo -e '\E[32m'" | | | (__/ / | (___) | "; tput sgr0
echo -e '\E[32m'" | | | __ ( | ___ | "; tput sgr0
echo -e '\E[32m'" | | | ( \ \ | ( ) | "; tput sgr0
echo -e '\E[32m'" | | | )___) )| ) ( | "; tput sgr0
echo -e '\E[32m'" )_( |/ \___/ |/ \| "; tput sgr0
echo " "
}
Usage()
{
echo ""
echo "# ****************************************************************************************************#"
echo "# Usage : TBH Zone-H Mass Poster <defacer> <sites.lst> *#"
echo "# Help : -h && --help : Show This Menu *#"
echo "# RunScript : Give Permision to script and run it !! *#"
echo "# Example : ./script.sh www.example.com ye_bande_khoda sites.lst *#"
echo "# ****************************************************************************************************#"
echo ""
exit
}
Check_Arguments()
{
if [ -z "$notifier" ] || [ "$notifier" == "-h" ] || [ "$notifier" == "--help" ]; then
Usage;
exit
fi
}
Mass_Post()
{
for targets in `cat $sites`
do
curl --user-agent "Mozilla/5.0" --silent --data "defacer=$notifier&domain1=$targets&hackmode=1&reason=1" ${url} &
sleep 2
done
}
Main()
{
banner;
Check_Arguments;
Mass_Post;
}
Main;
Dowloadn : http://www.mediafire.com/download/j10du919tq25f2d/TBH+Zone-H+Mass+Poster.zip
No comments:
Post a Comment