forked from termuxhackers-id/SIGIT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
26 lines (26 loc) · 1.01 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
#! /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" SIGIT - Simple information gathering toolkit"
echo -e $b">"$w" prepare for installing dependencies ..."
sleep 3
echo -e $b">"$w" installing package: "$g"libxml2"$w
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
pkg 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"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" successfully installing dependencies"
wget -q https://raw.githubusercontent.com/termuxhackers-id/SIGIT/main/sigit.py -O $PREFIX/bin/sigit && chmod +x $PREFIX/bin/sigit
echo -e $b">"$w" use command "$g"sigit"$w" for start the console"