forked from quickbooks2018/bash-scipts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvanced-suspeded-domain.sh.txt
293 lines (157 loc) · 4.69 KB
/
advanced-suspeded-domain.sh.txt
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
#!/bin/bash
#Date:26-May-2017
#Aurhtor:Muhammad Asim
#Purpose:Migration Testing of all suspended accounts on Other WEBSOULS Servers.
#IFS=$'\n'
#Creating a function for USERS NAMES & DOMAIN NAMES.
function USER-DOMAIN () {
LIST=`ls /var/cpanel/suspended/`
echo -e "\nList of Suspended Accounts with "USER NAME" & "DOMAIN NAME"\n"
for i in $LIST
do
DOMAIN=`ls /home/$i/etc/ | awk '{print $1}' | tail -n1`
echo $i" " $DOMAIN
echo "###################################################################################################################"
done
}
#End of function USER-DOMAIN
#Creating function List of Suspended domains ping test of all suspended domains.
function SUSPENDED () {
LIST=`ls /var/cpanel/suspended/`
echo -e "\nList of Suspended Domains\n"
echo "#####################################################################################################################"
echo " "
for j in $LIST
do
DOMAIN=`ls /home/$j/etc/ | awk '{print $1}' | tail -n1`
FQDN=`echo $DOMAIN | awk '{print $1}' | grep -iE "."`
echo $FQDN
done
}
#End of Suspended Domains Function.
#Creating a function PINGALL ping all suspended domains
function PINGALL () {
echo " "
echo "######################################################################################################################"
echo -e "\nDig Test with Google DNS, of suspended domains\n"
LIST=`ls /var/cpanel/suspended/`
FQDN=`echo $DOMAIN | awk '{print $1}' | grep -iE "."`
for T in $LIST
do
DOMAIN=`ls /home/$T/etc/ | awk '{print $1}' | tail -n1`
FQDN=`echo $DOMAIN | awk '{print $1}' | grep -iE "."`
for A in $FQDN
do
echo "##########################################################################################################################"
DIG=`dig $A A @8.8.8.8 | grep -iE $A | tail -n1`
echo -e "$DIG"
if [ "$?" = "0" ]
then
IP=`ping -c3 $A | grep -iE ":" | tr -d '():' | awk '{print $4}'` 2> /dev/null
echo -e "\n$IP\n"
if [ "$?" = "0" ]
then
echo -e "\nPing is working fine, website is migrated successfully\n"
WEBS06DNS1='62.210.187.247'
WEBS01DNS='136.243.113.211'
WEBS02DNS='144.76.119.139'
WEBS04DNS='88.99.66.136'
NS700='144.76.222.41'
WEBS10DNS='62.210.167.204'
WINDOWS='37.187.76.99'
if [ "$IP" = "$WEBS06DNS1" ]
then
echo -e "\nWEBS06\n"
elif [ "$IP" = "$WEBS01DNS" ]
then
echo -e "\nWEBS01\n"
elif [ "$IP" = "$WEBS02DNS" ]
then
echo -e "\nWEBS02DNS\n"
elif [ "$IP" = "$WEBS04DNS" ]
then
echo -e "\nWEBS04\n"
elif [ "$IP" = "$NS700" ]
then
echo -e "\nNS700\n"
elif [ "$IP" = "$WEBS10DNS" ]
then
echo -e "\nWEBS10\n"
elif [ "$IP" = "$WINDOWS" ]
then
echo -e "\nWindows Server\n"
exit
else
echo -e "\n$IP\n"
echo -e "\nThis is not WEBSOULS IP \n"
exit
fi
fi
else
echo -e "\nNo Result,xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx please check it!!!\n"
exit
fi
done
done
}
#Calling Function USER-DOMAIN
#USER-DOMAIN
#Calling Function SUSPENDED
#SUSPENDED
#Calling function PINGALL
#PINGALL
#We are setting up choices.
PS3="PLease select from the choices: "
FUNCTIONS="USER-DOMAIN SUSPENDED PINGALL SEARCH SEARCH-PING-TEST QUIT"
select S in $FUNCTIONS
do
if [ "$S" = "USER-DOMAIN" ]
then
USER-DOMAIN
elif [ "$S" = "SUSPENDED" ]
then
SUSPENDED
elif [ "$S" = "PINGALL" ]
then
PINGALL
elif [ "$S" = "SEARCH" ]
then
#Creating options SEARCH
echo " "
read -p "PLease enter the suspended domain, you want to search: " SEARCH
echo -e "\nThe domain name you want to search is $SEARCH\n"
AREA=`SUSPENDED | grep -iE $SEARCH`
if [ "$?" = "0" ]
then
echo -e "\nYour domain $AREA is found in suspended Accounts\n"
else
echo -e "\nYour domains $AREA is not found in suspended accounts.\n"
fi
#END of SEARCH option.
#Creating SEARCH-PING-TEST options
elif [ "$S" = "SEARCH-PING-TEST" ]
then
echo " "
read -p "PLease enter the suspended domain, you want to search & ping: " SEARCH
echo -e "\nThe domain name you want to search is $SEARCH\n"
AREA=`SUSPENDED | grep -iE $SEARCH`
if [ "$?" = "0" ]
then
echo -e "\nYour domain $AREA is found in suspended Accounts\n"
PING=`ping -c3 $AREA 2> /dev/null | awk '{print $4,$5}' | grep -iE ":" | tr -d '():' | grep -iE ".|." | head -n1`
echo -e "\n$PING\n"
DIG=`dig $AREA | grep -iE "$AREA" | tail -n1`
echo -e "\n$DIG\n"
exit
else
echo -e "\nYour domains $AREA is not found in suspended accounts.\n"
exit
fi
#End of SEARCH-PING-TEST option.
elif [ "$S" = "QUIT" ]
then
echo QUIT
exit
fi
done
#END