-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathdomaincheck.sh.txt
357 lines (216 loc) · 5.37 KB
/
domaincheck.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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
bin/bash
#Date:27-3-2017
#Aurthor: Muhammad Asim
#Purpose:To check client domain status
#PING Test
function PING () {
echo -e "\nPLease enter the domain name\n"
read NAME
echo -e "\nYour Domain Name is $NAME \n"
echo -e "\nInitiating PING\n"
#ping -c3 $NAME 2> /dev/null | awk '{print $4,$5}' | grep -iE ":" | sed 's|[:(),]||g'
#Domain name should be with .com, .net...
ping -c3 $NAME 2> /dev/null | awk '{print $4,$5}' | grep -iE ":" | tr -d '():' | grep -iE ".|."
if [ "$?" != "0" ]
then
echo -e "\nPlease enter the correct domain name like example.com\n"
echo -e "\nPING is down\n"
exit 1
fi
ping -c3 $NAME > /dev/null 2>&1
if [ "$?" = "0" ]
then
echo -e "\nPing is up\n"
else
echo -e "\nPing is dowm\n"
fi
}
#PING
#WEBSOULS WEB SERVER TEST
function SERVER (){
echo -e "\nLooking for the WEBSOULS WEB SERVERS\n"
echo -e "\nPlease enter the domain name\n"
read NAME
echo -e "\nYour domain name is $NAME\n"
#Looking For Name Servers.
nslookup -querytype=NS $NAME | grep -i "="
IP=`ping -c1 $NAME 2> /dev/null | grep -iE ":" | awk '{print $5}' | sed 's|[():,]||g'`
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'
echo -e "\n$IP\n"
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"
elif [ "$IP" = "" ]
then
echo -e "\nNo A record IPv4 found for the $NAME domain\n"
else
echo -e "\nThis is not WEBSOULS IP \n"
fi
}
#SERVER
#WHOIS info
function WHOIS () {
echo -e "\nFor WHOIS info, please enter the CORRECT domain name, otherwise I kick YOU from my script\n"
read NAME
DOMAIN=`echo $NAME | grep -iE ".pk" | cut -f2,3 -d "."`
echo $DOMAIN > /dev/null
if [ "$DOMAIN" = "pk" ]
then
curl https://pk6.pknic.net.pk/pk5/lookup.PK -d "id=name&name=$NAME" | bcat
elif [ "$DOMAIN" = "com.pk" ]
then
curl https://pk6.pknic.net.pk/pk5/lookup.PK -d "id=name&name=$NAME" | bcat
elif [ "$DOMAIN" = "net.pk" ]
then
curl https://pk6.pknic.net.pk/pk5/lookup.PK -d "id=name&name=$NAME" | bcat
else
whois $NAME | grep -iE "hold|email|Name Server"
fi
}
#WHOIS
#Page Error ERROR function
function ERROR () {
echo -e "\nPlease enter the domain name\n"
read NAME
echo -e "\nYour domain name is $NAME\n"
curl -IL $NAME | less
}
#ERROR
#Name Servers Addition Function
function NS () {
NS=`nslookup -querytype=NS $TEST | grep -i "=" | grep -i origin`
echo -e "\n$NS\n"
}
#NS
#End
#Setting SERVER-FQDN Check with FQDN
function SERVER-FQDN () {
echo
read -p "Please enter a Your domain: " DOMAIN
echo -e "\nYour domain name is $DOMAIN\n"
echo $DOMAIN | grep -iE "http|https"
if [ "$?" = "0" ]
then
TEST=`echo $DOMAIN | cut -f2 -d ":" | awk -F / '{print $3}'`
echo -e "\n$TEST\n"
#Applying Function Name Servers
NS
ping -c3 $TEST > /dev/null 2>&1
if [ "$?" = "0" ]
then
for i in $TEST
do
if [ "$?" = "0" ]
then
IP=`ping -c1 $i 2> /dev/null | grep -iE ":" | awk '{print $5}' | sed 's|[():,]||g'`
echo $IP 2> /dev/null
if [ "$?" = "0" ]
then
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 "\nWEBSS02\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"
elif [ "$IP" = "" ]
then
echo -e "\nNo A record IPv4 found for the $DOMAIN domain\n"
else
echo $IP
echo -e "\nThis is not a Websouls IP Address\n"
fi
fi
fi
done
else
echo -e "\nNo A record IPv4 found for the $DOMAIN domain\n"
fi
else
echo -e "\nYour Domain Name is not started with "http" or "https"\n
\nYou are shifted to option Number 2\n
Please copy & paste the domain name again\n"
SERVER
fi
}
#SERVER-FQDN
#We are setting up choices.
PS3="PLease select from the choices: "
LIST="WHOIS SERVER PING ERROR FULLTEST SERVER-FQDN QUIT"
select i in $LIST
do
if [ "$i" = "WHOIS" ]
then
WHOIS
elif [ "$i" = "SERVER" ]
then
SERVER
elif [ "$i" = "PING" ]
then
PING
elif [ "$i" = "ERROR" ]
then
ERROR
elif [ "$i" = "SERVER-FQDN" ]
then
SERVER-FQDN
elif [ "$i" = "FULLTEST" ]
then
WHOIS
SERVER
PING
ERROR
exit
elif [ "$i" = "QUIT" ]
then
exit
fi
exit
# break
done
#END