Skip to content

Commit

Permalink
Update kalinstall.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
C0MPL3XDEV authored Sep 21, 2021
1 parent f9fec60 commit b671269
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions kalinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,23 @@ g="\033[1;32m"
r="\033[1;31m"
b="\033[1;34m"
w="\033[0m"
echo -e "$b"">""$w"" E4GL30S1NT - Simple information gathering toolkit"
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"
apt-get install libxml2 -y
pkg install libxml2 -y
echo -e "$b"">""$w"" installing pacakge: ""$g""libxslt""$w"
pkg install libxslt -y
echo -e "$b"">""$w"" installing pacakge: ""$g""python3""$w"
apt-get install python3 python3-pip -y
pkg install python -y
echo -e "$b"">""$w"" installing modules: ""$g""lxml""$w"
pip3 install lxml
pip3 install wheel lxml
echo -e "$b"">""$w"" installing modules: ""$g""requests""$w"
pip3 install requests
echo -e "$b"">""$w"" installing modules: ""$g""email-validator""$w"
pip3 install email-validator
echo -e "$b"">""$w"" installing modules: ""$g""googlesearch-python""$w"
pip3 install googlesearch-python
echo -e "$b"">""$w"" installing modules: ""$g""BeautifulSoup""$w"
pip3 install BeautifulSoup
echo -e "$b"">""$w"" installing modules: ""$g""tabuate""$w"
pip3 install tabulate
echo -e "$b"">""$w"" successfully installing dependencies"
sudo wget -q https://raw.githubusercontent.com/C0MPL3XDEV/E4GL3OS1NT/main/E4GL30S1NT.py -O /usr/local/bin/E4GL30S1NT && sudo chmod +x /usr/local/bin/E4GL30S1NT
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"

0 comments on commit b671269

Please sign in to comment.