-
Notifications
You must be signed in to change notification settings - Fork 28
/
install.sh
117 lines (107 loc) · 2.63 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
#!/bin/bash
# ---------------------------------------------------
# Ghost Framework
# ---------------------------------------------------
# Copyright (C) <2019-2020> <Entynetproject>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
RS="\033[0;31m"
YS="\033[1;33m"
CE="\033[0m"
printf '\033]2;install.sh\a'
#blue start
BS="\033[1;34m"
#color end
CE="\033[0m"
C="\033[0m"
#red start
RS="\033[0;31m"
#green start
GN="\033[0;32m"
#white start
WHS="\033[0m"
if [[ $EUID -ne 0 ]]
then
sleep 1
echo -e ""$GN"["$RS"+"$GN"]"$CE" This script must be run as root!"$C"" 1>&2
sleep 1
exit
fi
if [[ -d ~/ghost ]]
then
sleep 0
else
cd ~
{
git clone https://github.com/FazalMahmood/ghost.git
} &> /dev/null
fi
sleep 0.5
clear
sleep 0.5
cd ~/ghost
echo
cat banner/banner.txt
echo
sleep 1
echo -e ""$GN"["$RS"+"$GN"]"$CE" Installing dependencies..."$C""
sleep 1
{
pkg update
pkg -y install git
pkg -y install python
pkg -y install android-tools
apt-get update
apt-get -y install git
apt-get -y install python3
apt-get -y install adb
apk update
apk add git
apk add python3
apk add android-tools
pacman -Sy
pacman -S --noconfirm git
pacman -S --noconfirm python3
pacman -S --noconfirm android-tools
zypper refresh
zypper install -y git
zypper install -y python3
zypper install -y android-tools
yum -y install git
yum -y install python3
yum -y install android-tools
dnf -y install git
dnf -y install python3
dnf -y install android-tools
eopkg update-repo
eopkg -y install git
eopkg -y install python3
eopkg -y install android-tools
xbps-install -S
xbps-install -y git
xbps-install -y python3
xbps-install -y android-tools
} &> /dev/null
{
cd ~/ghost/bin
cp ghost /usr/local/bin
chmod +x /usr/local/bin/ghost
cp ghost /bin
chmod +x /bin/ghost
cp ghost /data/data/com.termux/files/usr/bin
chmod +x /data/data/com.termux/files/usr/bin/ghost
} &> /dev/null
sleep 1
echo -e ""$GN"["$RS"+"$GN"]"$CE" Successfully installed!"$C""
sleep 1