-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.sh
55 lines (52 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
clear
Red='\033[0;31m'
function display(){
echo
echo -e $Red ' ######## ####### #### ###### ####### ## ## #### ######## ### ######## ######## '
echo -e $Red ' ## ## ## ## ## ## ## ## ## ### ## ## ## ## ## ## ## ## ## '
echo -e $Red ' ## ## ## ## ## ## ## ## #### ## ## ## ## ## ## ## ## ## '
echo -e $Red ' ######## ## ## ## ###### ## ## ## ## ## ## ## ## ## ######## ######## '
echo -e $Red ' ## ## ## ## ## ## ## ## #### ## ## ######### ## ## ## '
echo -e $Red ' ## ## ## ## ## ## ## ## ## ### ## ## ## ## ## ## ## '
echo -e $Red ' ## ####### #### ###### ####### ## ## #### ## ####### ## ## ## ## ## '
echo -e $Red '------------------------------------------------------------------------------------------------------------------------------------------------------------------ '
echo -e $Red '| Developer: Kedar Parikh | Email: kedar@decryptingtechnology.com | Website: www.decryptingtechnology.com | YouTube Channel: www.youtube.com/DecryptingTechnology |'
echo -e $Red '------------------------------------------------------------------------------------------------------------------------------------------------------------------ '
}
display
echo -e $Red '[+] Updating APT'
apt update -qq
clear
display
echo -e $Red '[✔]Updating APT'
echo ''
echo '[+] Installing Python3 and Pip3'
apt install python3
apt install python3-pip
clear
display
echo -e $Red '[✔]Updating APT'
echo -e $Red '[✔]Installing Python3 and Pip3'
echo ''
echo -e $Red '[+] Installing Python Libraries'
pip3 install scapy
pip3 install colorama
clear
display
echo -e $Red '[✔]Updating APT'
echo -e $Red '[✔]Installing Python3 and Pip3'
echo -e $Red '[✔]Installing Python Libraries'
echo ''
echo '[+] Creating Terminal Shortcut'
path=`pwd`
echo 'alias poisonit="'python3 $path'"/poisonit.py' >> ~/.bashrc
clear
display
echo -e $Red '[✔]Updating APT'
echo -e $Red '[✔]Installing Python3 and Pip3'
echo -e $Red '[✔]Installing Python Libraries'
echo -e $Red '[✔]Creating Terminal Shortcut'
echo -e $Red 'Installation Complete!'
echo -e $Red 'Note: Restart the terminal after installation'
echo -e $Red 'Note: Type poisonit to start the tool'
echo -e $Red 'Thank you for installing Poisonit'