-
Notifications
You must be signed in to change notification settings - Fork 0
/
Run.sh
142 lines (141 loc) · 3.56 KB
/
Run.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/usr/bin/env bash
clear
echo -e "\e[4;31m !!! \e[0m"
echo -e "\e[1;32m Presents \e[0m"
echo -e "\e[1;34m"
[ `command -v figlet` ] && figlet -f slant Anon-SMS
echo "Press Enter To Launch"
read a1
if [[ -s update.pandahackers ]];then
echo "All Requirements Found...."
else
echo 'Installing Requirements....'
echo .
echo .
apt install figlet toilet python3 curl ruby -y
apt install python3-pip
gem install lolcat
echo This Tool Is Fire
echo This Script Is Also Fire
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 -f slant Anon-SMS | lolcat
echo -e "\e[1;34m Created By \e[1;32m" #blue color
toilet -f mono12 -F border PH | lolcat
echo -e "\e[4;34m \e[0m" #underline+blue
echo -e "\e[1;\e[0m"
echo -e "\e[1;32m" #yellow
echo -e "\e[4;32m \e[0m" #green
echo -e "\e[1;34m \e[0m"
echo " "
echo -e "\e[4;31mRead Instruction Carefully !!! \e[0m" #red
echo " "
echo "Enter 1 To Run Anon-SMS "
echo "Enter 2 To Track Anon-SMS " #white
echo "Enter 3 To Update "
echo "Enter 4 To Check Features "
echo "Enter 5 To Exit "
read ch
if [ $ch -eq 1 ];then
clear
echo -e "\e[1;32m"
rm *.xxx >/dev/null 2>&1
python3 send.py
rm *.xxx >/dev/null 2>&1
exit 0
elif [ $ch -eq 2 ];then
clear
echo -e "\e[1;32m"
echo 'Track Anon-SMS'> call.xxx
python3 send.py track
rm *.xxx >/dev/null 2>&1
exit 0
elif [ $ch -eq 3 ];then
clear
apt install git -y
echo -e "\e[1;34m Requesting Update From Source..."
echo -e "\e[1;34m Request Attempt Successful.."
echo -e "\e[1;34m Updating Now..."
git clone https://github.com/HACK3RY2J/Anon-SMS.git
if [[ -s Anon-SMS/Run.sh ]];then
cd Anon-SMS
cp -r -f * .. > temp
cd ..
rm -rf Anon-SMS >> temp
rm update.pandahackers >> temp
rm temp
chmod +x Run.sh
fi
echo -e "\e[1;32m Anon-SMS Will Refresh Now..."
echo -e "\e[1;32m All The Required Packages Have Been Installed..."
echo -e "\e[1;34m Press Enter To Refresh..."
read a6
./Run.sh
exit
elif [ $ch -eq 4 ];then
clear
echo -e "\e[1;33m"
figlet -f slant Anon-SMS | lolcat
echo -e "\e[1;34m \e[1;34m" #Blue Color
toilet -f mono12 -F border PH | lolcat
echo " "
echo -e "\e[1;32m Features\e[1;34m"
echo " Ultra-Fast-Smooth Sending"
echo " International Sending"
echo " Tracking "
echo " Automatic Future Updates"
echo " Easy To Use And Embed in Code"
echo""
echo -e "\e[1;32m \e[1;33m"
echo -e "\e[1;33m [*] \e[1;31m"
echo " [-] "
echo -e "\e[1;33m [*] \e[1;31m"
echo " [-] "
echo -e "\e[1;33m [*] \e[1;31m"
echo " [-] "
echo -e "\e[1;33m [*] \e[1;31m"
echo " [-] "
echo -e "\e[1;33m [*] \e[1;31m"
echo " [-] "
echo ""
echo ""
echo -e "\e[1;31m This is Only For Educational Purposes or To Prank.\e[0m"
echo -e "\e[1;31m Do not Use This To Irritate Others. \e[0m"
echo -e "\e[1;31m Do not Use This To Harm Others. \e[0m"
echo -e "\e[1;31m We Are Not Responsible For The Misuse Of The Script. \e[0m"
echo -e "\e[1;32m Update If Doesn't Work.\e[0m"
echo " "
echo -e "\e[4;31m That's All !!!\e[0m"
echo -e "\e[1;34m For Any Queries Mail Us!!!\e[0m"
echo -e "\e[1;32m \e[0m"
echo -e "\e[1;32m \e[0m"
echo -e "\e[4;32m \e[0m"
echo "Press Enter To Return To Main Menu"
read a3
clear
elif [ $ch -eq 5 ];then
clear
echo -e "\e[1;31m"
figlet -f slant Anon-SMS | lolcat
echo -e "\e[1;34m \e[1;32m"
toilet -f pagga -F border | lolcat
echo -e "\e[1;34m \e[0m"
echo -e "\e[1;32m \e[0m"
echo -e "\e[1;32m \e[0m"
echo -e "\e[4;32m \e[0m"
echo " "
exit 0
else
echo -e "\e[4;32m Invalid Input Detected !!! \e[0m"
echo "Press Enter To Return To Main Menu"
read a3
clear
fi
done