-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstart.sh
81 lines (81 loc) · 1.65 KB
/
start.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
#!/bin/bash
clear
echo -e "\e[1;32m Reborn \e[0m"
echo "Press Enter To Continue"
read a1
if [[ -s update.demoza ]];then
echo "All Requirements Found...."
else
echo 'Installing Requirements....'
echo .
pkg install pip2
apt install python3-pip
pip2 install -r requirements.txt
echo Made By DEMOZA >update.demoza
echo Requirements Installed....
echo Press Enter To Continue...
read upd
fi
while :
do
rm *.xxx >/dev/null 2>&1
clear
echo -e "\e[1;31m"
figlet Reborn
toilet -f mono12 -F border Demoza
echo -e "\e[4;34mCreated By Demoza \e[0m"
echo -e "\e[1;32mMail: [email protected] \e[0m"
echo -e "\e[4;32mYouTube Page: https://www.youtube.com/HarunMISTIK \e[0m"
echo " "
echo "Press 1 To Start SMS Bomber "
echo "Press 2 To Update SMS Bomber "
echo "Press 99 To Quit "
read ch
if [ $ch -eq 1 ];then
clear
python sms.py
exit 0
elif [ $ch -eq 2 ];then
clear
cd
rm -rf Reborn
git clone https://github.com/demoza/Reborn
clear
echo "[+] Success Please Restart Tool"
exit 0
elif [ $ch -eq 3 ];then
clear
chmod +x start.sh
figlet Reborn
echo "Invaild Input Press Enter To Go Home"
read a3
./start.sh
exit
elif [ $ch -eq 4 ];then
clear
chmod +x start.sh
figlet Reborn
echo "Invaild Input Press Enter To Go Home"
read a3
clear
read a3
./start.sh
exit
elif [ $ch -eq 99 ];then
clear
echo -e "\e[1;31m"
figlet Reborn
echo -e "\e[1;34m Created By \e[1;32m"
toilet -f mono12 -F border DEMOZA
echo -e "\e[1;34m For Any Queries Mail Me!!!\e[0m"
echo -e "\e[1;32m Mail: [email protected] \e[0m"
echo -e "\e[4;32m YouTube Page: https://www.youtube.com/HarunMISTIK \e[0m"
echo " "
exit 0
else
echo -e "\e[4;32m Invalid Input !!! \e[0m"
echo "Press Enter To Go Home"
read a3
clear
fi
done