Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
hackerxphantom
GitHub Repository: hackerxphantom/xinsta_brute
Path: blob/Master/xinsta_brute.sh
3 views
1
#bin/bash
2
#Coded By HACKER XPHANTOM(XPH4N70M)
3
#colours
4
#####3#3#
5
red='\033[1;31m'
6
rset='\033[0m'
7
grn='\033[1;32m'
8
ylo='\033[1;33m'
9
blue='\033[1;34m'
10
cyan='\033[1;36m'
11
pink='\033[1;35m'
12
#coding section starts :)
13
14
clear
15
filee=/data/data/com.termux/files/usr/etc/tor/torrc
16
if [[ ! -f "filee" ]]
17
then
18
cp -r torrc /data/data/com.termux/files/usr/etc/tor
19
fi
20
echo
21
echo '
22
23
__ ___ _ _ _
24
\ \/ (_)_ __ ___| |_ __ _ | |__ _ __ _ _| |_ ___
25
\ /| | |_ \/ __| __/ _| | | |_ \| |__| | | | __/ _ \
26
/ \| | | | \__ \ || (_| | | |_) | | | |_| | || __/
27
/_/\_\_|_| |_|___/\__\__,_|___|_.__/|_| \__,_|\__\___|
28
|_____| Hacker X Phantom
29
' |lolcat
30
printf "\n"
31
printf " \e[101m\e[1;77m >> Script By HACKER X PHANTOM(XPH4N70M) << \e[0m\n"
32
printf "\n"
33
printf " \e[100m\e[1;77m >> JOIN US NOW : \e[1;77m https://bit.ly/3PV3S3r \e[100m\e[1;77m << \e[0m\n"
34
printf "\n"
35
echo
36
37
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"
38
printf "\e[1;92m[\e[0m\e[1;77m2\e[0m\e[1;92m]\e[0m\e[1;93m Custom Password Attack[Recommended]\e[0m\n"
39
printf "\e[1;92m[\e[0m\e[1;77m3\e[0m\e[1;92m]\e[0m\e[1;93m Exit\e[0m\n"
40
read -p $'\n\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Choose an option: \e[0m' option
41
42
43
if [[ $option == 1 || $option == 01 ]]; then
44
cd /data/data/com.termux/files/home/xinsta_brute/10M-pass
45
bash 10M-pass.sh
46
elif [[ $option == 2 || $option == 02 ]]; then
47
cd /data/data/com.termux/files/home/xinsta_brute/custom-pass
48
bash custom-pass.sh
49
elif [[ $option == 3 || $option == 03 ]]; then
50
exit 1
51
else
52
echo
53
printf "\e[1;93m [>!<] Invalid Option!\e[0m\n"
54
sleep 1
55
echo
56
fi
57
exit
58
esac
59
60