-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.sh
44 lines (36 loc) · 1.17 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
#! /bin/bash
if [ "$(id -u)" != "0" ]; then
echo "Этот скрипт должен быть запущен как root"
exit 1
fi
clear
BLACK='\e[30m'
RED='\e[31m'
GREEN='\e[92m'
YELLOW='\e[33m'
ORANGE='\e[93m'
BLUE='\e[34m'
PURPLE='\e[35m'
CYAN='\e[36m'
WHITE='\e[37m'
NC='\e[0m'
purpal='\033[35m'
echo '''
-------------------------------------------------------------------------
____ _ _ ®
| _ \ _ _| \ | |_ __ ___ __ _ _ __
| |_) | | | | \| | '_ ` _ \ / _` | '_ \
| __/| |_| | |\ | | | | | | (_| | |_) |
|_| \__, |_| \_|_| |_| |_|\__,_| .__/
|___/
VERSION-TOOL: 1.0
By MYTHON-DEV or MYTH-DEV
Instagram: @mython_dev and @hackingworld_d
-------------------------------------------------------------------------
'''
echo $"[✔] Установка ... "
sudo apt update -y && apt upgrade -y
sudo apt install python3 && sudo apt install python3-pip
sudo pip3 install -r requirements.txt
sudo python3 py-nmap.py
echo $"[✔] Гатова!... "