-
Notifications
You must be signed in to change notification settings - Fork 16
/
main.sh
60 lines (51 loc) · 1.73 KB
/
main.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#Modifications and Distributions are allowed with proper credits.
#colours
#####3#3#
red='\033[1;31m'
rset='\033[0m'
grn='\033[1;32m'
ylo='\033[1;33m'
blue='\033[1;34m'
cyan='\033[1;36m'
pink='\033[1;35m'
clear
filee=/data/data/com.termux/files/usr/etc/tor/torrc
if [[ ! -f "filee" ]]
then
cp -r torrc /data/data/com.termux/files/usr/etc/tor
fi
echo
echo '
____ ____ _______ .__ __. ______ .___ ___.
\ \ / / | ____|| \ | | / __ \ | \/ |
\ \/ / | |__ | \| | | | | | | \ / |
\ / | __| | . ` | | | | | | |\/| |
\ / | |____ | |\ | | `--` | | | | |
\__/ |_______||__| \__| \______/ |__| |__|
' |lolcat
printf "\n"
printf " \e[101m\e[1;77m >> Prompt accepted and script is working. << \e[0m\n"
printf "\n"
printf " \e[100m\e[1;77m >> Source Code: \e[1;77m https://github.com/krishealty/venom-instagram-bruteforce \e[100m\e[1;77m << \e[0m\n"
printf "\n"
echo
printf "\e[1;92m[\e[0m\e[1;77m1\e[0m\e[1;92m]\e[0m\e[1;93m 10M Password Attack\e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m2\e[0m\e[1;92m]\e[0m\e[1;93m Custom Password Attack\e[0m\n"
printf "\e[1;92m[\e[0m\e[1;77m3\e[0m\e[1;92m]\e[0m\e[1;93m Exit\e[0m\n"
read -p $'\n\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Choose an option: \e[0m' option
if [[ $option == 1 || $option == 01 ]]; then
cd /data/data/com.termux/files/home/venom-instagram-bruteforce/10M-pass
bash 10M-pass.sh
elif [[ $option == 2 || $option == 02 ]]; then
cd /data/data/com.termux/files/home/venom-instagram-bruteforce/custom-pass
bash custom-pass.sh
elif [[ $option == 3 || $option == 03 ]]; then
exit 1
else
echo
printf "\e[1;93m [>!<] Invalid Option!\e[0m\n"
sleep 1
echo
fi
exit
esac