forked from lanmaster53/recon-ng-marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodules.yml
1059 lines (1059 loc) · 35.3 KB
/
modules.yml
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
- author: thrapt ([email protected])
dependencies: []
description: Uses the DNS cache snooping technique to check for visited domains
files:
- av_domains.lst
last_updated: '2019-06-24'
name: DNS Cache Snooper
path: discovery/info_disclosure/cache_snoop
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53), thrapt ([email protected]), Jay Turla (@shipcod3),
and Mark Jeffery
dependencies: []
description: Checks hosts for interesting files in predictable locations.
files: []
last_updated: '2019-06-24'
name: Interesting File Finder
path: discovery/info_disclosure/interesting_files
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Provides a shell interface for remote command injection flaws in web
applications.
files: []
last_updated: '2019-06-24'
name: Remote Command Injection Shell Interface
path: exploitation/injection/command_injector
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53) & Justin Timko (@soloxdead)
dependencies: []
description: Exploits XPath injection flaws to enumerate the contents of serverside
XML documents.
files: []
last_updated: '2019-10-08'
name: Xpath Injection Brute Forcer
path: exploitation/injection/xpath_bruter
required_keys: []
version: '1.2'
- author: Ethan Robish (@EthanRobish)
dependencies: []
description: Imports values from a CSV file into a database table.
files: []
last_updated: '2019-08-09'
name: Advanced CSV File Importer
path: import/csv_file
required_keys: []
version: '1.1'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Imports values from a list file into a database table and column.
files: []
last_updated: '2019-06-24'
name: List File Importer
path: import/list
required_keys: []
version: '1.0'
- author: Ryan Hays
dependencies: []
description: Imports hosts and ports into the respective databases from Nmap XML
output.
files: []
last_updated: '2019-06-24'
name: Nmap XML Output Importer
path: import/nmap
required_keys: []
version: '1.0'
- author: Joe Black (@MyChickenNinja), @fullmetalcache, and Brian King
dependencies: []
description: Harvests profiles from LinkedIn by querying the Bing API cache for
LinkedIn pages related to the given companies, and adds them to the 'profiles'
table. The module will then parse the resulting information to extract the user's
full name and job title (title parsing recently improved). The user's full name
and title are then added to the 'contacts' table. This module does not access
LinkedIn at any time.
files: []
last_updated: '2019-06-24'
name: Bing Cache Linkedin Profile and Contact Harvester
path: recon/companies-contacts/bing_linkedin_cache
required_keys:
- bing_api
version: '1.0'
- author: Jonathan M. Wilbur <[email protected]>
dependencies: []
description: Given a company name, gathers the registered IANA Private Enterprise
Number (PEN) contact from the PEN registry. The contacts's full name and email
address are then added to the 'contacts' table.
files: []
last_updated: '2019-06-24'
name: IANA Private Enterprise Number Contact Getter
path: recon/companies-contacts/pen
required_keys: []
version: '1.0'
- author: Jonathan M. Wilbur <[email protected]>
dependencies: []
description: Given a company name, gathers a domain from the email address of the
registered IANA Private Enterprise Number (PEN) contact from the PEN registry.
The domain is added to the 'domains' table.
files: []
last_updated: '2019-06-24'
name: IANA Private Enterprise Number Domain Getter
path: recon/companies-domains/pen
required_keys: []
version: '1.0'
- author: Gaetan Ferry (@_mabote_) from @synacktiv
dependencies: []
description: Harvests domain names belonging to a company by using the viewdns.info
free reverse whois tool.
files: []
last_updated: '2019-08-08'
name: Viewdns Reverse Whois Domain Harvester
path: recon/companies-domains/viewdns_reverse_whois
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Uses the Github API to enumerate repositories and member profiles associated
with a company search string. Updates the respective tables with the results.
files: []
last_updated: '2019-06-24'
name: Github Resource Miner
path: recon/companies-multi/github_miner
required_keys:
- github_api
version: '1.0'
- author: Austin Tipton (@hiEntropy404)
dependencies: []
description: Harvests host and port information from the Shodan API by using the
'org' search operator. Updates the 'hosts' and 'ports' tables with the results.
files: []
last_updated: '2019-06-26'
name: Shodan IP Enumerator
path: recon/companies-multi/shodan_org
required_keys:
- shodan_api
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Uses the ARIN Whois RWS to harvest companies, locations, netblocks,
and contacts associated with the given company search string. Updates the respective
tables with the results.
files: []
last_updated: '2019-06-24'
name: Whois Data Miner
path: recon/companies-multi/whois_miner
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Leverages MailTester.com to validate email addresses.
files: []
last_updated: '2019-06-24'
name: MailTester Email Validator
path: recon/contacts-contacts/mailtester
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Applies a mangle pattern to all of the contacts stored in the database,
creating email addresses or usernames for each harvested contact. Updates the
'contacts' table with the results.
files: []
last_updated: '2019-06-24'
name: Contact Name Mangler
path: recon/contacts-contacts/mangle
required_keys: []
version: '1.0'
- author: Ethan Robish (@EthanRobish)
dependencies: []
description: Applies a regex or unmangle pattern to all of the contacts stored in
the database, pulling out the individual name components. Updates the 'contacts'
table with the results.
files: []
last_updated: '2019-06-24'
name: Contact Name Unmangler
path: recon/contacts-contacts/unmangle
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53), Tyler Halfpop (@tylerhalfpop) and Geoff Pamerleau
(@_geoff_p_)
dependencies: []
description: Leverages the haveibeenpwned.com API to determine if email addresses
are associated with breached credentials. Adds compromised email addresses to
the 'credentials' table.
files: []
last_updated: '2019-09-10'
name: Have I been pwned? Breach Search
path: recon/contacts-credentials/hibp_breach
required_keys:
- hibp_api
version: '1.2'
- author: Tim Tomes (@lanmaster53) and Geoff Pamerleau (@_geoff_p_)
dependencies: []
description: Leverages the haveibeenpwned.com API to determine if email addresses
have been published to various paste sites. Adds compromised email addresses to
the 'credentials' table.
files: []
last_updated: '2019-09-10'
name: Have I been pwned? Paste Search
path: recon/contacts-credentials/hibp_paste
required_keys:
- hibp_api
version: '1.1'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Harvests credentials from the scylla.sh API using email addresses as
input. Updates the 'credentials' and 'contacts' tables with the results.
files: []
last_updated: '2019-09-11'
name: Scylla Targetted Credential Harvester
path: recon/contacts-credentials/scylla
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Adds a new domain for all the hostnames associated with email addresses
stored in the 'contacts' table.
files:
- suffixes.txt
last_updated: '2019-06-24'
name: Contacts to Domains Data Migrator
path: recon/contacts-domains/migrate_contacts
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53) and Cam Barts (@cam-barts)
dependencies: []
description: Harvests contact information and profiles from the fullcontact.com
API using email addresses as input. Updates the 'contacts' and 'profiles' tables
with the results.
files: []
last_updated: '2019-07-24'
name: FullContact Contact Enumerator
path: recon/contacts-profiles/fullcontact
required_keys:
- fullcontact_api
version: '1.1'
- author: Ethan Robish (@EthanRobish) and Tim Tomes (@lanmaster53)
dependencies: []
description: Decrypts hashes leaked from the 2013 Adobe breach. First, the module
cross references the leak ID to identify Adobe hashes in the 'password' column
of the 'creds' table, moves the Adobe hashes to the 'hash' column, and changes
the 'type' to 'Adobe'. Second, the module attempts to crack the hashes by comparing
the ciphertext's decoded cipher blocks to a local block lookup table (BLOCK_DB)
of known cipher block values. Finally, the module updates the 'creds' table with
the results based on the level of success.
files:
- adobe_blocks.json
last_updated: '2019-06-24'
name: Adobe Hash Cracker
path: recon/credentials-credentials/adobe
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Searches Google for the value of a hash and tests for a match by hashing
every word in the resulting page using all hashing algorithms supported by the
'hashlib' library. Updates the 'credentials' table with the positive results.
files: []
last_updated: '2019-06-24'
name: PyBozoCrack Hash Lookup
path: recon/credentials-credentials/bozocrack
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53) and Mike Lisi (@MikeCodesThings)
dependencies: []
description: Uses the Hashes.org API to perform a reverse hash lookup. Updates the
'credentials' table with the positive results.
files: []
last_updated: '2019-06-24'
name: Hashes.org Hash Lookup
path: recon/credentials-credentials/hashes_org
required_keys:
- hashes_api
version: '1.0'
- author: Jonathan M. Wilbur <[email protected]>
dependencies: []
description: Given a domain, finds a contact in the IANA Private Enterprise Number
(PEN) registry whose email address ends with that domain. The domain is then added
to the 'domains' table.
files: []
last_updated: '2019-06-24'
name: IANA Private Enterprise Number Company-by-Domain Lookup
path: recon/domains-companies/pen
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies:
- olefile
- pypdf3
- lxml
description: Searches for files associated with the provided domain(s) and extracts
any contact related metadata.
files: []
last_updated: '2019-06-24'
name: Meta Data Extractor
path: recon/domains-contacts/metacrawler
required_keys: []
version: '1.1'
- author: Jonathan M. Wilbur <[email protected]>
dependencies: []
description: Given a domain, finds a contact in the IANA Private Enterprise Number
(PEN) registry whose email address ends with that domain. The domain is then added
to the 'domains' table.
files: []
last_updated: '2019-06-24'
name: IANA Private Enterprise Number Company-by-Domain Lookup
path: recon/domains-contacts/pen
required_keys: []
version: '1.0'
- author: Robert Frost (@frosty_1313, frosty[at]unluckyfrosty.net) and Cam Barts (@cam-barts)
dependencies: []
description: Searches the MIT public PGP key server for email addresses of the given
domain. Updates the 'contacts' table with the results.
files: []
last_updated: '2019-10-08'
name: PGP Key Owner Lookup
path: recon/domains-contacts/pgp_search
required_keys: []
version: '1.1'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Uses the ARIN Whois RWS to harvest POC data from whois queries for
the given domain. Updates the 'contacts' table with the results.
files: []
last_updated: '2019-06-24'
name: Whois POC Harvester
path: recon/domains-contacts/whois_pocs
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies:
- pyaes
description: Queries the PwnedList API for credentials associated with the given
usernames. Updates the 'credentials' table with the results.
files: []
last_updated: '2019-06-24'
name: PwnedList - Account Credentials Fetcher
path: recon/domains-credentials/pwnedlist/account_creds
required_keys:
- pwnedlist_api
- pwnedlist_secret
- pwnedlist_iv
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Queries the PwnedList API for account usage statistics.
files: []
last_updated: '2019-06-24'
name: PwnedList - API Usage Statistics Fetcher
path: recon/domains-credentials/pwnedlist/api_usage
required_keys:
- pwnedlist_api
- pwnedlist_secret
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies:
- pycryptodome
description: Queries the PwnedList API to fetch all credentials for a domain. Updates
the 'credentials' table with the results.
files: []
last_updated: '2019-06-24'
name: PwnedList - Pwned Domain Credentials Fetcher
path: recon/domains-credentials/pwnedlist/domain_creds
required_keys:
- pwnedlist_api
- pwnedlist_secret
- pwnedlist_iv
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Queries the PwnedList API for a domain to determine if any associated
credentials have been compromised. This module does NOT return any credentials,
only a total number of compromised credentials.
files: []
last_updated: '2019-06-24'
name: PwnedList - Pwned Domain Statistics Fetcher
path: recon/domains-credentials/pwnedlist/domain_ispwned
required_keys:
- pwnedlist_api
- pwnedlist_secret
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Queries the local database for information associated with a leak ID.
The 'leaks_dump' module must be used to populate the local database before this
module will execute successfully.
files: []
last_updated: '2019-06-24'
name: PwnedList - Leak Details Fetcher
path: recon/domains-credentials/pwnedlist/leak_lookup
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Queries the PwnedList API for information associated with all known
leaks. Updates the 'leaks' table with the results.
files: []
last_updated: '2019-06-24'
name: PwnedList - Leak Details Retriever
path: recon/domains-credentials/pwnedlist/leaks_dump
required_keys:
- pwnedlist_api
- pwnedlist_secret
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Harvests credentials from the scylla.sh API using domains as input.
Updates the 'credentials' and 'contacts' tables with the results.
files: []
last_updated: '2019-09-11'
name: Scylla Bulk Credential Harvester
path: recon/domains-credentials/scylla
required_keys: []
version: '1.0'
- author: Marcus Watson (@BranMacMuffin)
dependencies: []
description: Brute forces TLDs and SLDs using DNS. Updates the 'domains' table with
the results.
files:
- suffixes.txt
last_updated: '2019-06-24'
name: DNS Public Suffix Brute Forcer
path: recon/domains-domains/brute_suffix
required_keys: []
version: '1.0'
- author: Ryan Hays
dependencies: []
description: Uses the BinaryEdge API to discover subdomains.
files: []
last_updated: '2019-06-24'
name: BinaryEdge.io DNS lookup
path: recon/domains-hosts/binaryedge
required_keys:
- binaryedge_api
version: '1.0'
- author: Marcus Watson (@BranMacMuffin)
dependencies: []
description: Leverages the Bing API and "domain:" advanced search operator to harvest
hosts. Updates the 'hosts' table with the results.
files: []
last_updated: '2019-06-24'
name: Bing API Hostname Enumerator
path: recon/domains-hosts/bing_domain_api
required_keys:
- bing_api
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Harvests hosts from Bing.com by using the 'site' search operator. Updates
the 'hosts' table with the results.
files: []
last_updated: '2019-07-04'
name: Bing Hostname Enumerator
path: recon/domains-hosts/bing_domain_web
required_keys: []
version: '1.1'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Brute forces host names using DNS. Updates the 'hosts' table with the
results.
files:
- hostnames.txt
last_updated: '2019-06-24'
name: DNS Hostname Brute Forcer
path: recon/domains-hosts/brute_hosts
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Leverages the BuiltWith API to identify hosts, technologies, and contacts
associated with a domain.
files: []
last_updated: '2019-06-24'
name: BuiltWith Enumerator
path: recon/domains-hosts/builtwith
required_keys:
- builtwith_api
version: '1.0'
- author: Rich Warren ([email protected])
dependencies: []
description: Searches certificate transparency data from crt.sh, adding newly identified
hosts to the hosts table.
files: []
last_updated: '2019-09-16'
name: Certificiate Transparency Search
path: recon/domains-hosts/certificate_transparency
required_keys: []
version: '1.1'
- author: Pedro Rodrigues (@Pedro_SEC_R)
dependencies: []
description: Queries the FindSubDomain page for sub-domain information in a domain.
files: []
last_updated: '2019-06-24'
name: FindSubDomains DNS search
path: recon/domains-hosts/findsubdomains
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Harvests hosts from Google.com by using the 'site' search operator.
Updates the 'hosts' table with the results.
files: []
last_updated: '2019-06-24'
name: Google Hostname Enumerator
path: recon/domains-hosts/google_site_web
required_keys: []
version: '1.0'
- author: Michael Henriksen (@michenriksen)
dependencies: []
description: Uses the HackerTarget.com API to find host names. Updates the 'hosts'
table with the results.
files: []
last_updated: '2019-06-24'
name: HackerTarget Lookup
path: recon/domains-hosts/hackertarget
required_keys: []
version: '1.0'
- author: Jim Becher (@jimbecher, [email protected])
dependencies: []
description: Retrieves the MX and SPF IPv4 records for a domain. Updates the 'hosts'
and/or 'netblocks' tables with the results.
files: []
last_updated: '2019-06-24'
name: Mail eXchange (MX) and Sender Policy Framework (SPF) Record Retriever
path: recon/domains-hosts/mx_spf_ip
required_keys: []
version: '1.0'
- author: thrapt ([email protected])
dependencies: []
description: Harvests hosts from Netcraft.com. Updates the 'hosts' table with the
results.
files: []
last_updated: '2019-06-24'
name: Netcraft Hostname Enumerator
path: recon/domains-hosts/netcraft
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Harvests hosts from the Shodan API by using the 'hostname' search operator.
Updates the 'hosts' table with the results.
files: []
last_updated: '2019-06-24'
name: Shodan Hostname Enumerator
path: recon/domains-hosts/shodan_hostname
required_keys:
- shodan_api
version: '1.0'
- author: Zach Grace (@ztgrace) [email protected] and Bryan Onel (@BryanOnel86) [email protected]
dependencies: []
description: Uses the ssltools.com API to obtain the Subject Alternative Names for
a domain. Updates the 'hosts' table with the results.
files: []
last_updated: '2019-06-24'
name: SSL SAN Lookup
path: recon/domains-hosts/ssl_san
required_keys: []
version: '1.0'
- author: mike2dot0
dependencies: []
description: Leverages the ThreatCrowd passive DNS API to discover hosts/subdomains.
files: []
last_updated: '2019-06-24'
name: ThreatCrowd DNS lookup
path: recon/domains-hosts/threatcrowd
required_keys: []
version: '1.0'
- author: Pedro Rodrigues
dependencies: []
description: Use ThreatMiner API to discover subdomains.
files: []
last_updated: '2019-06-24'
name: ThreatMiner DNS lookup
path: recon/domains-hosts/threatminer
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Searches for possible vulnerabilites in a domain by leveraging the
Google Hacking Database (GHDB) and the 'site' search operator. Updates the 'vulnerabilities'
table with the results.
files:
- ghdb.json
last_updated: '2019-06-26'
name: Google Hacking Database
path: recon/domains-vulnerabilities/ghdb
required_keys: []
version: '1.1'
- author: Micah Hoffman (@WebBreacher)
dependencies: []
description: Checks XSSed.com for XSS records associated with a domain and displays
the first 20 results.
files: []
last_updated: '2019-06-24'
name: XSSed Domain Lookup
path: recon/domains-vulnerabilities/xssed
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Checks XSSposed.com for XSS records associated with a domain.
files: []
last_updated: '2019-06-24'
name: XSSposed Domain Lookup
path: recon/domains-vulnerabilities/xssposed
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Adds a new domain for all the hostnames stored in the 'hosts' table.
files:
- suffixes.txt
last_updated: '2019-06-24'
name: Hosts to Domains Data Migrator
path: recon/hosts-domains/migrate_hosts
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Leverages the Bing API and "ip:" advanced search operator to enumerate
other virtual hosts sharing the same IP address. Updates the 'hosts' table with
the results.
files: []
last_updated: '2019-06-24'
name: Bing API IP Neighbor Enumerator
path: recon/hosts-hosts/bing_ip
required_keys:
- bing_api
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Leverages the ipinfodb.com API to geolocate a host by IP address. Updates
the 'hosts' table with the results.
files: []
last_updated: '2019-06-24'
name: IPInfoDB GeoIP
path: recon/hosts-hosts/ipinfodb
required_keys:
- ipinfodb_api
version: '1.0'
- author: Siarhei Harbachou (Tech.Insiders), Gerrit Helm (G) and Tim Tomes (@lanmaster53)
dependencies: []
description: Leverages the ipstack.com API to geolocate a host by IP address. Updates
the 'hosts' table with the results.
files: []
last_updated: '2019-06-24'
name: ipstack
path: recon/hosts-hosts/ipstack
required_keys:
- ipstack_api
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Resolves the IP address for a host. Updates the 'hosts' table with
the results.
files: []
last_updated: '2019-06-24'
name: Hostname Resolver
path: recon/hosts-hosts/resolve
required_keys: []
version: '1.0'
- author: John Babio (@3vi1john), @vulp1n3, and Tim Tomes (@lanmaster53)
dependencies: []
description: Conducts a reverse lookup for each IP address to resolve the hostname.
Updates the 'hosts' table with the results.
files: []
last_updated: '2019-06-24'
name: Reverse Resolver
path: recon/hosts-hosts/reverse_resolve
required_keys: []
version: '1.0'
- author: Tim Maletic (borrowing from the ssl_san module by Zach Graces)
dependencies: []
description: Uses the ssltools.com site to obtain host names from a site's SSL certificate
metadata to update the 'hosts' table. Security issues with the certificate trust
are pushed to the 'vulnerabilities' table.
files: []
last_updated: '2019-06-24'
name: SSLTools.com Host Name Lookups
path: recon/hosts-hosts/ssltools
required_keys: []
version: '1.0'
- author: USSC (thanks @jevalenciap)
dependencies: []
description: Harvests domains from the Virustotal by using the report API. Updates
the 'hosts' table with the results.
files: []
last_updated: '2019-06-24'
name: Virustotal domains extractor
path: recon/hosts-hosts/virustotal
required_keys:
- virustotal_api
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Adds a new location for all the locations stored in the 'hosts' table.
files: []
last_updated: '2019-06-24'
name: Hosts to Locations Data Migrator
path: recon/hosts-locations/migrate_hosts
required_keys: []
version: '1.0'
- author: Ryan Hays
dependencies: []
description: Uses the BinaryEdge API to discover open services for IP Addresses.
files: []
last_updated: '2019-06-24'
name: BinaryEdge.io Ports lookup
path: recon/hosts-ports/binaryedge
required_keys:
- binaryedge_api
version: '1.0'
- author: Tim Tomes (@lanmaster53) and Matt Puckett (@t3lc0)
dependencies: []
description: Harvests port information from the Shodan API by using the 'ip' search
operator. Updates the 'ports' table with the results.
files: []
last_updated: '2019-06-24'
name: Shodan IP Enumerator
path: recon/hosts-ports/shodan_ip
required_keys:
- shodan_api
version: '1.0'
- author: Quentin Kaiser ([email protected])
dependencies: []
description: Queries the Google Maps API to obtain coordinates for an address. Updates
the 'locations' table with the results.
files: []
last_updated: '2019-06-24'
name: Address Geocoder
path: recon/locations-locations/geocode
required_keys:
- google_api
version: '1.0'
- author: Quentin Kaiser ([email protected])
dependencies: []
description: Queries the Google Maps API to obtain an address from coordinates.
files: []
last_updated: '2019-06-24'
name: Reverse Geocoder
path: recon/locations-locations/reverse_geocode
required_keys:
- google_api
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Searches Flickr for media in the specified proximity to a location.
files: []
last_updated: '2019-06-24'
name: Flickr Geolocation Search
path: recon/locations-pushpins/flickr
required_keys:
- flickr_api
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Searches Shodan for media in the specified proximity to a location.
files: []
last_updated: '2019-06-24'
name: Shodan Geolocation Search
path: recon/locations-pushpins/shodan
required_keys:
- shodan_api
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Searches Twitter for media in the specified proximity to a location.
files: []
last_updated: '2019-06-24'
name: Twitter Geolocation Search
path: recon/locations-pushpins/twitter
required_keys:
- twitter_api
- twitter_secret
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Searches the YouTube API for media in the specified proximity to a
location.
files: []
last_updated: '2019-06-24'
name: YouTube Geolocation Search
path: recon/locations-pushpins/youtube
required_keys:
- google_api
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Uses the ARIN Whois RWS to harvest Companies data from whois queries
for the given netblock. Updates the 'companies' table with the results.
files: []
last_updated: '2019-06-24'
name: Whois Company Harvester
path: recon/netblocks-companies/whois_orgs
required_keys: []
version: '1.0'
- author: John Babio (@3vi1john)
dependencies: []
description: Conducts a reverse lookup for each of a netblock's IP addresses to
resolve the hostname. Updates the 'hosts' table with the results.
files: []
last_updated: '2019-06-24'
name: Reverse Resolver
path: recon/netblocks-hosts/reverse_resolve
required_keys: []
version: '1.0'
- author: Mike Siegel and Tim Tomes (@lanmaster53)
dependencies: []
description: Harvests hosts from the Shodan API by using the 'net' search operator.
Updates the 'hosts' table with the results.
files: []
last_updated: '2019-06-24'
name: Shodan Network Enumerator
path: recon/netblocks-hosts/shodan_net
required_keys:
- shodan_api
version: '1.0'
- author: USSC (thanks @jevalenciap)
dependencies: []
description: Harvests domains from the Virustotal by using the report API. Updates
the 'hosts' table with the results.
files: []
last_updated: '2019-06-24'
name: Virustotal domains extractor
path: recon/netblocks-hosts/virustotal
required_keys:
- virustotal_api
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Queries the Internet Census 2012 data through Exfiltrated.com to enumerate
open ports for a netblock.
files: []
last_updated: '2019-06-24'
name: Internet Census 2012 Lookup
path: recon/netblocks-ports/census_2012
required_keys: []
version: '1.0'
- author: John Askew (https://bitbucket.org/skew)
dependencies: []
description: Queries the censys.io API to enumerate information about netblocks.
files: []
last_updated: '2019-06-24'
name: Censys.io Netblock Enumerator
path: recon/netblocks-ports/censysio
required_keys:
- censysio_id
- censysio_secret
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Adds a new host for all the hostnames stored in the 'ports' table.
files: []
last_updated: '2019-06-24'
name: Ports to Hosts Data Migrator
path: recon/ports-hosts/migrate_ports
required_keys: []
version: '1.0'
- author: Cam Barts (@cam-barts)
dependencies: []
description: Harvests Basic Contact Information from Bing based on LinkedIn profiles.
files: []
last_updated: '2019-10-08'
name: Bing LinkedIn Profile Contact Harvester
path: recon/profiles-contacts/bing_linkedin_contacts
required_keys:
- bing_api
version: '1.1'
- author: Micah Hoffman (@WebBreacher)
dependencies: []
description: Searches public code repositories for information about a given username.
files: []
last_updated: '2019-06-24'
name: Dev Diver Repository Activity Examiner
path: recon/profiles-contacts/dev_diver
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Uses the Github API to gather user info from harvested profiles. Updates
the 'contacts' table with the results.
files: []
last_updated: '2019-06-24'
name: Github Profile Harvester
path: recon/profiles-contacts/github_users
required_keys:
- github_api
version: '1.0'
- author: Tim Tomes (@lanmaster53), thrapt ([email protected]) and Ryan Hays (@_ryanhays)
dependencies: []
description: Leverages NameChk.com API to validate the existance of usernames on
specific web sites and updates the 'profiles' table with the results.
files: []
last_updated: '2019-06-24'
name: NameChk.com Username Validator
path: recon/profiles-profiles/namechk
required_keys:
- namechk_api
version: '1.0'
- author: Micah Hoffman (@WebBreacher)
dependencies: []
description: Takes each username from the profiles table and searches a variety
of web sites for those users. The list of valid sites comes from the parent project
at https://github.com/WebBreacher/WhatsMyName
files: []
last_updated: '2019-06-24'
name: OSINT HUMINT Profile Collector
path: recon/profiles-profiles/profiler
required_keys: []
version: '1.0'
- author: Robert Frost (@frosty_1313, frosty[at]unluckyfrosty.net)
dependencies: []
description: Leverages the Twitter API to enumerate users that mentioned the given
handle. Updates the 'profiles' table with the results.
files: []
last_updated: '2019-06-24'
name: Twitter Mentioned
path: recon/profiles-profiles/twitter_mentioned
required_keys:
- twitter_api
- twitter_secret
version: '1.0'
- author: Robert Frost (@frosty_1313, frosty[at]unluckyfrosty.net)
dependencies: []
description: Leverages the Twitter API to enumerate users that were mentioned by
the given handle. Updates the 'profiles' table with the results.
files: []
last_updated: '2019-06-24'
name: Twitter Mentions
path: recon/profiles-profiles/twitter_mentions
required_keys:
- twitter_api
- twitter_secret
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Uses the Github API to enumerate repositories and gists owned by a
Github user. Updates the 'repositories' table with the results.
files: []
last_updated: '2019-06-24'
name: Github Code Enumerator
path: recon/profiles-repositories/github_repos
required_keys:
- github_api
version: '1.0'
- author: Michael Henriksen (@michenriksen)
dependencies: []
description: Uses the Github API to gather user profiles from repository commits.
Updates the 'profiles' table with the results.
files: []
last_updated: '2019-06-24'
name: Github Commit Searcher
path: recon/repositories-profiles/github_commits
required_keys:
- github_api
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Uses the Github API to download and search Gists for possible information
disclosures. Updates the 'vulnerabilities' table with the results.
files:
- gist_keywords.txt
last_updated: '2019-06-24'
name: Github Gist Searcher
path: recon/repositories-vulnerabilities/gists_search
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Uses the Github API to search for possible vulnerabilites in source
code by leveraging Github Dorks and the 'repo' search operator. Updates the 'vulnerabilities'
table with the results.
files:
- github_dorks.txt
last_updated: '2019-06-24'
name: Github Dork Analyzer
path: recon/repositories-vulnerabilities/github_dorks
required_keys:
- github_api
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Creates a CSV file containing the specified harvested data.
files: []
last_updated: '2019-06-24'
name: CSV File Creator
path: reporting/csv
required_keys: []
version: '1.0'
- author: Tim Tomes (@lanmaster53)
dependencies: []
description: Creates an HTML report.
files:
- template_html.html
last_updated: '2019-06-24'
name: HTML Report Generator
path: reporting/html
required_keys: []
version: '1.0'