forked from C0MPL3XDEV/E4GL30S1NT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
linuxinstall.sh
26 lines (26 loc) · 1.1 KB
/
linuxinstall.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
#! /usr/bin/bash
null="> /dev/null 2>&1"
g="\033[1;32m"
r="\033[1;31m"
b="\033[1;34m"
w="\033[0m"
echo -e "$b"">""$w"" E4GL30SINT - Simple information gathering toolkit"
echo -e "$b"">""$w"" prepare for installing dependencies ..."
sleep 3
echo -e "$b"">""$w"" installing package: ""$g""libxml2""$w"
sudo apt install libxml2 -y
echo -e "$b"">""$w"" installing pacakge: ""$g""libxslt""$w"
sudo apt install libxslt -y
echo -e "$b"">""$w"" installing pacakge: ""$g""python3""$w"
sudo apt install python -y
echo -e "$b"">""$w"" installing modules: ""$g""lxml""$w"
pip3 install wheel lxml
echo -e "$b"">""$w"" installing modules: ""$g""requests""$w"
pip3 install requests
echo -e "$b"">""$w"" installing modules: ""$g""BeautifulSoup""$w"
pip install beautifulsoup4
echo -e "$b"">""$w"" installing modules: ""$g""tabuate""$w"
pip3 install tabulate
echo -e "$b"">""$w"" successfully installing dependencies"
wget -q https://raw.githubusercontent.com/C0MPL3XDEV/E4GL3OS1NT/main/E4GL30S1NT.py -O "$PREFIX"/bin/E4GL30S1NT && chmod +x "$PREFIX"/bin/E4GL30S1NT
echo -e "$b"">""$w"" use command ""$g""E4GL30S1NT""$w"" for start the console"