-
Notifications
You must be signed in to change notification settings - Fork 32
/
TJ-OSINT-Notebook-v1.jex
2329 lines (1957 loc) · 101 KB
/
TJ-OSINT-Notebook-v1.jex
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
082562ba794843dbb2a6307b8c983101.md 000644 0000002271 14336061324 012304 0 ustar 00 000000 000000 Dark Web
# General Notes
- https://github.com/fastfire/deepdarkCTI
- https://www.osintcombine.com/post/dark-web-searching
# Sub Reddits
- https://www.reddit.com/r/darknet/
- https://www.reddit.com/r/TOR/
- https://www.reddit.com/r/onions/
- https://reddit.com/r/DarkWebDread
# News/Information Sites
- Darknetlive: https://darknetlive.com/
- Darknet stats: https://www.darknetstats.com/
- DNStats: https://dnstats.net/
- The Daily Swig: https://portswigger.net/daily-swig/dark-web
- DarknetOne: https://darknetone.com/
- DarknetMarkets: https://www.darknetmarkets.com/
id: 082562ba794843dbb2a6307b8c983101
parent_id: 66ad12d80e514ed2858f35c2c5ad0d0e
created_time: 2022-06-27T15:26:17.224Z
updated_time: 2022-06-27T19:28:29.458Z
is_conflict: 0
latitude: 34.74648090
longitude: -92.28959480
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin-desktop
source_application: net.cozic.joplin-desktop
application_data:
order: 1665859587635
user_created_time: 2022-06-27T15:26:17.224Z
user_updated_time: 2022-06-27T19:28:29.458Z
encryption_cipher_text:
encryption_applied: 0
markup_language: 1
is_shared: 0
share_id:
conflict_original_id:
master_key_id:
type_: 1 08ccf2a382e1431f8fc8aef81bf7f3a7.md 000644 0000002513 14336061324 013036 0 ustar 00 000000 000000 Other Resources
## Places to learn more about OSINT
- https://www.overtoperator.com/s/daily-intel-brief
- https://www.maltego.com/blog/top-osint-infosec-resources-for-you-and-your-team/
## Image-Based OSINT Investigations Tips & Techniques:
- https://www.skopenow.com/resource-center/image-based-osint-investigations-tips-techniques
## Telegram
- Telegram OSINT References: https://github.com/Ginsberg5150/Discord-and-Telegram-OSINT-references
## Books
- Open Source Intelligence Techniques: https://inteltechniques.com/book1.html
- Open Source Intelligence Handbook: https://i-intelligence.eu/uploads/public-documents/OSINT_Handbook_2020.pdf
- Nowhere To Hide: https://www.danielfarberhuang.com/nowheretohidedownload
id: 08ccf2a382e1431f8fc8aef81bf7f3a7
parent_id: 66ad12d80e514ed2858f35c2c5ad0d0e
created_time: 2022-09-12T04:26:44.027Z
updated_time: 2022-11-18T08:07:44.283Z
is_conflict: 0
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin-desktop
source_application: net.cozic.joplin-desktop
application_data:
order: 829829100801.25
user_created_time: 2022-09-12T04:26:44.027Z
user_updated_time: 2022-11-18T08:07:44.283Z
encryption_cipher_text:
encryption_applied: 0
markup_language: 1
is_shared: 0
share_id:
conflict_original_id:
master_key_id:
type_: 1 13ca7acfa30342c4a3271ebd5398e833.md 000644 0000004155 14336061324 012576 0 ustar 00 000000 000000 Main Template
# Template Breakdown
# Summary Overview
Describe the case of this subject and why they are a interest to your assignment?
# Personal Information:
- Full Name:
- Alias Names/Handles:
- Age:
- Address:
- Height/Weight:
- Gender:
- Birth Date:
- Single/Married:
- Forms of Identification:
- Vehicle Information (Make, Year, Color, License):
# Social Media:
- Facebook:
- Twitter:
- Instagram:
- Vysco:
- Snapchat:
- TikTok:
- Tumblr:
- PinInterest:
- Telegram:
- Signal:
- Vk:
- Reddit:
- Craiglist:
- Kijiji:
- ebay:
- wechat:
- kik:
# Other accounts/handles:
- Gamer Handles:
- Blog Posts:
- Forum profiles:
# Work/Careers:
- Linkedin:
- Company Name:
- Job Description:
- Start/End Date:
- Work Email:
- Work Phone Number:
- Work Address:
- Interesting comments from employees:
# Home/Place of Living:
- Address:
- Noticeable Habits:
## Owns the Home/Place:
- Information/Tips from the neighbors:
- Any Issues in the area?
## Lives in a rental place:
- Landlords Name:
- Landlords Phone Number:
- Information/Tips from other tenants:
- Any Issues in the Area?
# Other Information about the Person:
- Unique Identifiers (Tattos, scars, piercings/jewlery):
- Habits (Smoking, Drinking, Hitch Hiking, Hangouts, Gang Affliation):
- Tips/Other information where the subject may be headed:
- History of the person missing in the past:
# Technical Information/Devices:
- Device:
- Brand/Modfel:
- Carrier:
- ISP:
- IP Addresses:
- Accounts involved in a breach:
id: 13ca7acfa30342c4a3271ebd5398e833
parent_id: e6223dc485394d7db5c0d870fa13fd63
created_time: 2020-12-06T03:19:20.263Z
updated_time: 2022-11-18T05:37:36.947Z
is_conflict: 0
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin-desktop
source_application: net.cozic.joplin-desktop
application_data:
order: 1641090699181
user_created_time: 2020-12-06T03:19:20.263Z
user_updated_time: 2022-11-18T05:37:36.947Z
encryption_cipher_text:
encryption_applied: 0
markup_language: 1
is_shared: 0
share_id:
conflict_original_id:
master_key_id:
type_: 1 16ac71d2552744ce9b56bb5cce16f2dd.md 000644 0000022360 14336061324 012747 0 ustar 00 000000 000000 Search Engines
# General Search Engines:
- [Intel Techniques Search Engine Tool](https://inteltechniques.com/tools/Search.html)
### General Search Engines
- [Google](https://www.google.com/)
- [Bing](https://www.bing.com/)
- [Yahoo!](http://www.yahoo.com/)
- [Yandex](https://yandex.com/)
### Servers
- [Shodan](https://shodan.io) - Search Engine for the Internet of Everything
- [Criminal IP](https://www.criminalip.io/)
- [Censys](https://censys.io/)
- [Onyphe.io](https://www.onyphe.io/)
- [ZoomEye](https://www.zoomeye.org/)
- [GreyNoise](https://viz.greynoise.io/)
- [Natlas](https://natlas.io/)
- [FOFA](https://fofa.info/)
- [criminalip.io](https://www.criminalip.io/)
- [LeakIX](https://leakix.net/)
- [Netlas](https://app.netlas.io/responses/)
### Public Files
- [Archie](http://archie.icm.edu.pl/) - Search for files in Public FTP Servers
- [Grayhatwarefare](https://buckets.grayhatwarfare.com/) - Search for files in public AWS S3 buckets
### Vulnerabilities
- [NIST NVD](https://nvd.nist.gov/vuln/search)
- [MITRE CVE](https://cve.mitre.org/cve/search_cve_list.html)
- [Exploit-DB](https://www.exploit-db.com/)
- [osv.dev](https://osv.dev/list) - Open Source Vulnerabilities
- [Vulners.com](https://vulners.com/)
- [security.snyk.io](https://security.snyk.io/)
- [Rapid7 - DB](https://www.rapid7.com/db/)
- [CVEDetails](https://www.cvedetails.com/)
- [VulnIQ](https://vulniq.com/)
- [SynapsInt](https://synapsint.com/)
### Exploits
- [Exploit-DB](https://www.exploit-db.com/)
- [Shodan Exploits](https://exploits.shodan.io/)
- [Sploitus](https://sploitus.com/)
- [Rapid7 - DB](https://www.rapid7.com/db/)
### Attack Surface
- [FullHunt.io](https://fullhunt.io/)
- [BinaryEdge](https://www.binaryedge.io/)
- [RedHunt Labs](https://redhuntlabs.com/)
- [SecurityTrails](https://securitytrails.com/)
- [Binary Edge](https://app.binaryedge.io/login)
### Code Search Engines
- [GitHub Code Search](https://cs.github.com/)
- [grep.app](https://grep.app/)
- [publicwww.com](https://publicwww.com/)
- [SearchCode](https://searchcode.com/)
- [NerdyData](https://www.nerdydata.com/)
- [RepoSearch](http://codefinder.org/)
### Mail addresses
- [Hunter.io](https://hunter.io/)
- [PhoneBook](https://phonebook.cz/)
- [IntelligenceX](https://intelx.io/)
- [Reacher.email](https://reacher.email/)
- [RocketReach](https://rocketreach.co/)
- [email-format.com](https://www.email-format.com/)
- [EmailHippo](https://tools.emailhippo.com/)
- [ThatsThem](https://thatsthem.com/reverse-email-lookup) - Reverse email lookup
- [verify-email.org](https://verify-email.org/)
- [Melissa - Emailcheck](https://www.melissa.com/v2/lookups/emailcheck/email/)
- [VoilaNorbert](https://www.voilanorbert.com/)
- [SynapsInt](https://synapsint.com/)
- [skymem.info](http://www.skymem.info/)
### Domains
- [PhoneBook](https://phonebook.cz/)
- [IntelligenceX](https://intelx.io/)
- [Omnisint](https://omnisint.io/subdomain-enumeration) - Subdomain enumeration
- [Riddler](https://riddler.io/)
- [RobTex](https://www.robtex.com/)
- [CentralOps - DomainDossier](https://centralops.net/co/DomainDossier.aspx)
- [DomainIQ](https://www.domainiq.com/)
- [whois.domaintools.com](https://whois.domaintools.com/)
- [grayhatwarfare.com - domains](https://shorteners.grayhatwarfare.com/domains)
- [whoisology.com](https://whoisology.com/)
- [who.is](https://who.is/)
- [pentest-tools.com](https://pentest-tools.com/information-gathering/find-subdomains-of-domain)
- [BuiltWith](https://builtwith.com/)
- [MoonSearch](http://moonsearch.com/)
- [sitereport.netcraft.com](https://sitereport.netcraft.com/)
- [SynapsInt](https://synapsint.com/)
- [statscrop.com](https://www.statscrop.com/)
- [securityheaders.com](https://securityheaders.com/)
- [visualsitemapper.com](http://www.visualsitemapper.com/)
- [similarweb.com](https://www.similarweb.com/)
- [buckets.grayhatwarfare.com](https://buckets.grayhatwarfare.com/) - Public buckets
- [C99.nl](https://api.c99.nl/)
### URLs
- [PhoneBook](https://phonebook.cz/)
- [IntelligenceX](https://intelx.io/)
- [URLScan](https://urlscan.io/)
- [HackerTarget](https://hackertarget.com/ip-tools/)
- [MOZ Link Explorer](https://moz.com/link-explorer)
- [spyonweb.com](https://spyonweb.com/)
- [shorteners.grayhatwarfare.com](https://shorteners.grayhatwarfare.com/)
### DNS
- [DNSDumpster](https://dnsdumpster.com/)
- [RapidDNS](https://rapiddns.io/)
- [DNSdb](https://docs.farsightsecurity.com/#dnsdb)
- [Omnisint](https://omnisint.io/reverse-dns-lookup) - Reverse DNS lookup
- [HackerTarget](https://hackertarget.com/ip-tools/)
- [passivedns.mnemonic.no](https://passivedns.mnemonic.no/)
- [ptrarchive.com](http://ptrarchive.com/)
- [dnshistory.org](http://dnshistory.org/)
- [DNSTwister](https://dnstwister.report/)
- [DNSviz](https://dnsviz.net/)
- [C99.nl](https://api.c99.nl/)
### Certificates
- [Crt.sh](https://crt.sh/)
- [CTSearch](https://ui.ctsearch.entrust.com/ui/ctsearchui)
- [TLS.BufferOver.run](https://tls.bufferover.run/)
- [CertSpotter](https://sslmate.com/certspotter/)
- [SynapsInt](https://synapsint.com/)
- [Censys - Certificates](https://search.censys.io/certificates)
### WiFi networks
- [Wigle.net](https://wigle.net/)
### Credentials
- [Have I Been Pwned](https://haveibeenpwned.com/)
- [Dehashed](https://www.dehashed.com/)
- [Leak-Lookup](https://leak-lookup.com/)
- [Snusbase](https://snusbase.com/)
- [LeakCheck.io](https://leakcheck.io/)
- [crackstation.net](https://crackstation.net/)
- [breachdirectory.org](https://breachdirectory.org/)
- [Intel Techniques Breach Tool](https://inteltechniques.com/tools/Breaches.html)
### Social Networks
These can be useful for osint and social engineering.
- [Facebook](https://www.facebook.com/)
- [Intel Techniques Facebook Tool](https://inteltechniques.com/tools/Facebook.html)
- [Instagram](https://www.instagram.com/)
- [Intel Techniques Instagram Tool](https://inteltechniques.com/tools/Instagram.html)
- [YouTube](https://www.youtube.com/)
- [Twitter](https://twitter.com/)
- [Intel Techniques Twitter Tool](https://inteltechniques.com/tools/Twitter.html)
- [LinkedIn](https://www.linkedin.com/)
- [Intel Techniques Linkedin Tool](https://inteltechniques.com/tools/Linkedin.html)
- [Reddit](https://new.reddit.com/)
- [Pinterest](https://www.pinterest.com/)
- [Tumblr](https://www.tumblr.com/)
- [Flickr](https://www.flickr.com/)
- [SnapChat](https://www.snapchat.com/)
- [Whatsapp](https://www.whatsapp.com/)
- [Quora](https://www.quora.com/)
- [TikTok](https://www.tiktok.com/)
- [Vimeo](https://vimeo.com/)
- [Medium](https://medium.com/)
- [WeChat](https://www.wechat.com/)
- [VK](https://vk.com/)
- [Weibo](https://weibo.com/)
- [Tinder](https://tinder.com/)
- [WhatsMyName](https://whatsmyname.app/)
### Phone numbers
- [RocketReach](https://rocketreach.co/)
- [NumLookup](https://www.numlookup.com/)
- [WhitePages](https://www.whitepages.com/)
- [National Cellular Directory](https://www.nationalcellulardirectory.com/)
- [Phone Validator](https://www.phonevalidator.com/)
- [Free Carrier Lookup](https://freecarrierlookup.com/)
- [sync.me](https://sync.me/)
- [EmobileTracker](https://www.emobiletracker.com/)
- [SpyDialer](https://spydialer.com/)
- [Reverse Phone Lookup](https://www.reversephonelookup.com/)
- [ThatsThem](https://thatsthem.com/reverse-phone-lookup) - Reverse phone lookup
- [thisnumber.com](https://www.thisnumber.com/)
- [usphonebook.com](https://www.usphonebook.com/)
- [truecaller.com](https://www.truecaller.com/)
- [truepeoplesearch.com](https://www.truepeoplesearch.com/#)
- [SynapsInt](https://synapsint.com/)
- [C99.nl](https://api.c99.nl/)
### Threat Intelligence
- [PulseDive](https://pulsedive.com/)
- [ThreatCrowd](https://threatcrowd.org/)
- [ThreatMiner](https://www.threatminer.org/)
- [VirusTotal](https://www.virustotal.com/)
- [Rescure](https://rescure.me/)
- [otx.alienvault](https://otx.alienvault.com/)
- [urlquery.net](https://urlquery.net/)
- [bazaar.abuse.ch](https://bazaar.abuse.ch/browse/)
- [feodotracker.abuse.ch](https://feodotracker.abuse.ch/browse/)
- [sslbl.abuse.ch](https://sslbl.abuse.ch/ssl-certificates/)
- [urlhaus.abuse.ch](https://urlhaus.abuse.ch/browse/)
- [threatfox.abuse.ch](https://threatfox.abuse.ch/browse/)
### Web History
- [Web Archive](https://web.archive.org/)
- [Archive.ph](https://archive.ph/)
- [Archive.is](https://archive.is/)
- [CachedPages](http://www.cachedpages.com/)
- [stored.website](https://stored.website/)
- [CommonCrawl](https://commoncrawl.org/)
### Uncategorized
- [Spyse](https://spyse.com/)
- [NetoGraph](https://netograph.io/)
- [DNS.BufferOver.run](https://dns.bufferover.run/)
- [Chaos](https://chaos.projectdiscovery.io/#/)
- [PassiveTotal](https://api.passivetotal.org/)
References:
- https://osintframework.com/
- https://github.com/edoardottt/awesome-hacker-search-engines/blob/main/README.md
id: 16ac71d2552744ce9b56bb5cce16f2dd
parent_id: 51c0b6c8691f4a4db4fb8283ecb40b58
created_time: 2022-06-27T14:21:51.901Z
updated_time: 2022-09-12T18:04:37.204Z
is_conflict: 0
latitude: 34.74648090
longitude: -92.28959480
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin-desktop
source_application: net.cozic.joplin-desktop
application_data:
order: 1656339711901
user_created_time: 2022-06-27T14:21:51.901Z
user_updated_time: 2022-09-12T18:04:37.204Z
encryption_cipher_text:
encryption_applied: 0
markup_language: 1
is_shared: 0
share_id:
conflict_original_id:
master_key_id:
type_: 1 2e0cd2b39e5f49ef98c086209a048875.md 000644 0000004241 14336061324 012474 0 ustar 00 000000 000000 Main Template
# Template Breakdown:
# Summary Overview
- Summary about the company.
# Leadership:
## List out the directors/leaders that operate the company:
(copy and paste the bullets if multiple people are identified)
- Name:
- Role:
- Email:
- Phone Number:
- Address:
- Executives/Leadership:
- Employees that work under them:
- Social Media:
# Corporate Locations:
## Headquarters:
-
## Offices/Facilities of Interest:
-
# Social Media Precensce:
## List company social media presences that the company uses:
-
# Job postings:
## List the current job postings that the company is offering that could show a value of interest:
-
# Companies technical systems/assets:
## List systems that are found publicly that may be operated/managed by the company:
- Citrix Remote Access:
- SSL/VPN Gateways:
- Email Gateways (Office 365, Hosted Exchange, Gmail):
- Identity Providers (Azure, GSuite):
- External Identity:
- External User Access Portals:
- Public Websites:
- IP Addressing:
- Cloud Providers:
- Hosting Providers:
- SAAS Systems:
# Recent cases of the company being involved in certain incidents:
## General Incidents:
-
## Technical Incidents
-
# Relevant People of Interest:
## List people that could be of interest to the case
-
# Third Party Suppliers/Supply Chain Companies:
## Main Subsidaries:
-
# Other Related Companies:
-
## Competitors:
-
# Analyst notes:
## Sensitive data or documents found through public websites or dark web/breaches:
## Email addresses found through search engines:
## Leaked Credentials:
id: 2e0cd2b39e5f49ef98c086209a048875
parent_id: 96cd33181ac446419b2cbefec51c0739
created_time: 2020-12-04T01:22:38.806Z
updated_time: 2022-11-18T05:22:30.020Z
is_conflict: 0
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin-desktop
source_application: net.cozic.joplin-desktop
application_data:
order: 1627530699569
user_created_time: 2020-12-04T01:22:38.806Z
user_updated_time: 2022-11-18T05:22:30.020Z
encryption_cipher_text:
encryption_applied: 0
markup_language: 1
is_shared: 0
share_id:
conflict_original_id:
master_key_id:
type_: 1 33fa54146da947f68099687eb461a0eb.md 000644 0000004632 14336061324 012473 0 ustar 00 000000 000000 Dark Web
# Notes:
Links on the TOR network will constantly change.
# Finding the latest onion links:
- https://thehiddenwiki.org/
- https://dark.fail/
- https://onionlandsearchengine.com/
# Search Engines
Onion Live: https://onion.live/
Ahmia: http://juhanurmihxlp77nkq76byazcldy2hlmovfu2epvl5ankdibsot4csyd.onion/
http://msydqstlz2kzerdg.onion
Ahmia (Public Site): https://ahmia.fi/
Abiko: http://abikogailmonxlzl.onion
Darksearch.io: http://darkschn4iw2hxvpv2vy2uoxwkvs2padb56t3h4wqztre6upoc5qwgid.onion
Haystack: http://haystak5njsmn2hqkewecpaxetahtwhsbsa64jom2k22z5afxhnpxfid.onion/
http://haystakvxad7wbk5.onion
Torch: http://torch4st4l57l2u2vr5wqwvwyueucvnrao4xajqr2klmcmicrv7ccaad.onion/
tor66: http://tor66sewebgixwhcqfnp5inzp5x5uohhdy3kvtnyfxc2e5mxiuh34iid.onion/
OnionLand: http://3bbad7fauom4d6sgppalyqddsqbf5u5p56b5k5uk2zxsy3d6ey2jobad.onion/
http://3bbaaaccczcbdddz.onion
Kilos: http://mlyusr6htlxsyc7t2f4z53wdxh3win7q3qpxcrbam6jf3dmua7tnzuyd.onion/
Phobos: http://phobosxilamwcg75xt22id7aywkzol6q6rfl2flipcqoc4e4ahima5id.onion/
Recon: http://recon222tttn4ob7ujdhbn3s4gjre7netvzybuvbq2bcqwltkiqinhad.onion/
## V2 Onion Links
Quo: http://quosl6t6c64mnn7d.onion/
tor77: http://tor77orrbgejplwp.onion
NotEvil: http://hss3uro2hsxfogfq.onion
Searx: http://searx7gwtu5rh6wr.onion
Sindbad: http://sinbad66644fr5lq.onion
Caronte: http://carontevaha5x626.onion
Dark Matter: http://dark23456yyx57ny.onion
OnionSearch: http://5u56fjmxu63xcmbk.onion
Gibberfish: http://o2jdk5mdsijm2b7l.onion
Pickle: http://k65nsnwos76xfwsj.onion
# Public Search Engines for Tor:
- https://onion.live/
## Monitoring for new search urls:
- https://www.hunch.ly/darkweb-osint/
- http://jncyepk6zbnosf4p.onion/onions.html
- http://tor66sewebgixwhcqfnp5inzp5x5uohhdy3kvtnyfxc2e5mxiuh34iid.onion/fresh
id: 33fa54146da947f68099687eb461a0eb
parent_id: 51c0b6c8691f4a4db4fb8283ecb40b58
created_time: 2022-06-27T14:57:57.357Z
updated_time: 2022-11-19T04:35:01.875Z
is_conflict: 0
latitude: 34.74648090
longitude: -92.28959480
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin-desktop
source_application: net.cozic.joplin-desktop
application_data:
order: 1656355744887
user_created_time: 2022-06-27T14:57:57.357Z
user_updated_time: 2022-11-19T04:35:01.875Z
encryption_cipher_text:
encryption_applied: 0
markup_language: 1
is_shared: 0
share_id:
conflict_original_id:
master_key_id:
type_: 1 3a4d05e63db04fc4b76cc7e4903625fe.md 000644 0000000554 14336061324 012672 0 ustar 00 000000 000000 Sock Accounts
id: 3a4d05e63db04fc4b76cc7e4903625fe
created_time: 2021-07-27T03:55:41.611Z
updated_time: 2022-11-12T22:34:29.656Z
user_created_time: 2021-07-27T03:55:41.611Z
user_updated_time: 2021-07-27T03:55:41.611Z
encryption_cipher_text:
encryption_applied: 0
parent_id: 90987d9954be415d89fe7cc093c5f8c9
is_shared: 0
share_id:
master_key_id:
icon:
type_: 2 3a5cb99f707b4a0fb90fe277c98ea4d2.md 000644 0000001671 14336061324 012767 0 ustar 00 000000 000000 Searching the Internet
# Site References
- Mastering Google Search Operators: https://www.moz.com/mastering-google-search-operators-in-67-steps
# Talks
- https://www.blackhat.com/presentations/bh-europe-05/BH_EU_05-Long.pdf
# Books:
- https://www.amazon.com/Google-Hacking-Penetration-Testers-Johnny/dp/1597491764
id: 3a5cb99f707b4a0fb90fe277c98ea4d2
parent_id: 66ad12d80e514ed2858f35c2c5ad0d0e
created_time: 2020-12-07T04:52:07.607Z
updated_time: 2022-11-18T07:48:32.051Z
is_conflict: 0
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin-desktop
source_application: net.cozic.joplin-desktop
application_data:
order: 1659658201602.5
user_created_time: 2020-12-07T04:52:07.607Z
user_updated_time: 2022-11-18T07:48:32.051Z
encryption_cipher_text:
encryption_applied: 0
markup_language: 1
is_shared: 0
share_id:
conflict_original_id:
master_key_id:
type_: 1 3bbd231305eb471ab904aa9b9d324124.md 000644 0000033724 14336061324 012506 0 ustar 00 000000 000000 Hunting for ICS/SCADA Systems
# Using Shodan Website Filters:
1. Search organization IP range: net:x.x.x.x/y
2. Search by organization name: org:”name”
3. Search by IP : x.x.x.x
4. Search by city: city:”name of city”
5. Search by webpage title: title:”text here”
6. Search for common remote access: port:"3389"
# Common Ports for ICS SCADA Deveices
## Standard Protocol Ports
The standard protocol ports table lists the ports for protocols that are considered industry standards and are used be multiple vendors.
| Protocol | Ports |
| ----------------------- | :------------------------------------: |
| BACnet/IP | UDP/47808 |
| DNP3 | TCP/20000, UDP/20000 |
| EtherCAT | UDP/34980 |
| Ethernet/IP | TCP/44818, UDP/2222, UDP/44818 |
| FL-net | UDP/55000 to 55003 |
| Foundation Fieldbus HSE | TCP/1089 to 1091, UDP/1089 to 1091 |
| ICCP | TCP/102 |
| Modbus TCP | TCP/502 |
| OPC UA Binary | Vendor Application Specific |
| OPC UA Discovery Server | TCP/4840 |
| OPC UA XML | TCP/80, TCP/443 |
| PROFINET | TCP/34962 to 34964, UDP/34962 to 34964 |
| ROC PLus | TCP/UDP 4000 |
## Vendor Specific Ports
The vendor specific ports tables lists ports that are used by only one or a small number of vendors. These protocols are usually unpublished and proprietary.
| Vendor | Product or Protocol | Ports |
| ---------------- | :-----------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
| ABB | Ranger 2003 | TCP/10307, TCP/10311, TCP/10364 to 10365, TCP/10407, TCP/10409 to 10410, TCP/10412, TCP/10414 to 10415, TCP/10428, TCP/10431 to 10432, TCP/10447, TCP/10449 to 10450, TCP/12316, TCP/12645, TCP/12647 to 12648, TCP/13722, TCP/13724, TCP/13782 to 13783, TCP/38589, TCP/38593, TCP/38600, TCP/38971, TCP/39129, TCP/39278 |
| Emerson / Fisher | ROC Plus | TCP/UDP/4000 |
| Foxboro/Invensys | Foxboro DCS FoxApi | TCP/UDP/55555 |
| Foxboro/Invensys | Foxboro DCS AIMAPI | TCP/UDP/45678 |
| Foxboro/Invensys | Foxboro DCS Informix | TCP/UDP/1541 |
| Iconics | Genesis32 GenBroker (TCP) | TCP/18000 |
| Johnson Controls | Metasys N1 | TCP/UDP/11001 |
| Johnson Controls | Metasys BACNet | UDP/47808 |
| OSIsoft | PI Server | TCP/5450 |
| Siemens | Spectrum Power TG | TCP/50001 to 50016, TCP/50018 to 50020, UDP/50020 to 50021, TCP/50025 to 50028, TCP/50110 to 50111 |
| SNC | GENe | TCP/38000 to 38001, TCP/38011 to 38012, TCP/38014 to 38015, TCP/38200, TCP/38210, TCP/38301, TCP/38400, TCP/38700, TCP/62900, TCP/62911, TCP/62924, TCP/62930, TCP/62938, TCP/62956 to 62957, TCP/62963, TCP/62981 to 62982, TCP/62985, TCP/62992, TCP/63012, TCP/63027 to 63036, TCP/63041, TCP/63075, TCP/63079, TCP/63082, TCP/63088, TCP/63094, TCP/65443 |
| Telvent | OASyS DNA | UDP/5050 to 5051, TCP/5052, TCP/5065, TCP/12135 to 12137, TCP/56001 to 56099 |
| OMRON | FINS communication protocol | TCP/UDP/9600
## All Control System Ports Sorted By Port Number
The control system ports table combines the previous two tables and sorts the entries by port number.
| Protocol | Ports |
| ------------------ | :-----------------------------------: |
| TCP/502 | Modbus TCP |
| TCP/UDP/1089 | Foundation Fieldbus HSE |
| TCP/UDP/1090 | Foundation Fieldbus HSE |
| TCP/UDP/1091 | Foundation Fieldbus HSE |
| TCP/UDP/1541 | Foxboro/Invensys Foxboro DCS Informix |
| UDP/2222 | EtherNet/IP |
| TCP/3480 | OPC UA Discovery Server |
| TCP/UDP/4000 | Emerson/Fisher ROC Plus |
| UDP/5050 to 5051 | Telvent OASyS DNA |
| TCP/5052 | Telvent OASyS DNA |
| TCP/5065 | Telvent OASyS DNA |
| TCP/5450 | OSIsoft PI Server |
| TCP/UDP/9600 | OMRON FINS protocol |
| TCP/10307 | ABB Ranger 2003 |
| TCP/10311 | ABB Ranger 2003 |
| TCP/10364 to 10365 | ABB Ranger 2003 |
| TCP/10407 | ABB Ranger 2003 |
| TCP/10409 to 10410 | ABB Ranger 2003 |
| TCP/10412 | ABB Ranger 2003 |
| TCP/10414 to 10415 | ABB Ranger 2003 |
| TCP/10428 | ABB Ranger 2003 |
| TCP/10431 to 10432 | ABB Ranger 2003 |
| TCP/10447 | ABB Ranger 2003 |
| TCP/10449 to 10450 | ABB Ranger 2003 |
| TCP/12316 | ABB Ranger 2003 |
| TCP/12645 | ABB Ranger 2003 |
| TCP/12647 to 12648 | ABB Ranger 2003 |
| TCP/13722 | ABB Ranger 2003 |
| TCP/UDP/11001 | Johnson Controls Metasys N1 |
| TCP/12135 to 12137 | Telvent OASyS DNA |
| TCP/13724 | ABB Ranger 2003 |
| TCP/13782 to 13783 | ABB Ranger 2003 |
| TCP/18000 | Iconic Genesis32 GenBroker (TCP) |
| TCP/UDP/20000 | DNP3 |
| TCP/UDP/34962 | PROFINET |
| TCP/UDP/34963 | PROFINET |
| TCP/UDP/34964 | PROFINET |
| UDP/34980 | EtherCAT |
| TCP/38589 | ABB Ranger 2003 |
| TCP/38593 | ABB Ranger 2003 |
| TCP/38000 to 38001 | SNC GENe |
| TCP/38011 to 38012 | SNC GENe |
| TCP/38014 to 38015 | SNC GENe |
| TCP/38200 | SNC GENe |
| TCP/38210 | SNC GENe |
| TCP/38301 | SNC GENe |
| TCP/38400 | SNC GENe |
| TCP/38600 | ABB Ranger 2003 |
| TCP/38700 | SNC GENe |
| TCP/38971 | ABB Ranger 2003 |
| TCP/39129 | ABB Ranger 2003 |
| TCP/39278 | ABB Ranger 2003 |
| TCP/UDP/44818 | EtherNet/IP |
| TCP/UDP/45678 | Foxboro/Invensys Foxboro DCS AIMAPI |
| UDP/47808 | BACnet/IP |
| TCP/50001 to 50016 | Siemens Spectrum Power TG |
| TCP/50018 to 50020 | Siemens Spectrum Power TG |
| UDP/50020 to 50021 | Siemens Spectrum Power TG |
| TCP/50025 to 50028 | Siemens Spectrum Power TG |
| TCP/50110 to 50111 | Siemens Spectrum Power TG |
| UDP/55000 to 55002 | FL-net Reception |
| UDP/55003 | FL-net Transmission |
| TCP/UDP/55555 | Foxboor/Invensys Foxboro DCS FoxAPI |
| TCP/56001 to 56099 | Telvent OASyS DNA |
| TCP/62900 | SNC GENe |
| TCP/62911 | SNC GENe |
| TCP/62924 | SNC GENe |
| TCP/62930 | SNC GENe |
| TCP/62938 | SNC GENe |
| TCP/62956 to 62957 | SNC GENe |
| TCP/62963 | SNC GENe |
| TCP/62981 to 62982 | SNC GENe |
| TCP/62985 | SNC GENe |
| TCP/62992 | SNC GENe |
| TCP/63012 | SNC GENe |
| TCP/63027 to 63036 | SNC GENe |
| TCP/63041 | SNC GENe |
| TCP/63075 | SNC GENe |
| TCP/63079 | SNC GENe |
| TCP/63082 | SNC GENe |
| TCP/63088 | SNC GENe |
| TCP/63094 | SNC GENe |
| TCP/65443 | SNC GENe |
# Looking at Traffic Analysis:
## ICS/SCADA PCAP Samples:
- https://github.com/ITI/ICS-Security-Tools/tree/master/pcaps
## Wireshark
Always review the statistics. Check the following:
- Endpoints
- Protocols
- Conversations
# References:
- https://www.linkedin.com/pulse/osint-tips-icsscada-assessment-strategy-ashwani-kumar
- https://github.com/ITI/ICS-Security-Tools/blob/master/protocols/PORTS.md
- https://www.offensiveosint.io/offensive-osint-s04-e03-tracking-internet-facing-industrial-control-system-devices-with-kamerka-lite/
id: 3bbd231305eb471ab904aa9b9d324124
parent_id: 8166c2cb2ed54ecbbada07441e427fea
created_time: 2022-11-18T07:55:54.162Z
updated_time: 2022-11-18T08:06:45.528Z
is_conflict: 0
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin-desktop
source_application: net.cozic.joplin-desktop
application_data:
order: 0
user_created_time: 2022-11-18T07:55:54.162Z
user_updated_time: 2022-11-18T08:06:45.528Z
encryption_cipher_text:
encryption_applied: 0
markup_language: 1
is_shared: 0
share_id:
conflict_original_id:
master_key_id:
type_: 1 3e6844734f73490ebccc3048d293af2e.md 000644 0000000562 14336061324 012542 0 ustar 00 000000 000000 Missing Person Case
id: 3e6844734f73490ebccc3048d293af2e
created_time: 2020-10-19T01:18:07.512Z
updated_time: 2020-10-19T01:18:07.512Z
user_created_time: 2020-10-19T01:18:07.512Z
user_updated_time: 2020-10-19T01:18:07.512Z
encryption_cipher_text:
encryption_applied: 0
parent_id: 93c15daf2f4c486fb2f14ed7bf85bff5
is_shared: 0
share_id:
master_key_id:
icon:
type_: 2 400b72fc58084fc697dcf153a3804f78.md 000644 0000001612 14336061324 012462 0 ustar 00 000000 000000 Google Dorks for finding Various Online Devices
# Searching for Public Querys:
- https://www.exploit-db.com/google-hacking-database?category=13
# Pi-Hole Admin Dashboard:
- intitle:"Pi-hole-ip" inurl:admin
# Cisco ASDM Devices:
- inurl:/admin/public/asdm.jnlp "ASDM on"
id: 400b72fc58084fc697dcf153a3804f78
parent_id: 8166c2cb2ed54ecbbada07441e427fea
created_time: 2022-09-12T02:39:47.851Z
updated_time: 2022-09-12T04:23:48.169Z
is_conflict: 0
latitude: 0.00000000
longitude: 0.00000000
altitude: 0.0000
author:
source_url:
is_todo: 0
todo_due: 0
todo_completed: 0
source: joplin-desktop
source_application: net.cozic.joplin-desktop
application_data:
order: 1662950387851
user_created_time: 2022-09-12T02:39:47.851Z
user_updated_time: 2022-09-12T04:23:48.169Z
encryption_cipher_text:
encryption_applied: 0
markup_language: 1
is_shared: 0
share_id:
conflict_original_id:
master_key_id:
type_: 1 51c0b6c8691f4a4db4fb8283ecb40b58.md 000644 0000000544 14336061324 012671 0 ustar 00 000000 000000 Sites
id: 51c0b6c8691f4a4db4fb8283ecb40b58
created_time: 2020-10-19T01:24:06.107Z
updated_time: 2022-06-08T01:10:08.089Z
user_created_time: 2020-10-19T01:24:06.107Z
user_updated_time: 2022-06-08T01:10:08.089Z
encryption_cipher_text:
encryption_applied: 0
parent_id: 90987d9954be415d89fe7cc093c5f8c9
is_shared: 0
share_id:
master_key_id:
icon:
type_: 2 543ff1b66169453cac0931c55fcdb1ca.md 000644 0000005330 14336061324 012660 0 ustar 00 000000 000000 Browser Extensions
# Joplin Web Clipper
The web clipper that allows you to clip web pages and take screenshots while you're browsing the internet. You can either save complete web pages or simplified versions of it.
To install Joplin's Web Clipper you need to run through the following setup.
1. In Joplin select "Tools" > Options
2. Go to the Web Clipper tab and follow the instructions to install the web clipper exstention for Google Chrome or Firefox.
# Google Chrome, Brave, Opera, and Microsoft Edge
## Note: All of these exstensions can be installed in these browsers because they are built off the same underlying technology as Google Chrome.
Better History: https://chrome.google.com/webstore/detail/better-history/
Instant Data Scraper: https://chrome.google.com/webstore/detail/instant-data-scraper/
Map Switcher: https://chrome.google.com/webstore/detail/map-switcher/
Privacy Badger: https://privacybadger.org/
RevEye Reverse Image Search: https://chrome.google.com/webstore/detail/reveye-reverse-image-sear/
Session Buddy: https://chrome.google.com/webstore/detail/session-buddy
Search by Image: https://chrome.google.com/webstore/detail/search-by-image/