forked from makiraid/Remot3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.sh
106 lines (106 loc) · 5.19 KB
/
setup.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#!/bin/bash
# WARNING !
##############################################################
# This is a USELESS Project, if you like it just donate
# to me.
##############################################################
# BITCOIN :
# PAYPAL : https://www.paypal.me/abdiprawiran
# PERFECT MONEY : U15461128
#################### Made by 16 y.o Boys #####################
##############################################################
# Thank's to IndoXploit - ZeroByte.ID - Eldersc0de Family
# Special Thanks : Reky Ardhana, Novran Fathir & Bayu Fedra
##############################################################
# UPDATE V-2.0
# Whats new? Update and include new FUD Backdoor, Accourate
# Check Backdoor Live or Not, Password for Connect the
# Backdoor and much more Unique Logic Script to Bypass WAF
# (Website Applications Firewall).
##############################################################
## COLORING YOUR SHELL ##
##############################################################
white="\033[1;37m" ##
grey="\033[0;37m" ##
purple="\033[0;35m" ##
red="\033[1;31m" ##
green="\033[1;32m" ##
yellow="\033[1;33m" ##
purple="\033[0;35m" ##
cyan="\033[0;36m" ##
cafe="\033[0;33m" ##
fiuscha="\033[0;35m" ##
blue="\033[1;34m" ##
nc="\e[0m" ##
bgr="\e[0;41m" ##
##############################################################
spinlong ()
{
bar=" ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ "
barlength=${#bar}
i=0
while ((i < 100)); do
n=$((i*barlength / 100))
printf "\e[00;32m\r[%-${barlength}s]\e[00m" "${bar:0:n}"
((i += RANDOM%5+2))
sleep 0.02
done
}
banner(){
printf " ${white}
#########################################################################
## ##
## /\ \ ##
## / \ \ ##
## / /\ \ \ ##
## / / /\ \_\ ##
## / / /_/ / / ##
## / / /__\/ / ##
## / / /_____/ ##
## / / /\ \ \ ##
## / / / \ \ \ ##
## \/_/ \_\/ ##
## ##
#########################################################################
## Remot3d Installer ##
#########################################################################
## • DISCLAIMER • ##
## ##
## we are not responsible for what is done with these Tools, ##
## made for education. all crimes are borne by this user tool. ##
## Made in the language of BASH / Shell Scripting, its function ##
## makes it easy to control the Backdoor easily and has several ##
## features to bypass the firewall with FUD (FULLY UNDETECTABLE) ##
## Script. ##
#########################################################################
\n"
}
install() {
if [[ $(whoami) != "root" ]]
then
printf " ${white}[•] ${red}This script must be run as root ${white}[•]\n"
exit
fi
sleep 2
check=$(ls lib | grep payloads)
if [[ $check == "payloads" ]];then
installation=$(cp -r lib/payloads $HOME/.rmtd-payloads && cp Remot3d.sh /usr/bin/Remot3d && chmod +x /usr/bin/Remot3d)
echo -e " [$green ✔$white ] Install Payloads............................................"
sleep 2
echo -e " [$green ✔$white ] Install Remot3d............................................."
sleep 1
echo -e " [$green !$white ]Done ! Just Command$yellow Remot3d$white And Enjoy the TRASH TOOLS !"
else
echo " Try to run at the Remot3d Folder !"
echo " Exiting...";
sleep 1
echo "";
exit
fi
}
clear
spinlong
clear
printf "\e[8;30;99t"
banner
install