-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathPenetration Testing 1 - Information Gathering.txt
2314 lines (2124 loc) · 102 KB
/
Penetration Testing 1 - Information Gathering.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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1 - Information Gathering
1.2 - Open-Source Intelligence (OSINT)
Via
Social Networks
Weakest link Humans
Sophisticates atatcks
Allows phishing and impersonation attacks and technical maps of systems and technologies.
Linked-In example
Advanced search, Specify company, position and location.
Public Sites
Crunchbase IT startup database to locate information on founders, employees etc.
Government sites.
Whois
Owner name, street address, emaila ddress technical contacts.
Company Websites
Products, services, tech, company culture.
90% of time spent on widening the attach surface
10% launching the correct commands with the correct tool.
Cyclic process.
Penetration test only as strong as your weakest skill.
https://medium.com/@adam.toscher/top-five-ways-the-red-team-breached-the-external-perimeter-262f99dc9d17
## [Shodan Hat](https://github.com/HatBashBR/ShodanHat)
https://github.com/jivoi/awesome-osint
# Awesome OSINT [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome)
[<img src="https://github.com/jivoi/awesome-osint/raw/master/osint_logo.png" align="right" width="100">](https://github.com/jivoi/awesome-osint)
A curated list of amazingly awesome open source intelligence tools and resources.
[Open-source intelligence (OSINT)](https://en.wikipedia.org/wiki/Open-source_intelligence) is intelligence collected from publicly available sources.
In the intelligence community (IC), the term "open" refers to overt, publicly available sources (as opposed to covert or clandestine sources)
## Contents
- [General Search](#-general-search)
- [Main National Search Engines](#-main-national-search-engines)
- [Meta Search](#-meta-search)
- [Specialty Search Engines](#-specialty-search-engines)
- [Visual Search and Clustering Search Engines](#-visual-search-and-clustering-search-engines)
- [Similar Sites Search](#-similar-sites-search)
- [Document and Slides Search](#-document-and-slides-search)
- [Pastebins](#-pastebins)
- [Code Search](#-code-search)
- [Major Social Networks](#-major-social-networks)
- [Real-Time Search, Social Media Search, and General Social Media Tools](#-real-time-search-social-media-search-and-general-social-media-tools)
- [Social Media Tools](#social-media-tools)
- [Twitter](#-twitter)
- [Facebook](#-facebook)
- [Google+](#-google)
- [Instagram](#-instagram)
- [Pinterest](#-pinterest)
- [Reddit](#-reddit)
- [VKontakte](#-vkontakte)
- [Tumblr](#-tumblr)
- [LinkedIn](#-linkedin)
- [Blog Search](#-blog-search)
- [Forums and Discussion Boards Search](#-forums-and-discussion-boards-search)
- [Username Check](#-username-check)
- [People Investigations](#-people-investigations)
- [E-mail Search / E-mail Check](#-e-mail-search--e-mail-check)
- [Phone Number Research](#-phone-number-research)
- [Expert Search](#-expert-search)
- [Company Research](#-company-research)
- [Job Search Resources](#-job-search-resources)
- [Q&A Sites](#-qa-sites)
- [Domain and IP Research](#-domain-and-ip-research)
- [Keywords Discovery and Research](#-keywords-discovery-and-research)
- [Web History and Website Capture](#-web-history-and-website-capture)
- [Language Tools](#-language-tools)
- [Image Search](#-image-search)
- [Image Analysis](#-image-analysis)
- [Stock Images](#-stock-images)
- [Video Search and Other Video Tools](#-video-search-and-other-video-tools)
- [Radio and Podcasts Tools](#-radio-and-podcasts-tools)
- [Academic Resources and Grey Literature](#-academic-resources-and-grey-literature)
- [Books and Reading](#-books-and-reading)
- [Geospatial Research and Mapping Tools](#-geospatial-research-and-mapping-tools)
- [News](#-news)
- [News Digest and Discovery Tools](#-news-digest-and-discovery-tools)
- [Fact Checking](#-fact-checking)
- [Data and Statistics](#-data-and-statistics)
- [Web Monitoring](#-web-monitoring)
- [Bookmarking](#-bookmarking)
- [Startpages](#-startpages)
- [Browsers](#-browsers)
- [Offline Browsing](#-offline-browsing)
- [VPN Services](#-vpn-services)
- [Note-taking](#-note-taking)
- [Annotation Tools](#-annotation-tools)
- [Writing and Office Tools](#-writing-and-office-tools)
- [Slide Show and Presentation Tools](#-slide-show-and-presentation-tools)
- [Digital Publishing](#-digital-publishing)
- [Newsletter Tools](#-newsletter-tools)
- [Digital Storytelling](#-digital-storytelling)
- [Infographics and Data Visualization](#-infographics-and-data-visualization)
- [Image and Photo Editing](#-image-and-photo-editing)
- [Productivity Tools](#-productivity-tools)
- [E-mail Management](#-e-mail-management)
- [Document and Reference Management](#-document-and-reference-management)
- [PDF Management](#-pdf-management)
- [OCR Tools](#-ocr-tools)
- [Cloud Storage and File Sharing](#-cloud-storage-and-file-sharing)
- [Web Automation](#-web-automation)
- [Dashboard Tools](#-dashboard-tools)
- [Wikis](#-wikis)
- [Collaboration and Project Management](#-collaboration-and-project-management)
- [Communication Tools](#-communication-tools)
- [Calendars and Scheduling](#-calendars-and-scheduling)
- [Mind Mapping, Concept Mapping and Idea Generation Tools](#-mind-mapping-concept-mapping-and-idea-generation-tools)
- [Social Network Analysis](#-social-network-analysis)
- [Privacy and Encryption Tools](#-privacy-and-encryption-tools)
- [DNS](#-dns)
- [Other Tools](#-other-tools)
- [OSINT Videos](#-osint-videos)
## [↑](#contents) Contributing
Please read [CONTRIBUTING](./CONTRIBUTING.md) if you wish to add tools or resources.
## [↑](#contents) Credits
This list was taken directly from [i-inteligence's](http://www.i-intelligence.eu) [OSINT Tools and Resources Handbook](http://www.i-intelligence.eu/open-source-intelligence-tools-and-resources-handbook/). I-intelligence is dedicated to helping you improve your ability to collect, analyze, manage, share and communicate information, whether in support of government policy or in pursuit of competitive advantage.
## [↑](#contents) General Search
*The main search engines used by users.*
* [Advangle](http://advangle.com)
* [Aol](http://search.aol.com)
* [Ask](http://www.ask.com)
* [Bing](http://www.bing.com)
* [Better Search](https://chrome.google.com/webstore/detail/better-search/ipicopkjbiphdmegamfkeieghhmcjema)
* [Dothop](http://dothop.com)
* [DuckDuckGo](https://duckduckgo.com) - an Internet search engine that emphasizes protecting searchers' privacy.
* [Factbites](http://www.factbites.com)
* [Gigablast](http://gigablast.com)
* [Goodsearch](http://www.goodsearch.com)
* [Google Search](http://www.google.com) - Most popular search engine.
* [Instya](http://www.instya.com)
* [Impersonal.me](http://www.impersonal.me)
* [iSEEK Education](http://education.iseek.com/iseek/home.page)
* [ixquick](https://www.ixquick.com)
* [Lycos](http://www.lycos.com)
* [Parseek (Iran)](http://www.parseek.com)
* [Peeplo](http://www.peeplo.com)
* [Search.com](http://www.search.com)
* [SurfCanyon](http://www.surfcanyon.com)
* [Teoma](http://www.teoma.com)
* [Wolfram Alpha](http://www.wolframalpha.com)
* [Yahoo! Search](http://www.yahoo.com) -
## [↑](#contents) Main National Search Engines
*Localized search engines by country.*
* [Alleba (Philippines)](http://www.alleba.com) - Philippines search engine
* [Baidu (China)](http://www.baidu.com) - The major search engine used in China
* [Daum (South Korea)](http://www.daum.net)
* [Eniro (Sweden)](http://www.eniro.se)
* [Goo (Japan)](http://www.goo.ne.jp)
* [Najdsi (Slovenia)](http://www.najdi.si)
* [Naver (South Korea)](http://www.naver.com)
* [Onet.pl (Poland)](http://www.onet.pl)
* [Orange (France)](http://www.orange.fr)
* [Parseek (Iran)](http://www.parseek.com)
* [SAPO (Portugal)](http://www.sapo.pt)
* [Search.ch (Switzerland)](http://www.search.ch)
* [Walla (Israel)](http://www.walla.co.il)
* [Yandex (Russia)](http://www.yandex.com)
## [↑](#contents) Meta Search
*Lesser known and used search engines.*
* [All-in-One](http://all-io.net)
* [AllTheInternet](http://www.alltheinternet.com)
* [Etools](http://www.etools.ch)
* [FaganFinder](http://www.faganfinder.com/engines)
* [Glearch](http://www.glearch.com)
* [Goofram](http://www.goofram.com)
* [iZito](http://www.izito.com)
* [Nextaris](http://www.nextaris.com)
* [Metabear](http://www.metabear.com)
* [Myallsearch](http://www.myallsearch.com)
* [Qrobe](http://qrobe.it)
* [Qwant](http://www.qwant.com)
* [Sputtr](http://www.sputtr.com)
* [Trovando](http://www.trovando.it)
* [WiinkZ](http://www.wiinkz.com)
* [Zapmeta](http://www.zapmeta.com)
## [↑](#contents) Specialty Search Engines
*Search engines for specific information or topics.*
* [2lingual Search](http://www.2lingual.com)
* [Biznar](http://biznar.com)
* [CiteSeerX](http://citeseer.ist.psu.edu)
* [FindTheCompany](http://www.findthecompany.com)
* [Digle](https://www.digle.com)
* [Google Custom Search](http://www.google.com/cse)
* [Harmari (Unified Listings Search)](https://www.harmari.com/search/unified)
* [Internet Archive](https://archive.org/)
* [Million Short](https://millionshort.com)
* [WorldWideScience.org](http://worldwidescience.org)
* [Zanran](http://zanran.com)
## [↑](#contents) Visual Search and Clustering Search Engines
*Search engines that scrape multiple sites (Google, Yahoo, Bing, Goo, etc) at the same time and return results.*
* [Carrot2](http://search.carrot2.org) - Organizes your search results into topics.
* [Cluuz](http://www.cluuz.com) - Generates easier to understand search results through graphs, images, and tag clouds.
* [Yippy](http://yippy.com) - Search using multiple sources at once
## [↑](#contents) Similar Sites Search
*Find websites that are similar. Good for business competition research.*
* [Google Similar Pages](https://chrome.google.com/webstore/detail/google-similar-pages/pjnfggphgdjblhfjaphkjhfpiiekbbej)
* [SimilarPages](http://www.similarpages.com) - Find pages similar to each other
* [SimilarSites](http://www.similarsites.com) - Discover websites that are similar to each other
* [SitesLike](http://www.siteslike.com) - Find similar websites by category
## [↑](#contents) Document and Slides Search
*Search for data located on PDFs, Word documents, presentation slides, and more.*
* [Authorstream](http://www.authorstream.com)
* [Find-pdf-doc](http://www.findpdfdoc.com)
* [Free Full PDF](http://www.freefullpdf.com)
* [Hashdoc](https://www.hashdoc.com)
* [Offshore Leak Database](https://offshoreleaks.icij.org)
* [PasteLert](http://andrewmohawk.com/pasteLert/index.php)
* [PDF Search Engine](http://www.pdfsearchengine.info)
* [PDFgive](http://pdfgive.net)
* [PDFSB](http://pdfsb.net)
* [PDFSR](http://pdfsr.com)
* [PPTHunter](http://www.ppthunter.com)
* [RECAP](http://archive.recapthelaw.org)
* [Scribd](http://www.scribd.com)
* [SlideShare](http://www.slideshare.net)
* [Slideworld](http://www.slideworld.com)
* [soPDF.com](http://www.sopdf.com)
## [↑](#contents) Pastebins
*Find information that has been uploaded to Pastebin.*
* [Custom Pastebin Search](https://inteltechniques.com/osint/menu.pastebins.html) - A custom search page that indexes 57 different paste sites.
* [PasteLert](http://andrewmohawk.com/pasteLert) - PasteLert is a simple system to search pastebin.com and set up alerts (like google alerts) for pastebin.com entries.
## [↑](#contents) Code Search
*Search by website source code*
* [CoCaBu](http://code-search.uni.lu/cocabu) - Search engine that augments user query into code-friendly for retrieving precise examples.
* [FaCoY](http://code-search.uni.lu/facoy) - Search engine that retrieves code examples that are syntactically and semantically similar.
* [NerdyData](https://search.nerdydata.com) - Search engine for source code.
* [SearchCode](https://searchcode.com) - Help find real world examples of functions, API's and libraries across 10+ sources.
## [↑](#contents) Major Social Networks
* [Draugiem (Latvia)](https://www.draugiem.lv)
* [Facebook](http://www.facebook.com)
* [Facenama (Iran)](http://facenama.com)
* [Google+](https://plus.google.com)
* [Instagram](https://www.instagram.com)
* [Linkedin](https://www.linkedin.com)
* [Mixi (Japan)](https://mixi.jp)
* [Odnoklassniki (Russia)](http://ok.ru)
* [Pinterest](http://www.pinterest.com)
* [Qzone (China)](http://qzone.qq.com)
* [Reddit](https://www.reddit.com)
* [Taringa (Latin America)](http://www.taringa.net)
* [Tinder](https://www.gotinder.com)
* [Tumblr](https://www.tumblr.com)
* [Twitter](https://twitter.com)
* [Weibo (China)](http://weibo.com)
* [VKontakte](https://vk.com)
* [Xing](https://www.xing.com)
## [↑](#contents) Real-Time Search, Social Media Search, and General Social Media Tools
* [Audiense](https://www.audiense.com)
* [Bottlenose](http://bottlenose.com)
* [Brandwatch](https://www.brandwatch.com)
* [Buffer](https://buffer.com)
* [Buzz sumo](http://buzzsumo.com)
* [Flumes](http://flumes.com)
* [Gaddr](https://gaddr.me)
* [Geocreepy](http://www.geocreepy.com)
* [Geofeedia](https://geofeedia.com)
* [Hootsuite](http://hootsuite.com)
* [HowSociable](http://www.howsociable.com)
* [Hashtatit](http://www.hashatit.com)
* [Icerocket](http://www.icerocket.com)
* [Klear](http://klear.com)
* [Klout](http://klout.com)
* [Kred](http://kred.com)
* [MustBePresent](http://mustbepresent.com)
* [Netvibes](http://www.netvibes.com)
* [OpinionCrawl](http://www.opinioncrawl.com)
* [Rival IQ](https://www.rivaliq.com)
* [RSS Social Analyzer](https://chrome.google.com/webstore/detail/rss-social-analyzer/ncmajlpbfckecekfamgfkmckbpihjfdn?hl=en)
* [SmashFuse](http://smashfuse.com)
* [SocialBakers](http://www.socialbakers.com)
* [SociaBlade](http://socialblade.com)
* [Social DownORNot](http://social.downornot.com)
* [Social Mention](http://socialmention.com)
* [Social Searcher](http://www.social-searcher.com)
* [Tagboard](https://tagboard.com)
* [Trackur](http://www.trackur.com)
* [UVRX](http://www.uvrx.com/social.html)
## Social Media Tools
### [↑](#contents) Twitter
* [Backtweets](http://backtweets.com)
* [Blue Nod](http://bluenod.com)
* [burrrd.](https://burrrd.com)
* [Crate](https://getcrate.co)
* [Custom Twitter Tools](https://inteltechniques.com/osint/menu.twitter.html)
* [doesfollow](https://doesfollow.com)
* [Fake Follower Check](https://fakers.statuspeople.com)
* [FirstTweet](https://discover.twitter.com/first-tweet#i_intelligence)
* [First Tweet](http://ctrlq.org/first)
* [Foller.me](http://foller.me)
* [FollowCheck](http://followcheck.com)
* [Followerwonk](http://followerwonk.com)
* [Geochirp](http://www.geochirp.com)
* [GeoSocial Footprint](http://geosocialfootprint.com)
* [GetTwitterID](http://gettwitterid.com)
* [Gigatweeter](http://gigatweeter.com)
* [Ground Signal](https://www.groundsignal.com)
* [HappyGrumpy](https://www.happygrumpy.com)
* [Harvard TweetMap](http://worldmap.harvard.edu/tweetmap)
* [Hashtagify](http://hashtagify.me)
* [Hashtags.org](http://www.hashtags.org)
* [InTweets](http://intweets.com)
* [ManageFlitter](http://manageflitter.com)
* [Mentionmapp](http://mentionmapp.com)
* [OneMillionTweetMap](http://onemilliontweetmap.com)
* [Queryfeed](https://queryfeed.net)
* [Rank Speed](http://www.rankspeed.com)
* [Riffle](http://crowdriff.com/riffle/)
* [RiteTag](https://ritetag.com)
* [Sentiment140](http://www.twittersentiment.appspot.com)
* [Silver Bird](https://chrome.google.com/webstore/detail/silver-bird/encaiiljifbdbjlphpgpiimidegddhic?hl=en)
* [SnapBird](http://snapbird.org)
* [Sleeping Time](http://sleepingtime.org)
* [Social Bearing](http://www.socialbearing.com)
* [Social Rank First Follower](http://socialrank.com/firstfollower)
* [Spoonbill](http://spoonbill.io)
* [Tagdef](https://tagdef.com)
* [TeachingPrivacy](http://app.teachingprivacy.com)
* [Tinfoleak](https://tinfoleak.com)
* [Trends24](http://trends24.in)
* [TrendsMap](http://trendsmap.com)
* [Twazzup](http://www.twazzup.com)
* [twbirthday](http://twbirthday.com)
* [TwChat](http://twchat.com)
* [tweepsect](http://tweepsect.com)
* [Tweet4me](http://tweet4.me)
* [TweetArchivist](http://www.tweetarchivist.com)
* [Tweet Chat](http://www.tweetchat.com)
* [TweetDeck](https://www.tweetdeck.com)
* [Tweeten](http://tweeten.xyz)
* [TweetMap](http://mapd.csail.mit.edu/tweetmap)
* [TweetMap](http://worldmap.harvard.edu/tweetmap)
* [Tweetpaths](http://www.tweetpaths.com)
* [TweetPsych](http://tweetpsych.com)
* [Tweetreach](http://tweetreach.com)
* [TweetStats](http://www.tweetstats.com)
* [Tweet Tag](http://www.tweet-tag.com)
* [TweetTunnel](http://tweettunnel.com)
* [Twellow](http://www.twellow.com)
* [Tweriod](http://www.tweriod.com)
* [Twiangulate](http://www.twiangulate.com)
* [Twicsy](http://twicsy.com)
* [Twilert](http://www.twilert.com)
* [Twipho](http://www.twipho.net)
* [Twitonomy](http://www.twitonomy.com)
* [TwitRSS](https://twitrss.me)
* [Twitter Advanced Search](https://twitter.com/search-advanced?lang=en)
* [Twitter Audit](https://www.twitteraudit.com)
* [Twitter Chat Schedule](http://tweetreports.com/twitter-chat-schedule)
* [Twitter Counter](http://twittercounter.com)
* [Twitterfall](http://twitterfall.com)
* [Twitter Search](http://search.twitter.com)
* [Twitter Search Tools](https://inteltechniques.com/intel/OSINT/twitter.html)
* [TWUBS Twitter Chat](http://twubs.com/twitter-chats)
* [Schedule Warble](https://warble.co)
### [↑](#contents) Facebook
* [Agora Pulse](http://barometer.agorapulse.com)
* [Commun.it](http://commun.it)
* [Custom Facebook Tools](https://inteltechniques.com/osint/menu.facebook.html)
* [ExtractFace](http://le-tools.com/ExtractFace.html#download)
* [Fanpage Karma](http://www.fanpagekarma.com)
* [Facebook Search](http://search.fb.com/)
* [Facebook Search Tool](http://netbootcamp.org/facebook.html)
* [Facebook Search Tools](https://inteltechniques.com/intel/OSINT/facebook.html)
* [FaceLIVE](https://www.facelive.org)
* [Fb-sleep-stats](https://github.com/sqren/fb-sleep-stats)
* [Find my Facebook ID](https://findmyfbid.in)
* [LikeAlyzer](http://likealyzer.com)
* [Lookup-ID.com](https://lookup-id.com)
* [SearchIsBack](https://searchisback.com)
* [Socialsearching](http://socialsearching.info/#/fb)
* [Wallfux](https://www.wallflux.com)
* [Wolfram Alpha Facebook Report](http://www.wolframalpha.com/input/?i=facebook+report)
* [Zesty Facebook Search](http://zesty.ca/facebook)
### [↑](#contents) Google+
* [CircleCount](http://www.circlecount.com)
* [Google Plus Search](http://googleplussearch.chromefans.org)
* [PlusFeed](http://plusfeed.frosas.net)
### [↑](#contents) Instagram
* [Custom Instagram Search Tools](https://inteltechniques.com/osint/menu.instagram.html)
* [Hashtagify](http://hashtagify.me)
* [Iconosquare](http://iconosquare.com)
* [Ink361](http://ink361.com)
* [Picodash](https://www.picodash.com)
* [SnapMap](https://snapmap.knightlab.com/)
* [Social Rank](https://www.socialrank.com)
* [Tofo.me](https://tofo.me)
* [Websta (Instagram)](http://websta.me)
* [Worldcam](http://worldc.am)
### [↑](#contents) Pinterest
* [Pingroupie](http://pingroupie.com)
* [Pin Search](https://chrome.google.com/webstore/detail/pin-search-image-search-o/okiaciimfpgbpdhnfdllhdkicpmdoakm)
### [↑](#contents) Reddit
*Tools to help discover more about a reddit user or subreddit.*
* [Imgur](http://imgur.com/search?q=) - The most popular image hosting website used by redditors.
* [Metareddit](http://metareddit.com) - Explore various subreddits.
* [Mostly Harmless](http://kerrick.github.io/Mostly-Harmless/#features) - Mostly Harmless looks up the page you are currently viewing to see if it has been submitted to reddit.
* [Reddit Archive](http://www.redditarchive.com) - Historical archives of reddit posts.
* [Reddit Suite](https://chrome.google.com/webstore/detail/reddit-enhancement-suite/kbmfpngjjgdllneeigpgjifpgocmfgmb) - Enhances your reddit experience.
* [Reddit Investigator](http://www.redditinvestigator.com) - Investigate a reddit users history.
* [Reddit Metrics](http://redditmetrics.com) - Keeps track of the growth of a subreddit.
* [Reddit User Analyser](https://atomiks.github.io/reddit-user-analyser/) - reddit user account analyzer.
* [SnoopSnoo](http://snoopsnoo.com) - Provides reddit user and subreddits analytics.
* [Subreddits](http://subreddits.org) - Discover new subreddits.
* [Reddit Comment Search](https://redditcommentsearch.com/) - Analyze a reddit users by comment history.
### [↑](#contents) VKontakte
*Perform various OSINT on Russian social media site VKontakte.*
* [Дезертир](http://vk.com/app3046467)
* [Barkov.net](http://vk.barkov.net)
* [Find Face](http://findface.ru) - Search for people on VK by photo.
* [Report Tree](http://dcpu.ru/vk_repost_tree.php)
* [Social Stats](http://socialstats.ru)
* [Spotlight](http://spotlight.svezet.ru)
* [Snradar](http://snradar.azurewebsites.net) - Search pictures by time and location they were taken
* [Target Hunter](https://targethunter.net)
* [Target Log](http://targetolog.com)
* [VK5](http://vk5.city4me.com)
* [VK Community Search](http://vk.com/communities)
* [VK Parser](http://vkparser.ru) - A tool to search for a target audience and potential customers.
* [VK People Search](http://vk.com/people)
* [VK to RSS Appspot](http://vk-to-rss.appspot.com)
### [↑](#contents) Tumblr
* [Searchlr](http://searchlr.net) - Search engine for tumblr posts.
* [Tumblr Search](http://www.tumblr.com/search)
### [↑](#contents) LinkedIn
* [FTL](https://chrome.google.com/webstore/detail/ftl/lkpekgkhmldknbcgjicjkomphkhhdkjj?hl=en-GB) - Browser plugin that finds emails of people's profiles in LinkedIn.
## [↑](#contents) Blog Search
* [BlogSearchEngine](http://www.blogsearchengine.org)
* [Icerocket](http://www.icerocket.com)
* [NetworkedBlogs](http://www.networkedblogs.com)
* [Notey](http://www.notey.com) - Blog post search engine.
* [Sphere](https://www.sphere.com)
* [Twingly](http://www.twingly.com)
## [↑](#contents) Forums and Discussion Boards Search
* [Boardreader](http://boardreader.com)
* [Facebook Groups](https://www.facebook.com)
* [Google Groups](https://groups.google.com)
* [Linkedin Groups](http://www.linkedin.com)
* [Ning](http://www.ning.com)
* [Omgili](http://omgili.com)
* [Xing Groups](https://www.xing.com/communities)
* [Yahoo Groups](https://groups.yahoo.com)
## [↑](#contents) Username Check
* [Check User Names](http://www.checkusernames.com)
* [Custom Username Tools](https://inteltechniques.com/osint/menu.user.html)
* [Gaddr](https://gaddr.me) - Scan 50+ different websites for usernames.
* [Knowem](http://www.Knowem.com) - Search for a username on over 500 popular social networks.
* [Name Chk](http://www.namechk.com)
* [Name Checkr](http://www.namecheckr.com)
* [User Search](http://www.usersearch.org)
## [↑](#contents) People Investigations
* [411 (US)](http://www.411.com)
* [192 (UK)](http://www.192.com)
* [Alumni.net](http://www.alumni.net)
* [Ancestry](http://www.ancestry.com)
* [Canada411](http://www.canada411.ca)
* [Cedar](http://www.cedar.buffalo.edu/AdServ/person-search.html)
* [Charlie App](https://charlieapp.com)
* [Classmates](http://www.classmates.com)
* [CrunchBase](http://www.crunchbase.com)
* [Custom Person Search Tools](https://inteltechniques.com/osint/menu.name.html)
* [CVGadget](http://www.cvgadget.com)
* [Data 24-7](https://www.data24-7.com)
* [Gaddr](https://gaddr.me)
* [facesearch](http://facesaerch.com) - Search for images of a person by name.
* [Family Search](https://familysearch.org)
* [Family Tree Now](http://www.familytreenow.com/)
* [Federal Bureau of Prisons - Inmate Locator (US)](http://www.bop.gov/inmateloc) - Find an inmate that is in the Federal Bureau of Prisons system.
* [Fold3 (US Military Records)](http://www.fold3.com) - Browse records of US Military members.
* [Forebears](http://forebears.io)
* [Genealogy Bank](http://www.genealogybank.com)
* [Genealogy Links](http://www.genealogylinks.net)
* [Hey Press (Search for Journalists)](https://www.hey.press)
* [Homemetry](https://homemetry.com)
* [Infobel](http://www.infobel.com/en/world)
* [Infospace White Pages](http://infospace.com/home/white-pages)
* [Interment](http://www.interment.net/data/search.htm)
* [International White and Yellow Pages](http://www.wayp.com)
* [Itools](http://itools.com/search/people-search)
* [Kompass](http://www.kompass.com)
* [LookUpUK](http://www.lookupuk.com)
* [Lullar](http://com.lullar.com)
* [MarketVisual](http://www.marketvisual.com)
* [MelissaDATA](http://www.melissadata.com/lookups/peoplefinder.asp)
* [My Life People Search](https://www.mylife.com/people-search)
* [The National Archives (UK)](http://www.nationalarchives.gov.uk)
* [PeekYou](http://www.peekyou.com)
* [People Search (Australia)](http://www.peoplesearch.com.au)
* [PeopleSearch.net](http://www.peoplesearch.net)
* [Pipl](https://pipl.com)
* [Rapportive](http://rapportive.com)
* [RecordsPedia](http://recordspedia.com)
* [Recruitem](http://recruitin.net)
* [Reunion](http://reunion.com)
* [Rootsweb](http://home.rootsweb.ancestry.com)
* [SearchBug](http://www.searchbug.com)
* [Skip Ease](http://www.skipease.com)
* [snitch.name](http://www.snitch.name)
* [SnoopStation](http://snoopstation.com)
* [Spokeo](http://www.spokeo.com)
* [Switchboard](http://www.switchboard.com)
* [That’sThem](https://thatsthem.com)
* [USSearch](http://www.ussearch.com)
* [WebMiii](http://www.webmii.com)
* [White Pages (US)](http://www.whitepages.com)
* [Wink](http://itools.com/tool/wink-people-search)
* [Yasni](http://www.yasni.com)
* [Zabasearch](http://www.zabasearch.com)
* [Zoominfo](http://www.zoominfo.com)
## [↑](#contents) E-mail Search / E-mail Check
* [Breach OR Clear](http://breachorclear.jesterscourt.cc)
* [Custom Email Search Tools](https://inteltechniques.com/osint/menu.email.html)
* [BriteVerify Email Verification](http://www.briteverify.co.uk)
* [Email Address Validator](http://www.email-validator.net)
* [Email Format](http://email-format.com)
* [EmailHippo](https://tools.verifyemailaddress.io)
* [Email Hunter](https://emailhunter.co)
* [Email Permutator+](http://metricsparrow.com/toolkit/email-permutator)
* [Emails4corporations](https://sites.google.com/site/emails4corporations/home)
* [EmailSearch.net](http://www.email-search.org/search-emails)
* [Email Validator](https://chema.ga/emailvalidator/index.php)
* [Email Validator Tool](http://e-mailvalidator.com)
* [Have I Been Pwned](https://haveibeenpwned.com)
* [MailTester](http://mailtester.com/testmail.php)
* [Peepmail](http://www.samy.pl/peepmail)
* [Pipl](https://pipl.com)
* [ReverseGenie](http://www.reversegenie.com/email.php)
* [TCIPUTILS.com Email Test](http://www.tcpiputils.com/email-test)
* [ThatsThem](https://thatsthem.com/reverse-email-lookup)
* [Toofr](https://www.toofr.com)
* [Verify Email](http://verify-email.org)
* [VoilaNorbert](https://www.voilanorbert.com)
## [↑](#contents) Phone Number Research
* [National Cellular Directory](https://www.nationalcellulardirectory.com/) - was created to help people research and reconnect with one another by performing cell phone lookups. The lookup products includes have billions of records that can be accessed at any time, as well as free searches one hour a day, every day.
* [NumSpy-API](https://numspy.pythonanywhere.com) - find details of any mobile number in india for free and get a JSON formated output, inspired by [NumSpy](https://bhattsameer.github.io/numspy).
* [Reverse Phone Lookup](http://www.reversephonelookup.com/) - Detailed information about phone carrier, region, service provider, and switch information.
* [Spy Dialer](http://spydialer.com/) - Get the voicemail of a cell phone & owner name lookup.
* [Twilio](https://www.twilio.com/lookup) - Look up a phone numbers carrier type, location, etc.
* [Phone Validator](https://www.phonevalidator.com/index.aspx) - Pretty accurate phone lookup service, particularly good against Google Voice numbers.
## [↑](#contents) Expert Search
* [Academia](http://academia.edu)
* [AllExperts](http://www.allexperts.com)
* [CanLaw](http://www.canlaw.com)
* [ExpertiseFinder](http://www.expertisefinder.com)
* [ExpertGuide](http://www.expertguide.com.au)
* [ExpertPages](http://expertpages.com)
* [Experts.com](http://www.experts.com)
* [HARO](http://www.helpareporter.com)
* [HerSay](http://www.hersay.co.uk)
* [GlobalExperts](http://www.theglobalexperts.org)
* [Idealist](http://www.idealist.org)
* [Innocentive](http://www.innocentive.com)
* [Internet Experts](http://www.internetexperts.info)
* [Library of Congress: Ask a Librarian](http://www.loc.gov/rr/askalib)
* [Maven](http://www.maven.co)
* [MuckRack](http://muckrack.com)
* [National Speakers Association](http://www.nsaspeaker.org)
* [Newswise](http://www.newswise.com)
* [Patent Attorneys/Agent Search](https://oedci.uspto.gov/OEDCI)
* [PRNewswire](https://prnmedia.prnewswire.com)
* [ProfNet](http://www.prnewswire.com/profnet)
* [ReseacherID](http://www.researcherid.com)
* [ScholarUniverse](http://www.scholaruniverse.com)
* [SheSource](http://www.shesource.org)
* [Speakezee](https://www.speakezee.org)
* [Sources](http://www.sources.com)
* [TRExpertWitness](https://trexpertwitness.com)
* [Zintro](https://www.zintro.com)
## [↑](#contents) Company Research
* [AllStocksLinks](http://www.allstocks.com/links)
* [Battle of the Internet Giants](http://pennystocks.la/battle-of-internet-giants)
* [Better Business Bureau](http://www.bbb.org)
* [Bizeurope](http://www.bizeurope.com)
* [Biznar](http://biznar.com/biznar/desktop/en/lightblue/search.html)
* [Bloomberg](http://www.bloomberg.com/research/company/overview/overview.asp)
* [Business Source](https://www.ebscohost.com/academic/business-source-complete)
* [Bureau Van Dijk](http://www.bvdinfo.com)
* [Canadian Business Research](https://www.canada.ca/en/services/business/research.html)
* [Canadian Business Resource](http://www.cbr.ca)
* [Central and Eastern European Business Directory](http://www.ceebd.co.uk/ceebd)
* [Company Registration Round the World](http://www.commercial-register.sg.ch/home/worldwide.html)
* [Company Research Resources by Country Comparably](https://www.comparably.com)
* [CompeteShark](http://competeshark.com)
* [Corporate Information](http://www.corporateinformation.com)
* [CrunchBase](https://www.crunchbase.com)
* [Data.com Connect](https://connect.data.com)
* [EDGAR Online](http://www.edgar-online.com)
* [Europages](http://www.europages.co.uk)
* [European Business Register](http://www.ebr.org)
* [Ezilon](http://www.ezilon.com)
* [Factiva](https://global.factiva.com)
* [FindtheCompany](http://www.findthecompany.com)
* [Glassdoor](https://www.glassdoor.com)
* [Global Business Register](http://www.globalbusinessregister.com)
* [globalEdge](http://globaledge.msu.edu)
* [GuideStar](http://www.guidestar.org)
* [Hoovers](http://www.hoovers.com)
* [Inc. 5000](http://www.inc.com/inc5000)
* [InstantLogoSearch](http://instantlogosearch.com)
* [iSpionage](https://www.ispionage.com)
* [Knowledge guide to international company registration](http://www.icaew.com/en/library/subject-gateways/business-management/company-administration/knowledge-guide-international-company-registration)
* [Linkedin](https://www.linkedin.com)
* [National Company Registers](https://en.wikipedia.org/wiki/List_of_company_registers)
* [MarketVisual](http://www.marketvisual.com)
* [Mergent Intellect](http://www.mergentintellect.com)
* [Mergent Online](http://www.mergentonline.com/login.php)
* [Morningstar Research](http://library.morningstar.com)
* [Notablist](https://www.notablist.com)
* [Orbis directory](http://orbisdirectory.bvdinfo.com/version-20161014/OrbisDirectory/Companies)
* [opencorporates](https://opencorporates.com)
* [Owler](https://www.owler.com)
* [Overseas Company Registers](https://www.gov.uk/government/publications/overseas-registries/overseas-registries)
* [Plunkett Research](http://www.plunkettresearchonline.com)
* [Scoot](http://www.scoot.co.uk)
* [SEMrush](https://www.semrush.com)
* [Serpstat](https://serpstat.com)
* [SpyFu](http://www.spyfu.com)
* [Forbes Global 2000](http://www.forbes.com/global2000/)
* [Tradezone Europages](http://www.tradezone.com/europages.php)
* [Vault](http://www.vault.com)
* [Xing](http://www.xing.com)
## [↑](#contents) Job Search Resources
* [Beyond](http://www.beyond.com)
* [CampusCareerCenter](http://www.campuscareercenter.com)
* [CareerBuilder](http://www.careerbuilder.com)
* [College Recruiter](https://www.collegerecruiter.com)
* [Craiglist](http://losangeles.craigslist.org)
* [CVFox](http://www.cvfox.com)
* [Dice](http://www.dice.com)
* [Eluta (Canada)](http://www.eluta.ca)
* [Eurojobs](https://www.eurojobs.com)
* [Fish4Jobs](http://www.fish4.co.uk)
* [Glassdoor](https://www.glassdoor.com)
* [Headhunter](http://www.headhunter.com)
* [Indeed](http://www.indeed.com)
* [Jobs (Poland)](http://www.jobs.pl)
* [Jobsite (UK)](http://www.jobsite.co.uk)
* [Linkedin](https://www.linkedin.com)
* [Monster](http://www.monster.com)
* [Naukri (India)](http://www.naukri.com)
* [Reed (UK)](http://www.reed.co.uk)
* [Seek (Australia)](http://www.seek.com.au)
* [SimplyHired](http://www.simplyhired.com)
* [Xing](http://www.xing.com)
* [ZipRecruiter](https://www.ziprecruiter.com)
## [↑](#contents) Q&A Sites
* [Answers.com](http://www.answers.com)
* [Ask](http://www.ask.com)
* [ChaCha](http://www.chacha.com)
* [eHow](http://www.ehow.com)
* [Quora](http://www.quora.com)
* [StackExchange](http://stackexchange.com)
* [Wiselike](https://wiselike.com)
* [Yahoo Answers](http://answers.yahoo.com)
## [↑](#contents) Domain and IP Research
* [Accuranker](https://www.accuranker.com)
* [ahrefs](https://ahrefs.com) - A tool for backlink research, organic traffic research, keyword research, content marketing & more.
* [Alexa](http://www.alexa.com)
* [Bing Webmaster Tools](http://www.bing.com/toolbox/webmaster)
* [BuiltWith](http://builtwith.com)
* [Central Ops](http://centralops.net)
* [Custom Domain Search Tools](https://inteltechniques.com/osint/menu.domain.html)
* [Custom IP Address Search Tools](https://inteltechniques.com/osint/menu.ip.html)
* [Dedicated or Not](http://dedicatedornot.com)
* [DNSDumpster](https://dnsdumpster.com)
* [DNS History](http://dnshistory.org)
* [DNSStuff](http://www.dnsstuff.com)
* [DNSTrails](http://dnstrails.com) - Historical and current WHOIS, historical and current DNS records, technologies used and whois search by phone, mail, address, IP etc.
* [DNSViz](http://dnsviz.net)
* [Domain Big Data](http://domainbigdata.com)
* [Domain Crawler](http://www.domaincrawler.com)
* [Domain Dossier](http://centralops.net/co/DomainDossier.aspx)
* [Domain History](http://www.domainhistory.net)
* [Domain Tools](http://whois.domaintools.com) - Whois lookup and domain/ip historical data.
* [Easy whois](https://www.easywhois.com)
* [Exonera Tor](https://exonerator.torproject.org) - A database of IP addresses that have been part of the Tor network. It answers the question whether there was a Tor relay running on a given IP address on a given date.
* [Follow.net](http://follow.net)
* [GraphyStories](http://app.graphystories.com)
* [HypeStat](https://www.hypestat.com)
* [Infosniper](http://www.infosniper.net)
* [intoDNS](http://www.intodns.com)
* [IP Checking](http://www.ipchecking.com)
* [IP Location](https://www.iplocation.net)
* [IP 2 Geolocation](http://ip2geolocation.com)
* [IP 2 Location](http://www.ip2location.com/demo.aspx)
* [IPFingerprints](http://www.ipfingerprints.com)
* [IPVoid](http://www.ipvoid.com) - IP address toolset.
* [IntelliTamper](http://www.softpedia.com/get/Internet/Other-Internet-Related/IntelliTamper.shtml)
* [Kloth](http://www.kloth.net/services)
* [NetworkTools](http://network-tools.com)
* [Majestic](https://majestic.com)
* [MaxMind](https://www.maxmind.com)
* [MXToolbox](http://origin.mxtoolbox.com) - MX record lookup tool.
* [Netcraft Site Report](http://toolbar.netcraft.com/site_report?url=undefined#last_reboot)
* [OpenLinkProfiler](http://www.openlinkprofiler.org/ratelimit/domain.com)
* [Open Site Explorer](https://moz.com/researchtools/ose)
* [PageGlimpse](http://www.pageglimpse.com)
* [Pentest-Tools.com](https://pentest-tools.com/information-gathering/google-hacking)
* [PhishStats](https://phishstats.info/)
* [Pulsedive](https://pulsedive.com)
* [Quantcast](https://www.quantcast.com)
* [Quick Sprout](https://www.quicksprout.com)
* [RedirectDetective](http://redirectdetective.com)
* [Remote DNS Lookup](https://remote.12dt.com)
* [Robtex](https://www.robtex.com)
* [SameID](http://sameid.net)
* [SecurityTrails](https://securitytrails.com) - API to search current and historical DNS records, current and historical WHOIS, technologies used by sites and whois search for phone, email, address, IPs etc.
* [SEMrush](https://www.semrush.com)
* [SEO Chat Tools](http://tools.seochat.com)
* [SEOTools for Excel](http://seotoolsforexcel.com)
* [Similar Web](https://www.similarweb.com)
* [SmallSEOTools](http://smallseotools.com)
* [StatsCrop](http://www.statscrop.com)
* [TCPIPUTILS.com](http://www.tcpiputils.com)
* [urlQuery](http://urlquery.net)
* [URLVoid](http://www.urlvoid.com) - Analyzes a website through multiple blacklist engines and online reputation tools to facilitate the detection of fraudulent and malicious websites.
* [Wappalyzer](https://wappalyzer.com)
* [WebMeUp](http://webmeup.com)
* [Website Informer](http://website.informer.com)
* [WhatIsMyIPAddress](http://whatismyipaddress.com)
* [Who.is](https://who.is/) - Domain whois information.
* [Whois Arin Online](https://whois.arin.net)
* [WhoIsHostingThis](http://www.whoishostingthis.com)
* [WhoisMind](http://www.whoismind.com)
* [Whoisology](https://whoisology.com)
* [WhoIsRequest](http://whoisrequest.com)
* [w3snoop](http://webboar.com.w3snoop.com)
* [Verisign](http://dnssec-debugger.verisignlabs.com)
* [ViewDNS.info](http://viewdns.info)
* [You Get Signal](http://www.yougetsignal.com)
## [↑](#contents) Keywords Discovery and Research
* [Google Adwords](http://adwords.google.com) - Get monthly keyword volume data and stats.
* [Google Keyword Suggest Tool](http://tools.seochat.com/tools/suggest-tool)
* [Google Trends](https://www.google.com/trends) - See how many users are searching for specific keywords.
* [Keyword Discovery](http://www.keyworddiscovery.com)
* [Keyword Spy](http://www.keywordspy.com)
* [KeywordTool](http://keywordtool.io)
* [One Look Reverse Dictionary](http://www.onelook.com/reverse-dictionary.shtml)
* [Word Tracker](https://www.wordtracker.com)
* [Soovle](http://www.soovle.com)
* [Ubersuggest](http://ubersuggest.org)
## [↑](#contents) Web History and Website Capture
* [Archive.is](http://archive.is)
* [BlackWidow](http://softbytelabs.com/en/BlackWidow)
* [CashedPages](http://www.cachedpages.com)
* [CachedView](http://cachedview.com)
* [Screenshots.com](http://www.screenshots.com)
* [Wayback Machine](http://archive.org/web/web.php) - Explore the history of a website.
* [Wayback Machine Archiver](https://github.com/jsvine/waybackpack)
## [↑](#contents) Language Tools
* [2lingual](http://www.2lingual.com)
* [Apertium](https://www.apertium.org)
* [Babelfish](https://www.babelfish.com)
* [Bablic](https://www.bablic.com)
* [Babylon](http://translation.babylon.com)
* [Bing Translator](http://www.bing.com/translator)
* [Dict.cn](http://dict.cn)
* [Dictionary.com: Translation](http://translate.reference.com)
* [FreeTranslation](http://www.freetranslation.com)
* [Free Translator](http://www.free-translator.com)
* [Free Website Translation](http://free-website-translation.com)
* [Frengly](http://frengly.com)
* [Gengo](http://gengo.com)
* [Google Input Tools](https://www.google.com/inputtools/try)
* [Google Translate](https://translate.google.com)
* [Google Tranlslate Extension](https://chrome.google.com/webstore/detail/google-translate/aapbdbdomjkkjkaonfhkkikfgjllcleb?hl=en)
* [IdiomaX Translation](http://www.idiomax.com/online-translator.aspx)
* [India Typing](http://indiatyping.com/index.php/translations/english-to-hindi-translation)
* [imTranslator](http://imtranslator.net/translation)
* [iTranslate](http://www.itranslateapp.com)
* [iTranslate Voice](http://itranslatevoice.com)
* [Lexicool Translation](http://www.lexicool.com/translate.asp)
* [Linguee](http://www.linguee.com)
* [LingvoSoftOnline](http://www.lingvozone.com)
* [Microsoft Translator](http://www.microsoft.com/en-us/translator)
* [Noslang](http://www.noslang.com)
* [OdysseyTranslator](http://odysseytranslator.com)
* [Pleco](https://www.pleco.com)
* [PROMT-Online](http://translation2.paralink.com)
* [Reddit/r/translator](https://www.reddit.com/r/translator)
* [Reverso](http://www.reverso.net)
* [Slangit](http://slangit.com)
* [Systran](http://www.systransoft.com)
* [Translate.com](https://www.translate.com)
* [Unbabel](https://unbabel.com)
* [WorldLingo](http://www.worldlingo.com)
* [WorldReference.com](http://www.wordreference.com)
* [Yamli (Arabic Search Engine)](http://www.yamli.com)
* [Yandex Translate](https://translate.yandex.ru)
## [↑](#contents) Image Search
* [7Photos](http://7photos.net)
* [Baidu Images](http://image.baidu.com)
* [Bing Images](http://www.bing.com/images)
* [Clarify](http://clarify.io)
* [Flickr](https://secure.flickr.com)
* [GoodSearch Image Search](http://www.goodsearch.com/search-image)
* [Google Image](https://images.google.com)
* [Gramfeed](http://www.gramfeed.com)
* [Image Identification Project](https://www.imageidentify.com)
* [Image Raider](https://www.imageraider.com)
* [KarmaDecay](http://karmadecay.com)
* [Lycos Image Search](http://search.lycos.com/images)
* [MyPicsMap](http://www.mypicsmap.com)
* [PhotoBucket](http://photobucket.com)
* [Picsearch](http://www.picsearch.com)
* [PicTriev](http://www.pictriev.com)
* [Reverse Image Search](https://inteltechniques.com/osint/menu.reverse.image.html)
* [StolenCameraFinder](http://www.stolencamerafinder.co.uk)
* [TinEye](https://tineye.com)
* [Websta](http://websta.me)
* [Worldcam](http://www.worldc.am)
* [Yahoo Image Search](https://images.search.yahoo.com)
* [Yandex Images](https://www.yandex.com/images)
## [↑](#contents) Image Analysis
* [ExifTool](http://www.sno.phy.queensu.ca/~phil/exiftool)
* [Exif Search](http://www.exif-search.com)
* [FotoForensics](http://www.fotoforensics.com)
* [Gbimg.org](http://gbimg.org)
* [Ghiro](http://www.getghiro.org)
* [ImpulseAdventure](http://www.impulseadventure.com/photo/jpeg-snoop.html)
* [Izitru](http://www.izitru.com)
* [Jeffreys Image Metadata Viewer](http://exif.regex.info/)
* [JPEGsnoop](https://sourceforge.net/projects/jpegsnoop)
* [Metapicz](http://metapicz.com/)
## [↑](#contents) Stock Images
* [AlltheFreeStock](http://allthefreestock.com)
* [Death to Stock](http://deathtothestockphoto.com)
* [Freeimages](http://www.freeimages.com)
* [Freestocks.org](http://freestocks.org)
* [Gratisography](http://www.gratisography.com)
* [IM Free](http://www.imcreator.com/free)
* [ISO Republic](http://isorepublic.com)
* [iStockphoto](http://www.istockphoto.com)
* [Kaboompics](http://kaboompics.com)
* [LibreStock](https://librestock.com)
* [Life of Pix](http://www.lifeofpix.com)
* [NegativeSpace](http://negativespace.co)
* [New Old Stock](http://nos.twnsnd.co)
* [Pixabay](https://pixabay.com)
* [Pexels](https://www.pexels.com)
* [Stocksnap](https://stocksnap.io)
* [Shutterstock](http://www.shutterstock.com)
* [tookapic](https://stock.tookapic.com)
* [Unsplash](https://unsplash.com) - Free high-resolution photos.
## [↑](#contents) Video Search and Other Video Tools
* [Aol Videos](http://on.aol.com)
* [Bing Videos](http://www.bing.com/?scope=video)
* [Blinkx](http://www.blinkx.com)
* [Clarify](http://clarify.io)
* [Clip Blast](http://www.clipblast.com)
* [Custom YouTube Search Tools](https://inteltechniques.com/osint/menu.youtube.html)
* [DailyMotion](http://www.dailymotion.com)
* [Deturl](http://deturl.com)
* [DownloadHealper](http://www.downloadhelper.net)
* [Earthcam](http://www.earthcam.com)
* [Frame by Frame](https://chrome.google.com/webstore/detail/frame-by-frame-for-youtub/elkadbdicdciddfkdpmaolomehalghio?hl=en-GB) - Browser plugin that allows you to watch YouTube videos frame by frame.
* [Geosearch](http://www.geosearchtool.com)
* [Internet Archive: Open Source Videos](https://archive.org/details/opensource_movies)
* [LiveLeak](http://www.liveleak.com)
* [Metacafe](http://www.metacafe.com)
* [Metatube](http://www.metatube.com)
* [Montage](https://montage.storyful.com)
* [Reverse Image Search Tools](https://inteltechniques.com/osint/menu.reverse.html)
* [Veoh](http://www.veoh.com)
* [Vimeo](https://vimeo.com)
* [Voxalead](http://voxalead.labs.exalead.com)
* [Yahoo Video Search](http://video.search.yahoo.com)
* [YouTube](https://www.youtube.com)
* [YouTube Data Viewer](https://www.amnestyusa.org/citizenevidence)
* [ccSUBS](http://ccsubs.com/) - Download Closed Captions & Subtitles from YouTube
## [↑](#contents) Radio and Podcasts Tools
* [Clammr](https://www.clammr.com)
* [iTunes Podcasts](http://www.apple.com/itunes/podcasts)
* [Listelive](http://www.listenlive.eu)
* [Pocket Casts](http://www.shiftyjelly.com/pocketcasts)
* [Podcast Chart](http://www.podcastchart.com)
* [Podcast Directory](http://www.podcastdirectory.com)
* [Podkicker](https://play.google.com/store/apps/details?id=ait.podka&hl=en)
## [↑](#contents) Academic Resources and Grey Literature
* [Academia](https://www.academia.edu)
* [Academic Journals](http://www.academicjournals.org)
* [African Journal Online](http://www.ajol.info)
* [American Society of Civil Engineers](http://ascelibrary.org)
* [Base](http://www.base-search.net)
* [Bibsonomy](http://www.bibsonomy.org)
* [Cambridge Journals](http://journals.cambridge.org)
* [The Collection of Computer Science Bibliographies](https://liinwww.ira.uka.de/bibliography/index.html) - The CCSB is a collection of bibliographies of scientific literature in computer science from various sources, covering most aspects of computer science.
* [Core](https://core.ac.uk/search)
* [Elsevier](https://www.elsevier.com)
* [Google Scholar](https://scholar.google.com)
* [Grey Guide](http://greyguide.isti.cnr.it)
* [Grey Literature (HLWIKI International)](http://hlwiki.slais.ubc.ca/index.php/Grey_literature)
* [Grey Literature – List of Gateways](http://csulb.libguides.com/graylit)
* [Grey Literature Report](http://www.greylit.org)