-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.html
1779 lines (1754 loc) · 58.2 KB
/
index.html
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
<head>
<style>
body {
background-image: url("https://gifdb.com/images/high/network-dynamic-installations-gkxexxrw8wls9zpb.gif");
color: #ffffff;
background-repeat: repeat;
justify-content: center;
}
ul li a {
color: #2DB475;
margin-left: 170px;
justify-content: center;
}
summary {
cursor: pointer;
width: 1100px;
justify-content: center;
margin-left: 170px;
}
summary::-webkit-details-marker {
color: #CF5054;
}
summary::-moz-details-marker {
color: #CF5054;
}
details {
margin-bottom: 5px;
justify-content: center;
margin-left: 50px;
}
summary {
font-size: 24px;
padding: -1px;
border-radius: 110px;
}
summary:hover {
background-color: #040404;
}
summary:focus {
outline: none;
}
details[open] summary {
background-color: #E15358;
}
.details-content {
margin-left: 20px;
}
.details-content ul {
margin-top: 0;
}
.container {
text-align: center;
}
h1 a {
text-decoration: none;
color: #00b4eb;
}
h1 a:hover {
text-decoration: underline;
}
.container img {
vertical-align: middle;
}
.author {
color: #00b4eb;
text-align: center;
}
.logo-container {
text-align: center;
margin: 20px 0;
}
.logo-container img {
width: 200px;
height: auto;
}
</style>
</head>
<body>
<div style="text-align: center;">
<div class="logo-container">
<a href="https://asharbinkhalil.github.io/intellitoolz/">
<img src="logo.png" alt="Intellitoolz Logo">
</a>
</div>
</div>
<summary
style="text-align: center; font-size: 24px; background-color: #CF5054; padding: 5px; border-radius: 110px;">
Person Of interest Search</summary>
<details>
<summary style="font-size: 18px; text-indent: 2em;">People Search Tools</summary>
<ul>
<li>
<p><a href="https://pipl.com/">Pipl - People Search</a></p>
</li>
<li>
<p><a href="https://www.zoominfo.com/s/search">ZoomInfo's database</a></p>
</li>
<li>
<p><a
href="https://www.social-searcher.com/google-social-search/?q=person&fb=on&tw=on&gp=on&in=on&li=on&pi=on">Social
Search (6 SM Platforms)</a></p>
</li>
<li>
<p><a href="https://www.whitepages.com.au/">White Pages® - Search for an Australian Business, Government
Department or Person</a></p>
</li>
<li>
<p><a href="https://thatsthem.com/people-search">ThatsThem</a></p>
</li>
<li>
<p><a href="https://webmii.com/">Webmii</a></p>
</li>
<li>
<p><a href="https://www.peekyou.com/">PeekYou - People Search Made Easy</a></p>
</li>
<li>
<p><a href="https://www.411.com/">411 - White Pages -- Find Phone Numbers, People, Addresses &
More</a></p>
</li>
<li>
<p><a
href="https://www.intelius.com/people-search?utm_source=google&utm_medium=cpc&utm_campaign=brand%20international&utm_content=25302&utm_term=%2Bintelius&gclid=Cj0KCQjw-r71BRDuARIsAB7i_QOSCvv1_ibR-OBmpUSDuiJLk75-NPxmhrl_mZv89VkDWCDdawEvLHEaAlIhEALw_wcB">People
Search -- Intelius</a></p>
</li>
<li>
<p><a href="https://xlek.com/">xlek - Free Public Data Search</a></p>
</li>
<li>
<p><a href="https://nuwber.com/">Nuwber</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Reverse Image</summary>
<ul>
<li>
<p><a href="https://yandex.com/images/">Yandex.Images: search for images online or search by image</a>
</p>
</li>
<li>
<p><a href="https://pimeyes.com/en">PimEyes: Face Recognition Search Engine and Reverse Image Search</a>
</p>
</li>
<li>
<p><a href="https://images.google.com/">Google Reverse Image Search</a></p>
</li>
<li>
<p><a href="https://yandex.ru/images/?rdrnd=892501&redircnt=1551245317.1">Yandex</a></p>
</li>
<li>
<p><a href="http://www.bing.com/images/discover?FORM=ILPMFT">Bing Image Feed</a></p>
</li>
<li>
<p><a href="https://www.plaghunter.com/">Plaghunter.com</a></p>
</li>
<li>
<p><a href="https://www.osintcombine.com/reverse-image-analyzer">Reverse Image Analyser -- OSINT
Combine</a></p>
</li>
<li>
<p><a href="https://identify.plantnet.org/">Pl@ntNet Identify</a></p>
</li>
<li>
<p><a href="https://ebird.org/home">eBird - Discover a new world of birding...</a></p>
</li>
<li>
<p><a href="http://www.cameratrace.com/trace">CameraTrace: Trace A Camera For Free</a></p>
</li>
<li>
<p><a href="https://console.aws.amazon.com/rekognition/home">AWS Rekognition (Facial Recognition &
Feature Extraction)</a></p>
</li>
<li>
<p><a href="https://cloud.google.com/natural-language/">Google Natural Language Processing</a></p>
</li>
<li>
<p><a href="https://tone-analyzer-demo.ng.bluemix.net/">Tone Analyzer (IBM Watson)</a></p>
</li>
<li>
<p><a href="https://cloud.google.com/vision/docs/drag-and-drop">Cloud Vision API -- Image Analysis</a>
</p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Name </summary>
<ul>
<li>
<p><a href="https://xlek.com/search_results.php">Public Information</a></p>
</li>
<li>
<p><a href="https://github.com/soxoj/osint-namecheckers-list">namecheckers-list: A list of tools to
search accounts by username</a></p>
</li>
<li>
<p><a href="https://whatsmyname.app/">WhatsMyName Web osint</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Email</summary>
<ul>
<li>
<p><a href="https://epieos.com/">Epieos, the ultimate OSINT tool for email search -- holehe is CLI
LINUX</a></p>
</li>
<li>
<p><a href="https://account.lampyre.io/data-lookup">Lampyre osint</a></p>
</li>
<li>
<p><a href="https://haveibeenpwned.com/">Have I Been Pwned: Check if your email has been compromised in
a data breach</a></p>
</li>
<li>
<p><a href="https://centralops.net/co/emaildossier.aspx">Email exists? </a></p>
</li>
<li>
<p><a href="https://emailrep.io/">Simple Email Reputation</a></p>
</li>
<li>
<p><a href="https://hunter.io/">Hunter.io (Email Address Finder)</a></p>
</li>
<li>
<p><a href="https://whatismyipaddress.com/trace-email">Trace Email Address Source</a></p>
</li>
</ul>
</details>
<summary
style="text-align: center; font-size: 24px; background-color: #4085B4; padding: 5px; border-radius: 110px;">
Social</summary>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Twitter</summary>
<ul>
<li>
<p><a href="https://twitterfall.com/">Twitterfall (Twitter)</a></p>
</li>
<li>
<p><a href="https://twimap.com/">Twitter Activity Map (Twitter)</a></p>
</li>
<li>
<p><a href="https://www.trendsmap.com/">Trends Map (Twitter)</a></p>
</li>
<li>
<p><a href="https://tweetdeck.twitter.com/">TweetDeck Geo Search (Twitter)</a></p>
</li>
<li>
<p><a
href="https://onemilliontweetmap.com/?center=25.505,-0.09&zoom=2&search=&timeStep=0&timeSelector=0&hashtag1=&hashtag2=&hashtagBattle=0&timeRange=0&timeRange=25&heatmap=0&sun=0&cluster=1">OneMillionTweetMap
(Twitter)</a></p>
</li>
<li>
<p><a href="https://www.omnisci.com/demos/tweetmap/">OmniSci Tweetmap (Twitter)</a></p>
</li>
<li>
<p><a href="https://twitter.com/search-advanced?lang=en&new">Twitter Advanced Search (Twitter)</a></p>
</li>
<li>
<p><a href="https://socialbearing.com/">Social Bearing (Twitter)</a></p>
</li>
<li>
<p><a href="https://tweetbeaver.com/">TweetBeaver (Twitter)</a></p>
</li>
<li>
<p><a href="https://keitharm.me/projects/tweet/">Twitter User Geo Mapper (Twitter)</a></p>
</li>
<li>
<p><a href="https://spoonbill.io/">Spoonbill (Twitter Account Changes)</a></p>
</li>
<li>
<p><a href="https://app.truthnest.com/">TruthNest - Twitter User Analysis</a></p>
</li>
<li>
<p><a href="http://theherdlocker.com/">TheHerdLocker.com</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Instagram</summary>
<ul>
<li>
<p><a href="https://www.instagram.com/accounts/login/?hl=en">Instagram (Use Search + Auto Refresh)</a>
</p>
</li>
<li>
<p><a href="https://www.osintcombine.com/instagram-explorer/#">Instagram Explorer -- OSINT Combine</a>
</p>
</li>
<li>
<p><a href="https://www.osintcombine.com/instagram-explorer">Instagram Explorer -- OSINT Combine</a></p>
</li>
<li>
<p><a href="https://www.searchmy.bio/">Searchmy.bio - Search Instagram bio text</a></p>
</li>
<li>
<p><a
href="https://www.google.com/search?client=ubuntu&hs=CzK&channel=fs&ei=Q1rhW9yIDI27rQHr_bDACw&q=site%3Ainstagram.com+%22person%22&oq=site%3Ainstagram.com+%22person%22&gs_l=psy-ab.3...4194.4916..5259...0.0..0.329.1218.0j4j1j1......0....1..gws-wiz.CPTTLh3l4Bk">Instagram
Person Search (change "person" for name)</a></p>
</li>
<li>
<p><a href="https://exportcomments.com/#">Export Comments to Excel Free - EXPORTCOMMENTS.COM</a></p>
</li>
<li>
<p><a href="https://analisa.io/">Instagram Analytics & TikTok Analytics -- Analisa.io</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">WhatsApp</summary>
<ul>
<li><a href="https://watools.io/wa-watcher">WA Watcher online status tracker - WhatsApp Tools</a></li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Facebook</summary>
<ul>
<li>
<p><a
href="https://www.facebook.com/search/videos/?q=Sydney&epa=FILTERS&filters=eyJ2aWRlb3Nfc291cmNlIjoie1wibmFtZVwiOlwidmlkZW9zX2xpdmVcIixcImFyZ3NcIjpcIlwifSJ9">Facebook
Live Video Search (Modify search location)</a></p>
</li>
<li>
<p><a href="https://www.facebook.com/events/%3CeventID%3E/?active_tab=discussion">Facebook Event (Modify
<eventID in URL)</a></p>
</li>
<li>
<p><a href="http://graph.tips/beta/">Facebook Filter Search</a></p>
</li>
<li>
<p><a href="https://exportcomments.com/">Export Facebook, Instagram, Twitter, YouTube, VK, TikTok, Vimeo
Comments to CSV / Excel - EXPORTCOMMENTS.COM</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Snapchat</summary>
<ul>
<li>
<p><a href="https://map.snapchat.com/@-33.867100,151.207000,12.00z">SnapChat Activity Map (SnapChat)</a>
</p>
</li>
<li>
<p><a href="https://www.osintcombine.com/snapchat-multi-viewer">Snapchat Multi-Viewer -- OSINT
Combine</a></p>
</li>
<li>
<p><a href="https://github.com/asharbinkhalil/khoji">khoji -- To download previous bitmojis</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">TikTok</summary>
<ul>
<li>
<p><a href="https://www.osintcombine.com/tiktok-quick-search">TikTok Quick Search -- OSINT Combine</a>
</p>
</li>
<li>
<p><a href="https://analisa.io/#">Instagram Analytics & TikTok Analytics -- Analisa.io</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">VK</summary>
<ul>
<li><a href="https://vk.com/people">VKontakte People Search</a></li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Foursquare</summary>
<ul>
<li><a href="https://foursquare.com/search">Foursquare Search</a></li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Telegram</summary>
<ul>
<li>
<p><a href="https://cse.google.com/cse?&cx=006368593537057042503:efxu7xprihg#gsc.tab=0">Telegram Search
(Telegago)</a></p>
</li>
<li>
<p><a href="https://tgstat.ru/en/search">Telegram Search</a></p>
</li>
<li>
<p><a href="https://lyzem.com/">Home -- Lyzem.com</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Flikr</summary>
<ul>
<li>
<p><a href="https://www.flickr.com/map">Flickr Activity Map (Flickr)</a></p>
</li>
<li>
<p><a href="https://current-location.com/">Flikr Current Location</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Other</summary>
<ul>
<li>
<p><a
href="https://www.google.com.au/search?q=cowboy+boots+AND+near+sydney&safe=strict&glp=1&adtest=on&tci=g%3A2036&uule=w+CAIQICIJQXVzdHJhbGlh&adtest-useragent=Mozilla%2F5.0+%28Linux%3B+U%3B+Android-4.0.3%3B+en-us%3B+Xoom+Build%2FIML77%29+AppleWebKit%2F535.7+%28KHTML%2C+like+Gecko%29+CrMo%2F16.0.912.75+Safari%2F535.7&oq=cowboy+boots+AND+near+sydney&gs_l=heirloom-serp.3...3525.3898.0.4005.6.2.0.3.0.0.171.301.0j2.2.0....0...1ac.1.34.heirloom-serp..5.1.130.fun-5TipiJM">Google
NEAR Keyword Sample (Google)</a></p>
</li>
<li>
<p><a href="https://www.broadcastify.com/listen/">Broadcastify - Listen Live to Police, Fire, EMS,
Aviation, and Rail Audio Feeds</a></p>
</li>
<li>
<p><a href="https://liveuamap.com/">Live UA Map (Geopolitical Event Monitor Map)</a></p>
</li>
<li>
<p><a href="https://trends.google.com/trends/trendingsearches/daily?geo=AR">Country Daily Trending
Search Topics</a></p>
</li>
<li>
<p><a href="https://wigle.net/#">WiGLE: Wireless Network Mapping</a></p>
</li>
<li>
<p><a href="https://www.doogal.co.uk/strava.php">Strava segments</a></p>
</li>
<li>
<p><a href="https://botsentinel.com/">Bot Sentinel Dashboard ‹ Bot Sentinel</a></p>
</li>
<li>
<p><a href="https://www.osintcombine.com/social-geo-lens">Social Geo Lens -- OSINT Combine</a></p>
</li>
<li>
<p><a
href="https://crisis24.garda.com/insights-intelligence/intelligence/risk-maps/global-security-hotspots-map">Global
Security Hotspots Map -- Crisis24</a></p>
</li>
<li>
<p><a href="https://livingatlas.arcgis.com/livefeeds-status/">Live Feeds Status</a></p>
</li>
<li>
<p><a href="https://earthdata.nasa.gov/earth-observation-data/near-real-time/firms/active-fire-data">Active
Fire Data -- Earthdata</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">YouTube</summary>
<ul>
<li>
<p><a href="https://youtube.github.io/geo-search-tool/search.html">Youtube Geo Search Tool</a></p>
</li>
<li>
<p><a href="http://mattw.io/youtube-geofind/location">YouTube Geofind</a></p>
</li>
<li>
<p><a href="https://hadzy.com/">Hadzy - Youtube comments search</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Link Analysis</summary>
<ul>
<li>
<p><a
href="https://anvaka.github.io/map-of-reddit/?x=353711.52128544624&y=389235.4555817076&z=18075.980708777406&q=europe">Map
of Reddit</a></p>
</li>
<li>
<p><a href="https://socialgrep.com/">SocialGrep - Reddit</a></p>
</li>
<li>
<p><a
href="https://www.smat-app.com/timeline?searchTerm=qanon&startDate=2021-10-17&endDate=2022-04-17&websites=gab&numberOf=10&interval=day&limit=1000&changepoint=false">SMAT
- Multi source</a></p>
</li>
<li>
<p><a href="https://tweetdeck.twitter.com/#">TweetDeck</a></p>
</li>
<li>
<p><a href="https://mentionmapp.com/">Mentionmapp Twitter Networks (Twitter)</a></p>
</li>
<li>
<p><a href="https://accountanalysis.lucahammer.com/">Analysis of Twitter Accounts</a></p>
</li>
<li>
<p><a href="http://gramspy.com/">Instagram Interaction Reports (Instagram)</a></p>
</li>
<li>
<p><a href="https://tweetbeaver.com/getcommonfollowers.php">Find common followers of two Twitter users -
TweetBeaver</a></p>
</li>
<li>
<p><a
href="https://ident.familysearch.org/cis-web/oauth2/v3/authorization?client_secret=WXExoUx36sCbsd2QXtC55MN9EgTjYZ25IrLXdIMKg4WN9xnRHp5bsxGmt6g9BMq8lGvfJWNkJzxUuyZhhA8UMsLSBtlOzTRN2HEbHWTqdzoKN4%2Bkn6fOmTwhgJzj5CuaRisDhOcJ7KRugK%2BXpJZ7ZXXlJL0BJN8FglDmZ7QlIwGQ2q1qkyE6loSYd9EZnyXKhbs3O4KoQHqgTKcaG7Rimms0s1qi%2FTB6J4fZFcb%2ButkuVIgudFMklmdYXBnpvuRY4%2BD%2B82RrfRTRmcPqpThYbx8AxkBu6hiGvPoCBFT1YkXQPEIq2Na73tJAo1iyphp5dm9y9FSeiBOy1aXBOZDKUg%3D%3D&display=tree&response_type=code&redirect_uri=https%3A%2F%2Fwww.familysearch.org%2Fauth%2Ffamilysearch%2Fcallback&state=https%3A%2F%2Fwww.familysearch.org%2Ftree%2Ffind%2Fname&client_id=3Z3L-Z4GK-J7ZS-YT3Z-Q4KY-YN66-ZX5K-176R">FamilySearch:
Sign In</a></p>
</li>
<li>
<p><a href="https://tweetbeaver.com/getcommonfriends.php">Find common friends of two Twitter users -
TweetBeaver</a></p>
</li>
<li>
<p><a href="https://tweetbeaver.com/getconversations.php">Find conversations between two users -
TweetBeaver</a></p>
</li>
<li>
<p><a href="https://tweetbeaver.com/getbulkdata.php">Bulk download Twitter user data - TweetBeaver</a>
</p>
</li>
<li>
<p><a href="https://www.facebook.com/browse/mutual_friends/?uid=4&node=5">Facebook Mutual Friends
(Modify Source UID & Node in URL)</a></p>
</li>
<li>
<p><a href="https://osintcombine.tools/#">DataVis by OSINT Combine</a></p>
</li>
<li>
<p><a href="https://polinode.com/">Polinode - Powerful Network Analysis in the Cloud</a></p>
</li>
<li>
<p><a href="https://www.google.com/advanced_search">2. Google Advanced Search (Google)</a></p>
</li>
</ul>
</details>
<summary
style="text-align: center; font-size: 24px; background-color: #30763E; padding: 5px; border-radius: 110px;">Web
</summary>
<details>
<summary style="font-size: 18px; text-indent: 2em;">IP</summary>
<ul>
<li>
<p><a href="https://toolbox.googleapps.com/apps/dig/#ANY/">Dig (DNS lookup)</a></p>
</li>
<li>
<p><a href="https://who.is/">Ip & Domain</a></p>
</li>
<li>
<p><a href="https://viewdns.info/">ViewDNS.info - Your one source for DNS related tools!</a></p>
</li>
<li>
<p><a href="https://www.virustotal.com/gui/url/">VirusTotal - Error 404</a></p>
</li>
<li>
<p><a href="https://builtwith.com/">BuiltWith Technology Lookup</a></p>
</li>
<li>
<p><a href="https://www.shodan.io">Shohdan</a></p>
</li>
<li>
<p><a href="https://www.maxmind.com/en/geoip2-precision-demo?ip_address=134.119.176.19">GeoIP2 Web
Service Demo -- MaxMind</a></p>
</li>
</ul>
</details>
<summary
style="text-align: center; font-size: 24px; background-color: #937E58; padding: 5px; border-radius: 110px;">
Transport</summary>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Maritime</summary>
<ul>
<li>
<p><a href="http://www.equasis.org/EquasisWeb/public/HomePage">Vessel Ownership & ID Records</a></p>
</li>
<li>
<p><a href="https://globalfishingwatch.org/map/">Global Fishing Watch</a></p>
</li>
<li>
<p><a href="https://www.marinetraffic.com/en/ais/home/centerx:100.5/centery:13.6/zoom:11">MarineTraffic:
Global Ship Tracking Intelligence -- AIS Marine Traffic</a></p>
</li>
<li>
<p><a href="https://www.maritime-database.com/">Maritime Database</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Air</summary>
<ul>
<li>
<p><a href="https://global.adsbexchange.com/VirtualRadar/desktop.html">Aircraft Radar (ADSB
Exchange)</a></p>
</li>
<li>
<p><a href="https://flight-data.adsbexchange.com/">Historical Flight Viewer</a></p>
</li>
<li>
<p><a href="https://www.radarbox24.com/@2.41699,27.25463,z3">AirNav RadarBox - Live Flight Tracker and
Airport Status</a></p>
</li>
<li>
<p><a href="https://radar.freedar.uk/VirtualRadar/desktop.html">Freedar.uk (89)</a></p>
</li>
<li>
<p><a href="http://www.ads-b.nl/">ADS-B Historical Records</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Rails</summary>
<ul>
<li>
<p><a href="https://www.openrailwaymap.org/">Global Railway Map Reference</a></p>
</li>
<li>
<p><a href="https://minitokyo3d.com/">Mini Tokyo 3D</a></p>
</li>
<li>
<p><a href="http://www-personal.umich.edu/~yopopov/rrt/railroadmaps/">Railroad Maps</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">VKontakte</summary>
<ul>
<li><a href="http://snradar.azurewebsites.net/">SnRadar</a></li>
</ul>
</details>
<summary
style="text-align: center; font-size: 24px; background-color: #31322B; padding: 5px; border-radius: 110px;">
CCTV CAMERAS</summary>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Live Geo Map</summary>
<ul>
<li>
<p><a href="https://openstreetcam.org/map/@40.73112880602221,-73.99618148803712,12z">OpenStreetCam</a>
</p>
</li>
<li>
<p><a href="https://www.earthcam.com/network/map.php">Live Network of Webcams and Streaming Video
Cameras - EarthCam</a></p>
</li>
<li>
<p><a href="https://worldcam.eu/map/australia-oceania#14/-33.86082983873439/151.1986541748047">Webcam
Map</a></p>
</li>
<li>
<p><a href="https://kamba4.crux.uberspace.de/">Surveillance under Surveillance</a></p>
</li>
<li>
<p><a href="https://www.windy.com/-Webcams/webcams?-33.859,151.200,5">Windy: Webcams</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Reference Search</summary>
<ul>
<li>
<p><a href="http://airportwebcams.net/category/australia/">Global Airport Webcams</a></p>
</li>
<li>
<p><a
href="https://www.google.com/search?client=ubuntu&channel=fs&q=site%3Ainsecam.org+%22location%22&ie=utf-8&oe=utf-8">site:insecam.org
"location" - Google Search</a></p>
</li>
<li>
<p><a
href="https://sunders.uber.space/#:~:text=Surveillance%20under%20Surveillance&text=Surveillance%20under%20Surveillance%20shows%20you,observe%2C%20or%20other%20interesting%20facts.">Surveillance
under Surveillance</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Alerting & Triggers</summary>
<ul>
<li>
<p><a href="https://www.google.com.au/alerts">Google Alerts</a></p>
</li>
<li>
<p><a href="https://www.talkwalker.com/alerts">Alert Service (Surface Web & Twitter)</a></p>
</li>
<li>
<p><a href="https://feedreader.com/">Free RSS Reader</a></p>
</li>
<li>
<p><a href="https://disasteralert.pdc.org/disasteralert/">Disaster Alert</a></p>
</li>
<li>
<p><a href="https://gdacs.org/">GDACS - Global Disaster Alerting Coordination System</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Keyword Tools</summary>
<ul>
<li>
<p><a href="https://www.social-searcher.com/google-social-search/">Multi-Platform Search Portal (6 SM
Platforms)</a></p>
</li>
<li>
<p><a
href="https://www.google.com/search?source=hp&ei=_1jhW5-UDde89QOi5oaABw&q=this+AND+that+OR+those&btnK=Google+Search&oq=this+AND+that+OR+those&gs_l=psy-ab.3...3527.8869..9000...0.0..0.312.3393.0j11j5j1....2..0....1..gws-wiz.......0j0i131j0i3j0i10.wQjJDQZpgrE">Google
AND/OR Search (Google)</a></p>
</li>
</ul>
</details>
<summary
style="text-align: center; font-size: 24px; background-color: #5D8DC5; padding: 5px; border-radius: 110px;">Area
Assessment Tools</summary>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Area Overview</summary>
<ul>
<li>
<p><a href="https://mc.bbbike.org/mc/#">1. Area Maps</a></p>
</li>
<li>
<p><a href="https://www.cia.gov/library/publications/the-world-factbook/">2. The World Factbook —
Central Intelligence Agency</a></p>
</li>
<li>
<p><a href="https://www.acleddata.com/dashboard/">3. Crisis Dashboard (Macro Events)</a></p>
</li>
<li>
<p><a href="https://liveuamap.com/#">4. Live UA Map (Significant Events)</a></p>
</li>
<li>
<p><a href="https://www.emporis.com/buildings/map?action=%2Fbuildings#">World Building Map --
EMPORIS</a></p>
</li>
<li>
<p><a
href="https://www.mapchecking.com/#48.8629816,2.2871467;48.8628097,2.2868619;48.8626608,2.2872267;48.8628700,2.2875427;2.5;48.8628950,2.2869780,18">MapChecking
- Crowd size estimator</a></p>
</li>
<li>
<p><a
href="https://openhistoricalmap.org/#map=5/48.691/35.134&layers=O&date=1901&daterange=1800,2022">OpenHistoricalMap</a>
</p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Drone Footage</summary>
<ul>
<li>
<p><a href="https://travelwithdrone.com/">TRAVELwithDRONE - Aerial Videos Database</a></p>
</li>
<li>
<p><a href="https://waqi.info/">World's Air Pollution: Real-time Air Quality Index</a></p>
</li>
<li>
<p><a href="https://github.com/cartographia/geospatial-intelligence-library">Tool Library 🛰 Your
geospatial intelligence tool belt for digital investigations</a></p>
</li>
<li>
<p><a href="https://map.openseamap.org/">OpenSeaMap - The free nautical chart</a></p>
</li>
<li>
<p><a
href="https://www.peakfinder.org/?lat=-33.04360&lng=151.26500&ele=639&off=33&azi=182.76&alt=5.6&fov=47.8&cfg=s&name=Mount%20Warrawolong">Mount
Warrawolong - PeakFinder</a></p>
</li>
<li>
<p><a href="http://www.geonames.org/">GeoNames</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">News Topics</summary>
<ul>
<li>
<p><a href="https://newspapermap.com/">5. Global Newspaper Map</a></p>
</li>
<li>
<p><a href="https://world.einnews.com/">6. World News Headlines by Country</a></p>
</li>
<li>
<p><a href="https://trends.google.com/trends/trendingsearches/daily?geo=AU">7. Daily Trending Search
Topics</a></p>
</li>
<li>
<p><a href="https://trends.google.com/trends/yis/2017/AU/">8. Yearly Trending Search Topics</a></p>
</li>
<li>
<p><a href="https://trackography.org/">Trackography - Who tracks you online?</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Social Media Macro View</summary>
<ul>
<li>
<p><a href="https://www.statista.com/">9. Social Media Usage Statistics</a></p>
</li>
<li>
<p><a href="https://www.trendsmap.com/#">10. Social Media Trending Map</a></p>
</li>
<li>
<p><a href="https://www.slideshare.net/DataReportal/digital-2019-iraq-january-2019-v01">Social Media
Metrics (navigate to slide 4)</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">High Activity Zones</summary>
<ul>
<li>
<p><a
href="https://onemilliontweetmap.com/?center=7.18810087117902,59.94140625000001&zoom=2&search=&timeStep=0&timeSelector=0&hashtag1=&hashtag2=&hashtagBattle=0&timeRange=0&timeRange=25&heatmap=0&sun=0&cluster=1">12.
High Activity Zones (Twitter)</a></p>
</li>
<li>
<p><a href="https://map.snapchat.com/@-33.815900,151.091000,12.00z">13. High Activity Zones
(Snapchat)</a></p>
</li>
<li>
<p><a href="https://www.flickr.com/map/#">14. High Activity Zones (Flikr)</a></p>
</li>
<li>
<p><a href="https://www.smat-app.com/timeline">SMAT</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Area Photos</summary>
<ul>
<li>
<p><a href="https://www.facebook.com/search/photos/?q=Bangkok">16. Facebook (Modify Tagged Location
& Keyword to Area)</a></p>
</li>
<li>
<p><a
href="https://twitter.com/search?f=images&vertical=default&q=near%3Asydney%20within%3A5km%20filter%3Aimages&src=typd&lang=en">17.
Twitter (Modify search field for criteria and range)</a></p>
</li>
<li>
<p><a href="https://www.instagram.com/explore/locations/234756425/">18. Instagram (Locate and modify
location ID in URL)</a></p>
</li>
<li>
<p><a href="https://www.osintcombine.com/instagram-explorer/#">Instagram Explorer -- OSINT Combine</a>
</p>
</li>
</ul>
</details>
<summary
style="text-align: center; font-size: 24px; background-color: #CF5054; padding: 5px; border-radius: 110px;">
Threat Actors</summary>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Crime & Gangs</summary>
<ul>
<li>
<p><a href="https://www.numbeo.com/crime/rankings_by_country.jsp">19. Crime Index by Country</a></p>
</li>
<li>
<p><a href="http://gangs.globalincidentmap.com/home.php">20. US Gang Activity (US Only)</a></p>
</li>
<li>
<p><a href="https://www.nationmaster.com/country-info/stats/Crime/Violent-crime/Murder-rate">21. Violent
Crime Acvitiy by Country</a></p>
</li>
<li>
<p><a href="https://knoema.com/atlas/topics/Crime-Statistics">22. Crime Statistics - World and regional
statistics, national data, maps, rankings</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Militant Organisations</summary>
<ul>
<li>
<p><a href="https://www.start.umd.edu/gtd/search/BrowseBy.aspx?category=country">23. Militant Group
Historical Activities</a></p>
</li>
<li>
<p><a href="http://web.stanford.edu/group/mappingmilitants/cgi-bin/">24. Group Linkages & Events</a>
</p>
</li>
<li>
<p><a href="https://ucdp.uu.se/exploratory">UCDP - Uppsala Conflict Data Program</a></p>
</li>
<li>
<p>[Every Disputed Territory in the World - <a
href="http://metrocosm.com/disputed-territories-map.html">Interactive Map]</a></p>
</li>
<li>
<p><a href="https://storymaps.esri.com/stories/terrorist-attacks/">Terrorist Attacks</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Health Activity</summary>
<ul>
<li>
<p><a href="https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#">Coronavirus 2019-nCoV</a>
</p>
</li>
<li>
<p><a href="https://www.healthmap.org/en/">Flu & Ebola Map -- Virus & Contagious Disease
Surveillance</a></p>
</li>
<li>
<p><a href="https://covid19board.app/">COVID-19 Crisis Dashboard</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">NGO Activity</summary>
<ul>
<li>
<p><a href="http://www.globalmodernslavery.org/">Counter Human Trafficking Organisations Map</a></p>
</li>
<li>
<p><a href="http://dataviz.du.edu/projects/htc/flow/">Human Trafficking Flow Map</a></p>
</li>
<li>
<p><a href="https://www.insightcrime.org/countries/">Drug Trade Insight (South America)</a></p>
</li>
<li>
<p><a href="https://data.unodc.org/">Drug Trade Statistics & Usage</a></p>
</li>
<li>
<p><a href="http://nisatapps.prio.org/armsglobe/index.php">Mapping Arms Data - the trade in small arms
and their ammunition, 1992-2014</a></p>
</li>
<li>
<p><a href="https://wigle.net/">WiGLE: Wireless Network Mapping</a></p>
</li>
<li>
<p><a href="https://discordapp.com/invite/5pmK4TU">2. Discord GlobalNews.Watch</a></p>
</li>
</ul>
</details>
<summary
style="text-align: center; font-size: 24px; background-color: #000000; padding: 5px; border-radius: 110px;">
Breached Data</summary>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Sites</summary>
<ul>
<li>
<p><a href="https://haveibeenpwned.com/">Have I Been Pwned: Check if your email has been compromised in
a data breach</a></p>
</li>
<li>
<p><a href="https://dehashed.com/">DeHashed — #FreeThePassword</a></p>
</li>
<li>
<p><a href="https://ghostproject.fr/m">GhostProject</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Documents</summary>
<ul>
<li>
<p><a
href="http://cse.google.co.uk/cse?cof=CX:Documents%2520-%2520Formats;&cx=009462381166450434430:nudphlkt3p4&num=100&ei=TgKvWJLJCamUgAaP1Y2IBA">Google
Custom Search</a></p>
</li>
<li>
<p><a
href="https://www.google.com/search?num=100&newwindow=1&safe=off&client=firefox-a&hl=en&rls=org.mozilla%3Aen-US%3Aofficial&ei=Ql7hW7LIDMmv9QPm6o6YDQ&q=inurl%3Aftp+-inurl%3A%28http%7Chttps%29+searchterm&oq=inurl%3Aftp+-inurl%3A%28http%7Chttps%29+searchterm&gs_l=psy-ab.3...2358.3764..3896...0.0..0.226.1595.0j8j2......0....1..gws-wiz.Q7cKYS1AATI">FTP
Search (Change "searchterm" in search box)</a></p>
</li>
</ul>
</details>
<details>
<summary style="font-size: 18px; text-indent: 2em;">Forums</summary>
<ul>
<li>
<p><a href="https://gab.com/search">search (@[email protected]) -- gab.com - Gab Social</a></p>
</li>
<li>
<p><a href="http://www.redditinvestigator.com/">Reddit Investigator (Reddit)</a></p>
</li>
<li>
<p><a href="https://find.4chan.org/?q=test">4Chan Search</a></p>
</li>
<li>
<p><a href="https://snoopsnoo.com/">SnoopSnoo - reddit user and subreddit analytics</a></p>
</li>
<li>
<p><a href="https://reddit6.com/#/Stream">Reditr</a></p>
</li>
<li>
<p><a href="https://rdddeck.com/">Deck for Reddit</a></p>
</li>
<li>
<p><a href="http://yasiv.com/reddit">reddit visualization - YASIV</a></p>
</li>
</ul>
</details>