-
Notifications
You must be signed in to change notification settings - Fork 173
/
install.sh
74 lines (68 loc) · 2.31 KB
/
install.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/bash
clear
BLACK='\e[30m'
RED='\e[31m'
GREEN='\e[32m'
YELLOW='\e[33m'
BLUE='\e[34m'
PURPLE='\e[35m'
CYAN='\e[36m'
WHITE='\e[37m'
NC='\e[0m'
echo ""
echo -e "${RED} _ _ _ _____ "
echo " | | | | | | | __ \ "
echo " | |__| | __ _ ___| | _____ _ __ | |__) | __ ___ "
echo " | __ |/ _. |/ __| |/ / _ \ |__| | ___/ |__/ _ \ "
echo " | | | | (_| | (__| ( _/ | | | | | | (_) | "
echo " |_| |_|\__,_|\___|_|\_\___|_| |_| |_| \___/ "
echo -e "${RED} ~ Tools for Hacking by Technical Dada ${NC}"
echo ""
echo -e "${YELLOW} http://technicaldada.in | https://facebook.com/technicaldada.in | https://github.com/technicaldada ${NC} "
echo ""
echo "---------------------------------------------------------------------------------------"
echo ""
echo -e "${RED}[!] This Tool Must Run As ROOT [!]${NC}"
echo ""
echo -e "${CYAN}[>] Press ENTER to Install HackerPro, CTRL+C to Abort.${NC}"
read INPUT
echo ""
if [ "$PREFIX" = "/data/data/com.termux/files/usr" ]; then
INSTALL_DIR="$PREFIX/usr/share/doc/hackerpro"
BIN_DIR="$PREFIX/usr/bin/"
pkg install -y git python2
else
INSTALL_DIR="/usr/share/doc/hackerpro"
BIN_DIR="/usr/bin/"
fi
echo "[✔] Checking directories...";
if [ -d "$INSTALL_DIR" ]; then
echo "[!] A Directory hackerpro Was Found.. Do You Want To Replace It ? [y/n]:" ;
read mama
if [ "$mama" = "y" ]; then
rm -R "$INSTALL_DIR"
else
exit
fi
fi
echo "[✔] Installing ...";
echo "";
git clone https://github.com/technicaldada/hackerpro.git "$INSTALL_DIR";
echo "#!/bin/bash
python $INSTALL_DIR/hackerpro.py" '${1+"$@"}' > hackerpro;
chmod +x hackerpro;
sudo cp hackerpro /usr/bin/;
rm hackerpro;
if [ -d "$INSTALL_DIR" ] ;
then
echo "";
echo "[✔] Successfuly Installed !!! [✔]";
echo "";
echo "[✔]========================================================================[✔]";
echo "[✔] ✔✔✔ All Is Done!! you can execute tool by typing hackerpro !! ✔✔✔ [✔]";
echo "[✔]========================================================================[✔]";
echo "";
else
echo "[✘] Installation Failed !!! [✘]";
exit
fi