Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
wishihab
GitHub Repository: wishihab/userrecon
Path: blob/master/userrecon.sh
193 views
1
#!/bin/bash
2
# UserRecon v1.0
3
# Author: @thelinuxchoice
4
# https://github.com/thelinuxchoice/usercheck
5
6
trap 'printf "\n";partial;exit 1' 2
7
8
banner() {
9
10
11
12
printf " \e[1;92m.-\"\"\"\"-. \e[0m\n"
13
printf " \e[1;92m/ \ \e[0m\n"
14
printf "\e[1;77m _ _ ____ \e[0m\e[1;92m/_ _\ \e[0m\n"
15
printf "\e[1;77m | | | |___ ___ _ __| _ \ ___ ___ ___ _ __ \e[0m\e[1;92m// \ / \\ \e[0m\n"
16
printf "\e[1;77m | | | / __|/ _ \ '__| |_) / _ \/ __/ _ \| '_ \ \e[0m\e[1;92m|\__\ /__/| \e[0m\n"
17
printf "\e[1;77m | |_| \__ \ __/ | | _ < __/ (_| (_) | | | | \e[0m\e[1;92m\ || / \e[0m\n"
18
printf "\e[1;77m \___/|___/\___|_| |_| \_\___|\___\___/|_| |_| \e[0m\e[1;92m\ / \e[0m\n"
19
printf " \e[1;92mv1.0, Author: @thelinuxchoice\e[0m \e[1;92m\ __ / \e[0m\n"
20
printf " \e[1;92m'.__.' \e[0m\n"
21
22
23
24
}
25
26
partial() {
27
28
if [[ -e $username.txt ]]; then
29
printf "\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Saved:\e[0m\e[1;77m %s.txt\n" $username
30
fi
31
32
33
}
34
35
scanner() {
36
37
read -p $'\e[1;92m[\e[0m\e[1;77m?\e[0m\e[1;92m] Input Username:\e[0m ' username
38
39
if [[ -e $username.txt ]]; then
40
printf "\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Removing previous file:\e[0m\e[1;77m %s.txt" $username
41
rm -rf $username.txt
42
fi
43
printf "\n"
44
printf "\e[1;92m[\e[0m\e[1;77m*\e[0m\e[1;92m] Checking username\e[0m\e[1;77m %s\e[0m\e[1;92m on: \e[0m\n" $username
45
46
## INSTAGRAM
47
48
check_insta=$(curl -s -H "Accept-Language: en" "https://www.instagram.com/$username" -L | grep -o 'The link you followed may be broken'; echo $?)
49
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Instagram: \e[0m"
50
51
if [[ $check_insta == *'1'* ]]; then
52
printf "\e[1;92m Found!\e[0m https://www.instagram.com/%s\n" $username
53
printf "https://www.instagram.com/%s\n" $username > $username.txt
54
elif [[ $check_insta == *'0'* ]]; then
55
printf "\e[1;93mNot Found!\e[0m\n"
56
fi
57
58
## Facebook
59
60
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Facebook: \e[0m"
61
check_face=$(curl -s "https://www.facebook.com/$username" -L -H "Accept-Language: en" | grep -o 'not found'; echo $?)
62
63
64
if [[ $check_face == *'1'* ]]; then
65
printf "\e[1;92m Found!\e[0m https://www.facebook.com/%s\n" $username
66
printf "https://www.facebook.com/%s\n" $username >> $username.txt
67
elif [[ $check_face == *'0'* ]]; then
68
printf "\e[1;93mNot Found!\e[0m\n"
69
fi
70
71
## TWITTER
72
73
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Twitter: \e[0m"
74
check_twitter=$(curl -s "https://www.twitter.com/$username" -L -H "Accept-Language: en" | grep -o 'page doesn’t exist'; echo $?)
75
76
77
if [[ $check_twitter == *'1'* ]]; then
78
printf "\e[1;92m Found!\e[0m https://www.twitter.com/%s\n" $username
79
printf "https://www.twitter.com/%s\n" $username >> $username.txt
80
elif [[ $check_twitter == *'0'* ]]; then
81
printf "\e[1;93mNot Found!\e[0m\n"
82
fi
83
84
## YOUTUBE
85
86
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] YouTube: \e[0m"
87
check_youtube=$(curl -s "https://www.youtube.com/$username" -L -H "Accept-Language: en" | grep -o 'Not Found'; echo $?)
88
89
90
if [[ $check_youtube == *'1'* ]]; then
91
printf "\e[1;92m Found!\e[0m https://www.youtube.com/%s\n" $username
92
printf "https://www.youtube.com/%s\n" $username >> $username.txt
93
elif [[ $check_youtube == *'0'* ]]; then
94
printf "\e[1;93mNot Found!\e[0m\n"
95
fi
96
97
## BLOGGER
98
99
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Blogger: \e[0m"
100
check=$(curl -s "https://$username.blogspot.com" -L -H "Accept-Language: en" -i | grep -o 'HTTP/2 404'; echo $?)
101
102
103
if [[ $check == *'1'* ]]; then
104
printf "\e[1;92m Found!\e[0m https://%s.blogspot.com\n" $username
105
printf "https://%s.blogspot.com\n" $username >> $username.txt
106
elif [[ $check == *'0'* ]]; then
107
printf "\e[1;93mNot Found!\e[0m\n"
108
fi
109
110
## GLOOGLE PLUS
111
112
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] GooglePlus: \e[0m"
113
check=$(curl -s "https://plus.google.com/+$username/posts" -L -H "Accept-Language: en" -i | grep -o 'HTTP/2 404' ; echo $?)
114
115
116
if [[ $check == *'1'* ]]; then
117
printf "\e[1;92m Found!\e[0m https://plus.google.com/+%s/posts\n" $username
118
printf "https://plus.google.com/+%s/posts\n" $username >> $username.txt
119
elif [[ $check == *'0'* ]]; then
120
printf "\e[1;93mNot Found!\e[0m\n"
121
fi
122
123
## REDDIT
124
125
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Reddit: \e[0m"
126
check1=$(curl -s -i "https://www.reddit.com/user/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | head -n1 | grep -o 'HTTP/2 404' ; echo $?)
127
128
if [[ $check1 == *'0'* ]] ; then
129
printf "\e[1;93mNot Found!\e[0m\n"
130
elif [[ $check1 == *'1'* ]]; then
131
132
printf "\e[1;92m Found!\e[0m https://www.reddit.com/user/%s\n" $username
133
printf "https://www.reddit.com/user/%s\n" $username >> $username.txt
134
fi
135
136
## WORDPRESS
137
138
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Wordpress: \e[0m"
139
check1=$(curl -s -i "https://$username.wordpress.com" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o 'Do you want to register' ; echo $?)
140
141
if [[ $check1 == *'0'* ]] ; then
142
printf "\e[1;93mNot Found!\e[0m\n"
143
elif [[ $check1 == *'1'* ]]; then
144
145
printf "\e[1;92m Found!\e[0m https://%s.wordpress.com\n" $username
146
printf "https://%s.wordpress.com\n" $username >> $username.txt
147
fi
148
149
## PINTEREST
150
151
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Pinterest: \e[0m"
152
check1=$(curl -s -i "https://www.pinterest.com/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o '?show_error' ; echo $?)
153
154
if [[ $check1 == *'0'* ]] ; then
155
printf "\e[1;93mNot Found!\e[0m\n"
156
elif [[ $check1 == *'1'* ]]; then
157
158
printf "\e[1;92m Found!\e[0m https://www.pinterest.com/%s\n" $username
159
printf "https://www.pinterest.com/%s\n" $username >> $username.txt
160
fi
161
162
## GITHUB
163
164
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] GitHub: \e[0m"
165
check1=$(curl -s -i "https://www.github.com/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o '404 Not Found' ; echo $?)
166
167
if [[ $check1 == *'0'* ]] ; then
168
printf "\e[1;93mNot Found!\e[0m\n"
169
elif [[ $check1 == *'1'* ]]; then
170
171
printf "\e[1;92m Found!\e[0m https://www.github.com/%s\n" $username
172
printf "https://www.github.com/%s\n" $username >> $username.txt
173
fi
174
175
## TUMBLR
176
177
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Tumblr: \e[0m"
178
check1=$(curl -s -i "https://$username.tumblr.com" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o 'HTTP/2 404' ; echo $?)
179
180
if [[ $check1 == *'0'* ]] ; then
181
printf "\e[1;93mNot Found!\e[0m\n"
182
elif [[ $check1 == *'1'* ]]; then
183
184
printf "\e[1;92m Found!\e[0m https://%s.tumblr.com\n" $username
185
printf "https://%s.tumblr.com\n" $username >> $username.txt
186
fi
187
188
## FLICKR
189
190
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Flickr: \e[0m"
191
check1=$(curl -s -i "https://www.flickr.com/people/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o 'Not Found' ; echo $?)
192
193
if [[ $check1 == *'0'* ]] ; then
194
printf "\e[1;93mNot Found!\e[0m\n"
195
elif [[ $check1 == *'1'* ]]; then
196
197
printf "\e[1;92m Found!\e[0m https://www.flickr.com/photos/%s\n" $username
198
printf "https://www.flickr.com/photos/%s\n" $username >> $username.txt
199
fi
200
201
## STEAM
202
203
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Steam: \e[0m"
204
check1=$(curl -s -i "https://steamcommunity.com/id/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o 'The specified profile could not be found' ; echo $?)
205
206
if [[ $check1 == *'0'* ]] ; then
207
printf "\e[1;93mNot Found!\e[0m\n"
208
elif [[ $check1 == *'1'* ]]; then
209
210
printf "\e[1;92m Found!\e[0m https://steamcommunity.com/id/%s\n" $username
211
printf "https://steamcommunity.com/id/%s\n" $username >> $username.txt
212
fi
213
214
## VIMEO
215
216
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Vimeo: \e[0m"
217
check1=$(curl -s -i "https://vimeo.com/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o '404 Not Found' ; echo $?)
218
219
if [[ $check1 == *'0'* ]] ; then
220
printf "\e[1;93mNot Found!\e[0m\n"
221
elif [[ $check1 == *'1'* ]]; then
222
223
printf "\e[1;92m Found!\e[0m https://vimeo.com/%s\n" $username
224
printf "https://vimeo.com/%s\n" $username >> $username.txt
225
fi
226
227
228
## SoundCloud
229
230
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] SoundCloud: \e[0m"
231
check1=$(curl -s -i "https://soundcloud.com/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o '404 Not Found'; echo $?)
232
233
if [[ $check1 == *'0'* ]] ; then
234
printf "\e[1;93mNot Found!\e[0m\n"
235
elif [[ $check1 == *'1'* ]]; then
236
237
printf "\e[1;92m Found!\e[0m https://soundcloud.com/%s\n" $username
238
printf "https://soundcloud.com/%s\n" $username >> $username.txt
239
fi
240
241
## DISQUS
242
243
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Disqus: \e[0m"
244
check1=$(curl -s -i "https://disqus.com/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o '404 NOT FOUND' ; echo $?)
245
246
if [[ $check1 == *'0'* ]] ; then
247
printf "\e[1;93mNot Found!\e[0m\n"
248
elif [[ $check1 == *'1'* ]]; then
249
250
printf "\e[1;92m Found!\e[0m https://disqus.com/%s\n" $username
251
printf "https://disqus.com/%s\n" $username >> $username.txt
252
fi
253
254
## MEDIUM
255
256
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Medium: \e[0m"
257
check1=$(curl -s -i "https://medium.com/@$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
258
259
if [[ $check1 == *'0'* ]] ; then
260
printf "\e[1;93mNot Found!\e[0m\n"
261
elif [[ $check1 == *'1'* ]]; then
262
263
printf "\e[1;92m Found!\e[0m https://medium.com/@%s\n" $username
264
printf "https://medium.com/@%s\n" $username >> $username.txt
265
fi
266
267
## DEVIANTART
268
269
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] DeviantART: \e[0m"
270
check1=$(curl -s -i "https://$username.deviantart.com" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
271
272
if [[ $check1 == *'0'* ]] ; then
273
printf "\e[1;93mNot Found!\e[0m\n"
274
elif [[ $check1 == *'1'* ]]; then
275
276
printf "\e[1;92m Found!\e[0m https://%s.deviantart.com\n" $username
277
printf "https://%s.deviantart.com\n" $username >> $username.txt
278
fi
279
280
## VK
281
282
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] VK: \e[0m"
283
check1=$(curl -s -i "https://vk.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
284
285
if [[ $check1 == *'0'* ]] ; then
286
printf "\e[1;93mNot Found!\e[0m\n"
287
elif [[ $check1 == *'1'* ]]; then
288
289
printf "\e[1;92m Found!\e[0m https://vk.com/%s\n" $username
290
printf "https://vk.com/%s\n" $username >> $username.txt
291
fi
292
293
## About.me
294
295
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] About.me: \e[0m"
296
check1=$(curl -s -i "https://about.me/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
297
298
if [[ $check1 == *'0'* ]] ; then
299
printf "\e[1;93mNot Found!\e[0m\n"
300
elif [[ $check1 == *'1'* ]]; then
301
302
printf "\e[1;92m Found!\e[0m https://about.me/%s\n" $username
303
printf "https://about.me/%s\n" $username >> $username.txt
304
fi
305
306
307
## Imgur
308
309
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Imgur: \e[0m"
310
check1=$(curl -s -i "https://imgur.com/user/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
311
312
if [[ $check1 == *'0'* ]] ; then
313
printf "\e[1;93mNot Found!\e[0m\n"
314
elif [[ $check1 == *'1'* ]]; then
315
316
printf "\e[1;92m Found!\e[0m https://imgur.com/user/%s\n" $username
317
printf "https://imgur.com/user/%s\n" $username >> $username.txt
318
fi
319
320
## FlipBoard
321
322
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Flipboard: \e[0m"
323
check1=$(curl -s -i "https://flipboard.com/@$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
324
325
if [[ $check1 == *'0'* ]] ; then
326
printf "\e[1;93mNot Found!\e[0m\n"
327
elif [[ $check1 == *'1'* ]]; then
328
329
printf "\e[1;92m Found!\e[0m https://flipboard.com/@%s\n" $username
330
printf "https://flipboard.com/@%s\n" $username >> $username.txt
331
fi
332
333
## SlideShare
334
335
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] SlideShare: \e[0m"
336
check1=$(curl -s -i "https://slideshare.net/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
337
338
if [[ $check1 == *'0'* ]] ; then
339
printf "\e[1;93mNot Found!\e[0m\n"
340
elif [[ $check1 == *'1'* ]]; then
341
342
printf "\e[1;92m Found!\e[0m https://slideshare.net/%s\n" $username
343
printf "https://slideshare.net/%s\n" $username >> $username.txt
344
fi
345
346
## Fotolog
347
348
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Fotolog: \e[0m"
349
check1=$(curl -s -i "https://fotolog.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
350
351
if [[ $check1 == *'0'* ]] ; then
352
printf "\e[1;93mNot Found!\e[0m\n"
353
elif [[ $check1 == *'1'* ]]; then
354
355
printf "\e[1;92m Found!\e[0m https://fotolog.com/%s\n" $username
356
printf "https://fotolog.com/%s\n" $username >> $username.txt
357
fi
358
359
360
## Spotify
361
362
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Spotify: \e[0m"
363
check1=$(curl -s -i "https://open.spotify.com/user/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
364
365
if [[ $check1 == *'0'* ]] ; then
366
printf "\e[1;93mNot Found!\e[0m\n"
367
elif [[ $check1 == *'1'* ]]; then
368
369
printf "\e[1;92m Found!\e[0m https://open.spotify.com/user/%s\n" $username
370
printf "https://open.spotify.com/user/%s\n" $username >> $username.txt
371
fi
372
373
## MixCloud
374
375
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] MixCloud: \e[0m"
376
check1=$(curl -s -i "https://www.mixcloud.com/$username" -H "Accept-Language: en" -L | grep -o 'error-message' ; echo $?)
377
378
if [[ $check1 == *'0'* ]] ; then
379
printf "\e[1;93mNot Found!\e[0m\n"
380
elif [[ $check1 == *'1'* ]]; then
381
382
printf "\e[1;92m Found!\e[0m https://www.mixcloud.com/%s\n" $username
383
printf "https://www.mixcloud.com/%s\n" $username >> $username.txt
384
fi
385
386
## Scribd
387
388
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Scribd: \e[0m"
389
check1=$(curl -s -i "https://www.scribd.com/$username" -H "Accept-Language: en" -L | grep -o 'show_404' ; echo $?)
390
391
if [[ $check1 == *'0'* ]] ; then
392
printf "\e[1;93mNot Found!\e[0m\n"
393
elif [[ $check1 == *'1'* ]]; then
394
395
printf "\e[1;92m Found!\e[0m https://www.scribd.com/%s\n" $username
396
printf "https://www.scribd.com/%s\n" $username >> $username.txt
397
fi
398
399
## Badoo
400
401
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Badoo: \e[0m"
402
check1=$(curl -s -i "https://www.badoo.com/en/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?)
403
404
if [[ $check1 == *'0'* ]] ; then
405
printf "\e[1;93mNot Found!\e[0m\n"
406
elif [[ $check1 == *'1'* ]]; then
407
408
printf "\e[1;92m Found!\e[0m https://www.badoo.com/en/%s\n" $username
409
printf "https://www.badoo.com/en/%s\n" $username >> $username.txt
410
fi
411
412
# Patreon
413
414
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Patreon: \e[0m"
415
check1=$(curl -s -i "https://www.patreon.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
416
417
if [[ $check1 == *'0'* ]] ; then
418
printf "\e[1;93mNot Found!\e[0m\n"
419
elif [[ $check1 == *'1'* ]]; then
420
421
printf "\e[1;92m Found!\e[0m https://www.patreon.com/%s\n" $username
422
printf "https://www.patreon.com/%s\n" $username >> $username.txt
423
fi
424
425
## BitBucket
426
427
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] BitBucket: \e[0m"
428
check1=$(curl -s -i "https://bitbucket.org/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
429
430
if [[ $check1 == *'0'* ]] ; then
431
printf "\e[1;93mNot Found!\e[0m\n"
432
elif [[ $check1 == *'1'* ]]; then
433
434
printf "\e[1;92m Found!\e[0m https://bitbucket.org/%s\n" $username
435
printf "https://bitbucket.org/%s\n" $username >> $username.txt
436
fi
437
438
## DailyMotion
439
440
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] DailyMotion: \e[0m"
441
check1=$(curl -s -i "https://www.dailymotion.com/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?)
442
443
if [[ $check1 == *'0'* ]] ; then
444
printf "\e[1;93mNot Found!\e[0m\n"
445
elif [[ $check1 == *'1'* ]]; then
446
447
printf "\e[1;92m Found!\e[0m https://www.dailymotion.com/%s\n" $username
448
printf "https://www.dailymotion.com/%s\n" $username >> $username.txt
449
fi
450
451
## Etsy
452
453
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Etsy: \e[0m"
454
check1=$(curl -s -i "https://www.etsy.com/shop/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
455
456
if [[ $check1 == *'0'* ]] ; then
457
printf "\e[1;93mNot Found!\e[0m\n"
458
elif [[ $check1 == *'1'* ]]; then
459
460
printf "\e[1;92m Found!\e[0m https://www.etsy.com/shop/%s\n" $username
461
printf "https://www.etsy.com/shop/%s\n" $username >> $username.txt
462
fi
463
464
## CashMe
465
466
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] CashMe: \e[0m"
467
check1=$(curl -s -i "https://cash.me/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found'; echo $?)
468
469
if [[ $check1 == *'0'* ]] ; then
470
printf "\e[1;93mNot Found!\e[0m\n"
471
elif [[ $check1 == *'1'* ]]; then
472
473
printf "\e[1;92m Found!\e[0m https://cash.me/%s\n" $username
474
printf "https://cash.me/%s\n" $username >> $username.txt
475
fi
476
477
## Behance
478
479
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Behance: \e[0m"
480
check1=$(curl -s -i "https://www.behance.net/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found'; echo $?)
481
482
if [[ $check1 == *'0'* ]] ; then
483
printf "\e[1;93mNot Found!\e[0m\n"
484
elif [[ $check1 == *'1'* ]]; then
485
486
printf "\e[1;92m Found!\e[0m https://www.behance.net/%s\n" $username
487
printf "https://www.behance.net/%s\n" $username >> $username.txt
488
fi
489
490
## GoodReads
491
492
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] GoodReads: \e[0m"
493
check1=$(curl -s -i "https://www.goodreads.com/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?)
494
495
if [[ $check1 == *'0'* ]] ; then
496
printf "\e[1;93mNot Found!\e[0m\n"
497
elif [[ $check1 == *'1'* ]]; then
498
499
printf "\e[1;92m Found!\e[0m https://www.goodreads.com/%s\n" $username
500
printf "https://www.goodreads.com/%s\n" $username >> $username.txt
501
fi
502
503
## Instructables
504
505
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Instructables: \e[0m"
506
check1=$(curl -s -i "https://www.instructables.com/member/$username" -H "Accept-Language: en" -L | grep -o '404 NOT FOUND' ; echo $?)
507
508
if [[ $check1 == *'0'* ]] ; then
509
printf "\e[1;93mNot Found!\e[0m\n"
510
elif [[ $check1 == *'1'* ]]; then
511
512
printf "\e[1;92m Found!\e[0m https://www.instructables.com/member/%s\n" $username
513
printf "https://www.instructables.com/member/%s\n" $username >> $username.txt
514
fi
515
516
## KeyBase
517
518
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Keybase: \e[0m"
519
check1=$(curl -s -i "https://keybase.io/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?)
520
521
if [[ $check1 == *'0'* ]] ; then
522
printf "\e[1;93mNot Found!\e[0m\n"
523
elif [[ $check1 == *'1'* ]]; then
524
525
printf "\e[1;92m Found!\e[0m https://keybase.io/%s\n" $username
526
printf "https://keybase.io/%s\n" $username >> $username.txt
527
fi
528
529
## Kongregate
530
531
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Kongregate: \e[0m"
532
check1=$(curl -s -i "https://kongregate.com/accounts/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?)
533
534
if [[ $check1 == *'0'* ]] ; then
535
printf "\e[1;93mNot Found!\e[0m\n"
536
elif [[ $check1 == *'1'* ]]; then
537
538
printf "\e[1;92m Found!\e[0m https://kongregate.com/accounts/%s\n" $username
539
printf "https://kongregate.com/accounts/%s\n" $username >> $username.txt
540
fi
541
542
## Livejournal
543
544
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] LiveJournal: \e[0m"
545
check1=$(curl -s -i "https://$username.livejournal.com" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?)
546
547
if [[ $check1 == *'0'* ]] ; then
548
printf "\e[1;93mNot Found!\e[0m\n"
549
elif [[ $check1 == *'1'* ]]; then
550
551
printf "\e[1;92m Found!\e[0m https://%s.livejournal.com\n" $username
552
printf "https://%s.livejournal.com\n" $username >> $username.txt
553
fi
554
555
## AngelList
556
557
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] AngelList: \e[0m"
558
check1=$(curl -s -i "https://angel.co/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?)
559
560
if [[ $check1 == *'0'* ]] ; then
561
printf "\e[1;93mNot Found!\e[0m\n"
562
elif [[ $check1 == *'1'* ]]; then
563
564
printf "\e[1;92m Found!\e[0m https://angel.co/%s\n" $username
565
printf "https://angel.co/%s\n" $username >> $username.txt
566
fi
567
568
## Last.fm
569
570
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] last.fm: \e[0m"
571
check1=$(curl -s -i "https://last.fm/user/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
572
573
if [[ $check1 == *'0'* ]] ; then
574
printf "\e[1;93mNot Found!\e[0m\n"
575
elif [[ $check1 == *'1'* ]]; then
576
577
printf "\e[1;92m Found!\e[0m https://last.fm/user/%s\n" $username
578
printf "https://last.fm/user/%s\n" $username >> $username.txt
579
fi
580
581
## Dribbble
582
583
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Dribbble: \e[0m"
584
check1=$(curl -s -i "https://dribbble.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
585
586
if [[ $check1 == *'0'* ]] ; then
587
printf "\e[1;93mNot Found!\e[0m\n"
588
elif [[ $check1 == *'1'* ]]; then
589
590
printf "\e[1;92m Found!\e[0m https://dribbble.com/%s\n" $username
591
printf "https://dribbble.com/%s\n" $username >> $username.txt
592
fi
593
594
## Codecademy
595
596
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Codecademy: \e[0m"
597
check1=$(curl -s -i "https://www.codecademy.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
598
599
if [[ $check1 == *'0'* ]] ; then
600
printf "\e[1;93mNot Found!\e[0m\n"
601
elif [[ $check1 == *'1'* ]]; then
602
603
printf "\e[1;92m Found!\e[0m https://www.codecademy.com/%s\n" $username
604
printf "https://www.codecademy.com/%s\n" $username >> $username.txt
605
fi
606
607
## Gravatar
608
609
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Gravatar: \e[0m"
610
check1=$(curl -s -i "https://en.gravatar.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
611
612
if [[ $check1 == *'0'* ]] ; then
613
printf "\e[1;93mNot Found!\e[0m\n"
614
elif [[ $check1 == *'1'* ]]; then
615
616
printf "\e[1;92m Found!\e[0m https://en.gravatar.com/%s\n" $username
617
printf "https://en.gravatar.com/%s\n" $username >> $username.txt
618
fi
619
620
## Pastebin
621
622
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Pastebin: \e[0m"
623
check1=$(curl -s -i "https://pastebin.com/u/$username" -H "Accept-Language: en" -L --user-agent '"Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.3) Gecko/20010801"' | grep -o 'location: /index' ; echo $?)
624
625
if [[ $check1 == *'0'* ]] ; then
626
printf "\e[1;93mNot Found!\e[0m\n"
627
elif [[ $check1 == *'1'* ]]; then
628
629
printf "\e[1;92m Found!\e[0m https://pastebin.com/u/%s\n" $username
630
printf "https://pastebin.com/u/%s\n" $username >> $username.txt
631
fi
632
633
## Foursquare
634
635
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Foursquare: \e[0m"
636
check1=$(curl -s -i "https://foursquare.com/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?)
637
638
if [[ $check1 == *'0'* ]] ; then
639
printf "\e[1;93mNot Found!\e[0m\n"
640
elif [[ $check1 == *'1'* ]]; then
641
642
printf "\e[1;92m Found!\e[0m https://foursquare.com/%s\n" $username
643
printf "https://foursquare.com/%s\n" $username >> $username.txt
644
fi
645
646
## Roblox
647
648
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Roblox: \e[0m"
649
check1=$(curl -s -i "https://www.roblox.com/user.aspx?username=$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?)
650
651
if [[ $check1 == *'0'* ]] ; then
652
printf "\e[1;93mNot Found!\e[0m\n"
653
elif [[ $check1 == *'1'* ]]; then
654
655
printf "\e[1;92m Found!\e[0m https://www.roblox.com/user.aspx?username=%s\n" $username
656
printf "https://www.roblox.com/user.aspx?username=%s\n" $username >> $username.txt
657
fi
658
659
## Gumroad
660
661
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Gumroad: \e[0m"
662
check1=$(curl -s -i "https://www.gumroad.com/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?)
663
664
if [[ $check1 == *'0'* ]] ; then
665
printf "\e[1;93mNot Found!\e[0m\n"
666
elif [[ $check1 == *'1'* ]]; then
667
668
printf "\e[1;92m Found!\e[0m https://www.gumroad.com/%s\n" $username
669
printf "https://www.gumroad.com/%s\n" $username >> $username.txt
670
fi
671
672
## Newgrounds
673
674
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Newgrounds: \e[0m"
675
check1=$(curl -s -i "https://$username.newgrounds.com" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404 ' ; echo $?)
676
677
if [[ $check1 == *'0'* ]] ; then
678
printf "\e[1;93mNot Found!\e[0m\n"
679
elif [[ $check1 == *'1'* ]]; then
680
681
printf "\e[1;92m Found!\e[0m https://%s.newgrounds.com\n" $username
682
printf "https://%s.newgrounds.com\n" $username >> $username.txt
683
fi
684
685
## Wattpad
686
687
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Wattpad: \e[0m"
688
check1=$(curl -s -i "https://www.wattpad.com/user/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404 ' ; echo $?)
689
690
if [[ $check1 == *'0'* ]] ; then
691
printf "\e[1;93mNot Found!\e[0m\n"
692
elif [[ $check1 == *'1'* ]]; then
693
694
printf "\e[1;92m Found!\e[0m https://www.wattpad.com/user/%s\n" $username
695
printf "https://www.wattpad.com/user/%s\n" $username >> $username.txt
696
fi
697
698
## Canva
699
700
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Canva: \e[0m"
701
check1=$(curl -s -i "https://www.canva.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404 ' ; echo $?)
702
703
if [[ $check1 == *'0'* ]] ; then
704
printf "\e[1;93mNot Found!\e[0m\n"
705
elif [[ $check1 == *'1'* ]]; then
706
707
printf "\e[1;92m Found!\e[0m https://www.canva.com/%s\n" $username
708
printf "https://www.canva.com/%s\n" $username >> $username.txt
709
fi
710
711
## CreativeMarket
712
713
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] CreativeMarket: \e[0m"
714
check1=$(curl -s -i "https://creativemarket.com/$username" -H "Accept-Language: en" -L | grep -o '404eef72' ; echo $?)
715
716
if [[ $check1 == *'0'* ]] ; then
717
printf "\e[1;93mNot Found!\e[0m\n"
718
elif [[ $check1 == *'1'* ]]; then
719
720
printf "\e[1;92m Found!\e[0m https://creativemarket.com/%s\n" $username
721
printf "https://creativemarket.com/%s\n" $username >> $username.txt
722
fi
723
724
## Trakt
725
726
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Trakt: \e[0m"
727
check1=$(curl -s -i "https://www.trakt.tv/users/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404 ' ; echo $?)
728
729
if [[ $check1 == *'0'* ]] ; then
730
printf "\e[1;93mNot Found!\e[0m\n"
731
elif [[ $check1 == *'1'* ]]; then
732
733
printf "\e[1;92m Found!\e[0m https://www.trakt.tv/users/%s\n" $username
734
printf "https://www.trakt.tv/users/%s\n" $username >> $username.txt
735
fi
736
737
## 500px
738
739
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] 500px: \e[0m"
740
check1=$(curl -s -i "https://500px.com/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?)
741
742
if [[ $check1 == *'0'* ]] ; then
743
printf "\e[1;93mNot Found!\e[0m\n"
744
elif [[ $check1 == *'1'* ]]; then
745
746
printf "\e[1;92m Found!\e[0m https://500px.com/%s\n" $username
747
printf "https://500px.com/%s\n" $username >> $username.txt
748
fi
749
750
## Buzzfeed
751
752
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Buzzfeed: \e[0m"
753
check1=$(curl -s -i "https://buzzfeed.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
754
755
if [[ $check1 == *'0'* ]] ; then
756
printf "\e[1;93mNot Found!\e[0m\n"
757
elif [[ $check1 == *'1'* ]]; then
758
759
printf "\e[1;92m Found!\e[0m https://buzzfeed.com/%s\n" $username
760
printf "https://buzzfeed.com/%s\n" $username >> $username.txt
761
fi
762
763
## TripAdvisor
764
765
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] TripAdvisor: \e[0m"
766
check1=$(curl -s -i "https://tripadvisor.com/members/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
767
768
if [[ $check1 == *'0'* ]] ; then
769
printf "\e[1;93mNot Found!\e[0m\n"
770
elif [[ $check1 == *'1'* ]]; then
771
772
printf "\e[1;92m Found!\e[0m https://tripadvisor.com/members/%s\n" $username
773
printf "https://tripadvisor.com/members/%s\n" $username >> $username.txt
774
fi
775
776
## HubPages
777
778
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] HubPages: \e[0m"
779
check1=$(curl -s -i "https://$username.hubpages.com" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
780
781
if [[ $check1 == *'0'* ]] ; then
782
printf "\e[1;93mNot Found!\e[0m\n"
783
elif [[ $check1 == *'1'* ]]; then
784
785
printf "\e[1;92m Found!\e[0m https://%s.hubpages.com/\n" $username
786
printf "https://%s.hubpages.com/\n" $username >> $username.txt
787
fi
788
789
## Contently
790
791
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Contently: \e[0m"
792
check1=$(curl -s -i "https://$username.contently.com" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?)
793
794
if [[ $check1 == *'0'* ]] ; then
795
printf "\e[1;93mNot Found!\e[0m\n"
796
elif [[ $check1 == *'1'* ]]; then
797
798
printf "\e[1;92m Found!\e[0m https://%s.contently.com\n" $username
799
printf "https://%s.contently.com\n" $username >> $username.txt
800
fi
801
802
## Houzz
803
804
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Houzz: \e[0m"
805
check1=$(curl -s -i "https://houzz.com/user/$username" -H "Accept-Language: en" -L | grep -o 'an error has occurred' ; echo $?)
806
807
if [[ $check1 == *'0'* ]] ; then
808
printf "\e[1;93mNot Found!\e[0m\n"
809
elif [[ $check1 == *'1'* ]]; then
810
811
printf "\e[1;92m Found!\e[0m https://houzz.com/user/%s\n" $username
812
printf "https://houzz.com/user/%s\n" $username >> $username.txt
813
fi
814
815
## blip.fm
816
817
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] blip.fm: \e[0m"
818
check1=$(curl -s -i "https://blip.fm/$username" -H "Accept-Language: en" -L | grep -o '404 Not Found' ; echo $?)
819
820
if [[ $check1 == *'0'* ]] ; then
821
printf "\e[1;93mNot Found!\e[0m\n"
822
elif [[ $check1 == *'1'* ]]; then
823
824
printf "\e[1;92m Found!\e[0m https://blip.fm/%s\n" $username
825
printf "https://blip.fm/%s\n" $username >> $username.txt
826
fi
827
828
## Wikipedia
829
830
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Wikipedia: \e[0m"
831
check1=$(curl -s -i "https://www.wikipedia.org/wiki/User:$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404' ; echo $?)
832
833
if [[ $check1 == *'0'* ]] ; then
834
printf "\e[1;93mNot Found!\e[0m\n"
835
elif [[ $check1 == *'1'* ]]; then
836
837
printf "\e[1;92m Found!\e[0m https://www.wikipedia.org/wiki/User:%s\n" $username
838
printf "https://www.wikipedia.org/wiki/User:%s\n" $username >> $username.txt
839
fi
840
841
## HackerNews
842
843
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] HackerNews: \e[0m"
844
check1=$(curl -s -i "https://news.ycombinator.com/user?id=$username" -H "Accept-Language: en" -L | grep -o 'No such user' ; echo $?)
845
846
if [[ $check1 == *'0'* ]] ; then
847
printf "\e[1;93mNot Found!\e[0m\n"
848
elif [[ $check1 == *'1'* ]]; then
849
850
printf "\e[1;92m Found!\e[0m https://news.ycombinator.com/user?id=%s\n" $username
851
printf "https://news.ycombinator.com/user?id=%s\n" $username >> $username.txt
852
fi
853
854
## CodeMentor
855
856
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] CodeMentor: \e[0m"
857
check1=$(curl -s -i "https://www.codementor.io/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?)
858
859
if [[ $check1 == *'0'* ]] ; then
860
printf "\e[1;93mNot Found!\e[0m\n"
861
elif [[ $check1 == *'1'* ]]; then
862
863
printf "\e[1;92m Found!\e[0m https://www.codementor.io/%s\n" $username
864
printf "https://www.codementor.io/%s\n" $username >> $username.txt
865
fi
866
867
## ReverbNation
868
869
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] ReverbNation: \e[0m"
870
check1=$(curl -s -i "https://www.reverbnation.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?)
871
872
if [[ $check1 == *'0'* ]] ; then
873
printf "\e[1;93mNot Found!\e[0m\n"
874
elif [[ $check1 == *'1'* ]]; then
875
876
printf "\e[1;92m Found!\e[0m https://www.reverbnation.com/%s\n" $username
877
printf "https://www.reverbnation.com/%s\n" $username >> $username.txt
878
fi
879
880
## Designspiration 65
881
882
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Designspiration: \e[0m"
883
check1=$(curl -s -i "https://www.designspiration.net/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?)
884
885
if [[ $check1 == *'0'* ]] ; then
886
printf "\e[1;93mNot Found!\e[0m\n"
887
elif [[ $check1 == *'1'* ]]; then
888
889
printf "\e[1;92m Found!\e[0m https://www.designspiration.net/%s\n" $username
890
printf "https://www.designspiration.net/%s\n" $username >> $username.txt
891
fi
892
893
## Bandcamp
894
895
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Bandcamp: \e[0m"
896
check1=$(curl -s -i "https://www.bandcamp.com/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?)
897
898
if [[ $check1 == *'0'* ]] ; then
899
printf "\e[1;93mNot Found!\e[0m\n"
900
elif [[ $check1 == *'1'* ]]; then
901
902
printf "\e[1;92m Found!\e[0m https://www.bandcamp.com/%s\n" $username
903
printf "https://www.bandcamp.com/%s\n" $username >> $username.txt
904
fi
905
906
907
## ColourLovers
908
909
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] ColourLovers: \e[0m"
910
check1=$(curl -s -i "https://www.colourlovers.com/love/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?)
911
912
if [[ $check1 == *'0'* ]] ; then
913
printf "\e[1;93mNot Found!\e[0m\n"
914
elif [[ $check1 == *'1'* ]]; then
915
916
printf "\e[1;92m Found!\e[0m https://www.colourlovers.com/love/%s\n" $username
917
printf "https://www.colourlovers.com/love/%s\n" $username >> $username.txt
918
fi
919
920
921
## IFTTT
922
923
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] IFTTT: \e[0m"
924
check1=$(curl -s -i "https://www.ifttt.com/p/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?)
925
926
if [[ $check1 == *'0'* ]] ; then
927
printf "\e[1;93mNot Found!\e[0m\n"
928
elif [[ $check1 == *'1'* ]]; then
929
930
printf "\e[1;92m Found!\e[0m https://www.ifttt.com/p/%s\n" $username
931
printf "https://www.ifttt.com/p/%s\n" $username >> $username.txt
932
fi
933
934
## Ebay
935
936
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Ebay: \e[0m"
937
check1=$(curl -s -i "https://www.ebay.com/usr/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found\|eBay Profile - error' ; echo $?)
938
939
if [[ $check1 == *'0'* ]] ; then
940
printf "\e[1;93mNot Found!\e[0m\n"
941
elif [[ $check1 == *'1'* ]]; then
942
943
printf "\e[1;92m Found!\e[0m https://www.ebay.com/usr/%s\n" $username
944
printf "https://www.ebay.com/usr/%s\n" $username >> $username.txt
945
fi
946
947
## Slack
948
949
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Slack: \e[0m"
950
check1=$(curl -s -i "https://$username.slack.com" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?)
951
952
if [[ $check1 == *'0'* ]] ; then
953
printf "\e[1;93mNot Found!\e[0m\n"
954
elif [[ $check1 == *'1'* ]]; then
955
956
printf "\e[1;92m Found!\e[0m https://%s.slack.com\n" $username
957
printf "https://%s.slack.com\n" $username >> $username.txt
958
fi
959
960
## OkCupid
961
962
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] OkCupid: \e[0m"
963
check1=$(curl -s -i "https://www.okcupid.com/profile/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?)
964
965
if [[ $check1 == *'0'* ]] ; then
966
printf "\e[1;93mNot Found!\e[0m\n"
967
elif [[ $check1 == *'1'* ]]; then
968
969
printf "\e[1;92m Found!\e[0m https://www.okcupid.com/profile/%s\n" $username
970
printf "https://www.okcupid.com/profile/%s\n" $username >> $username.txt
971
fi
972
973
## Trip
974
975
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Trip: \e[0m"
976
check1=$(curl -s -i "https://www.trip.skyscanner.com/user/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found\|HTTP/2 410' ; echo $?)
977
978
if [[ $check1 == *'0'* ]] ; then
979
printf "\e[1;93mNot Found!\e[0m\n"
980
elif [[ $check1 == *'1'* ]]; then
981
982
printf "\e[1;92m Found!\e[0m https://www.trip.skyscanner.com/user/%s\n" $username
983
printf "https://www.trip.skyscanner.com/user/%s\n" $username >> $username.txt
984
fi
985
986
## Ello
987
988
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Ello: \e[0m"
989
check1=$(curl -s -i "https://ello.co/$username" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?)
990
991
if [[ $check1 == *'0'* ]] ; then
992
printf "\e[1;93mNot Found!\e[0m\n"
993
elif [[ $check1 == *'1'* ]]; then
994
995
printf "\e[1;92m Found!\e[0m https://ello.co/%s\n" $username
996
printf "https://ello.co/%s\n" $username >> $username.txt
997
fi
998
999
## Tracky
1000
1001
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Tracky: \e[0m"
1002
check1=$(curl -s -i "https://tracky.com/user/$username" -H "Accept-Language: en" -L | grep -o 'profile:username' ; echo $?)
1003
1004
if [[ $check1 == *'1'* ]] ; then
1005
printf "\e[1;93mNot Found!\e[0m\n"
1006
elif [[ $check1 == *'0'* ]]; then
1007
1008
printf "\e[1;92m Found!\e[0m https://tracky.com/~%s\n" $username
1009
printf "https://tracky.com/~%s\n" $username >> $username.txt
1010
fi
1011
1012
## Tripit
1013
1014
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Tripit: \e[0m"
1015
check1=$(curl -s -i "https://www.tripit.com/people/$username#/profile/basic-info" -H "Accept-Language: en" -L | grep -o 'location: https://www.tripit.com/home' ; echo $?)
1016
1017
if [[ $check1 == *'0'* ]] ; then
1018
printf "\e[1;93mNot Found!\e[0m\n"
1019
elif [[ $check1 == *'1'* ]]; then
1020
1021
printf "\e[1;92m Found!\e[0m https://www.tripit.com/people/%s#/profile/basic-info\n" $username
1022
printf "https://www.tripit.com/people/%s#/profile/basic-info\n" $username >> $username.txt
1023
fi
1024
1025
## Basecamp
1026
1027
printf "\e[1;77m[\e[0m\e[1;92m+\e[0m\e[1;77m] Basecamp: \e[0m"
1028
check1=$(curl -s -i "https://$username.basecamphq.com/login" -H "Accept-Language: en" -L | grep -o 'HTTP/2 404\|404 Not Found' ; echo $?)
1029
1030
if [[ $check1 == *'0'* ]] ; then
1031
printf "\e[1;93mNot Found!\e[0m\n"
1032
elif [[ $check1 == *'1'* ]]; then
1033
1034
printf "\e[1;92m Found!\e[0m https://%s.basecamphq.com/login\n" $username
1035
printf "https://%s.basecamphq.com/login\n" $username >> $username.txt
1036
1037
fi
1038
partial
1039
}
1040
banner
1041
scanner
1042
1043
1044