forked from softkrates/Devploit-1
-
Notifications
You must be signed in to change notification settings - Fork 11
/
install
51 lines (51 loc) Β· 2.01 KB
/
install
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
#!/bin/bash
#
#
# author : Joker-Security
# Tested on Kali Linux / lxle-linux / Parrot Os
# Simple script for Install Devploit
#Colors
cyan='\e[0;36m'
green='\e[0;32m'
lightgreen='\e[1;32m'
white='\e[1;37m'
red='\e[1;31m'
yellow='\e[1;33m'
blue='\e[1;34m'
#Options
path=`pwd` # Path
VeR="V2.3" # Version
#Check root exist
[[ `id -u` -eq 0 ]] > /dev/null 2>&1 || { echo $red "You must be root to run the script"; exit 1; }
echo -e $cyan ""
echo " ____ __ _ __ ";
echo " / __ \___ _ ______ / /___ (_) /_ ";
echo " / / / / _ \ | / / __ \/ / __ \/ / __/ ";
echo " / /_/ / __/ |/ / /_/ / / /_/ / / /_ ";
echo "/_____/\___/|___/ .___/_/\____/_/\__/$VeR ";
echo " /_/ ";
echo -e $white "------------------------------"
echo -e $red "[ β ] Installer The Tool [ β ] ";
echo -e $white "------------------------------"
echo -e $green "[ ! ] Moving Devploit folder "
mkdir /usr/share/Devploit
cp install /usr/share/Devploit
cp Devploit /usr/share/Devploit
cp update.py /usr/share/Devploit
cp -r modules /usr/share/Devploit
echo -e $blue "[ β ]Done"
echo "#!/bin/sh" >> /usr/bin/Devploit
echo "cd /usr/share/Devploit" >> /usr/bin/Devploit
echo "exec python Devploit \"\$@\"" >> /usr/bin/Devploit
cp $path/Dev/Devploit.desktop /usr/share/applications/Devploit.desktop
cp $path/Dev/kali-Devploit.png /usr/share/icons/kali-Devploit.png
cp Devploit /usr/local/sbin/Devploit
chmod +x /usr/local/sbin/Devploit
chmod +x Devploit
echo -e $white "------------------------------------------------------------------------"
echo -e $red "[ β ] Devploit Is Installed In Application (information gathering) [ β ]"
echo -e $white "------------------------------------------------------------------------"
echo -e $green"ββββββββββββββββββββββββββββββ "
echo -e $blue "|Run in Terminal<(Devploit)> | "
echo -e $green"ββββββββββββββββββββββββββββββ "
exit