├── .github └── issue_template.md ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── active_default_file_check.py ├── active_scan.py ├── base.html ├── check_urls.txt ├── config_sample.py ├── contributors.txt ├── datasploit.py ├── datasploit_config.py ├── dep_check.py ├── docs ├── Usage.md ├── Writing_Modules.md ├── apiGeneration.md ├── contributors.md ├── home.md ├── index.md ├── roadmap.md └── setupGuide.md ├── domain ├── __init__.py ├── base.py ├── domain_GooglePDF.py ├── domain_censys.py ├── domain_checkpunkspider.py ├── domain_dnsrecords.py ├── domain_emailhunter.py ├── domain_forumsearch.py ├── domain_github.py ├── domain_googletracking.py ├── domain_history.py ├── domain_pagelinks.py ├── domain_pastes.py ├── domain_shodan.py ├── domain_subdomains.py ├── domain_wappalyzer.py ├── domain_whois.py ├── domain_wikileaks.py ├── domain_zoomeye.py └── template.py ├── domainOsint.py ├── emailOsint.py ├── emails ├── __init__.py ├── base.py ├── email_basic_checks.py ├── email_clearbit.py ├── email_fullcontact.py ├── email_hacked_emails.py ├── email_haveibeenpwned.py ├── email_pastes.py ├── email_scribd.py ├── email_slideshare.py ├── email_whoismind.py └── template.py ├── ip ├── __init__.py ├── base.py ├── ip_shodan.py ├── ip_virustotal.py ├── ip_whois.py └── template.py ├── ipOsint.py ├── mkdocs.yml ├── osint_runner.py ├── reports └── README ├── requirements.txt ├── roadmap.txt ├── username ├── __init__.py ├── base.py ├── template.py ├── username_gitlabdetails.py ├── username_gitscrape.py ├── username_gituserdetails.py ├── username_keybase.py ├── username_profilepic.py ├── username_traviscidetails.py ├── username_twitterdetails.py ├── username_usernamesearch.py └── username_youtubedetails.py ├── usernameOsint.py └── vault.py /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/__init__.py -------------------------------------------------------------------------------- /active_default_file_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/active_default_file_check.py -------------------------------------------------------------------------------- /active_scan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/active_scan.py -------------------------------------------------------------------------------- /base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/base.html -------------------------------------------------------------------------------- /check_urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/check_urls.txt -------------------------------------------------------------------------------- /config_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/config_sample.py -------------------------------------------------------------------------------- /contributors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/contributors.txt -------------------------------------------------------------------------------- /datasploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/datasploit.py -------------------------------------------------------------------------------- /datasploit_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/datasploit_config.py -------------------------------------------------------------------------------- /dep_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/dep_check.py -------------------------------------------------------------------------------- /docs/Usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/docs/Usage.md -------------------------------------------------------------------------------- /docs/Writing_Modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/docs/Writing_Modules.md -------------------------------------------------------------------------------- /docs/apiGeneration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/docs/apiGeneration.md -------------------------------------------------------------------------------- /docs/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/docs/contributors.md -------------------------------------------------------------------------------- /docs/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/docs/home.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/docs/roadmap.md -------------------------------------------------------------------------------- /docs/setupGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/docs/setupGuide.md -------------------------------------------------------------------------------- /domain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/__init__.py -------------------------------------------------------------------------------- /domain/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/base.py -------------------------------------------------------------------------------- /domain/domain_GooglePDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_GooglePDF.py -------------------------------------------------------------------------------- /domain/domain_censys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_censys.py -------------------------------------------------------------------------------- /domain/domain_checkpunkspider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_checkpunkspider.py -------------------------------------------------------------------------------- /domain/domain_dnsrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_dnsrecords.py -------------------------------------------------------------------------------- /domain/domain_emailhunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_emailhunter.py -------------------------------------------------------------------------------- /domain/domain_forumsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_forumsearch.py -------------------------------------------------------------------------------- /domain/domain_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_github.py -------------------------------------------------------------------------------- /domain/domain_googletracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_googletracking.py -------------------------------------------------------------------------------- /domain/domain_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_history.py -------------------------------------------------------------------------------- /domain/domain_pagelinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_pagelinks.py -------------------------------------------------------------------------------- /domain/domain_pastes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_pastes.py -------------------------------------------------------------------------------- /domain/domain_shodan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_shodan.py -------------------------------------------------------------------------------- /domain/domain_subdomains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_subdomains.py -------------------------------------------------------------------------------- /domain/domain_wappalyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_wappalyzer.py -------------------------------------------------------------------------------- /domain/domain_whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_whois.py -------------------------------------------------------------------------------- /domain/domain_wikileaks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_wikileaks.py -------------------------------------------------------------------------------- /domain/domain_zoomeye.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/domain_zoomeye.py -------------------------------------------------------------------------------- /domain/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domain/template.py -------------------------------------------------------------------------------- /domainOsint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/domainOsint.py -------------------------------------------------------------------------------- /emailOsint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/emailOsint.py -------------------------------------------------------------------------------- /emails/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/emails/__init__.py -------------------------------------------------------------------------------- /emails/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/emails/base.py -------------------------------------------------------------------------------- /emails/email_basic_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/emails/email_basic_checks.py -------------------------------------------------------------------------------- /emails/email_clearbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/emails/email_clearbit.py -------------------------------------------------------------------------------- /emails/email_fullcontact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/emails/email_fullcontact.py -------------------------------------------------------------------------------- /emails/email_hacked_emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/emails/email_hacked_emails.py -------------------------------------------------------------------------------- /emails/email_haveibeenpwned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/emails/email_haveibeenpwned.py -------------------------------------------------------------------------------- /emails/email_pastes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/emails/email_pastes.py -------------------------------------------------------------------------------- /emails/email_scribd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/emails/email_scribd.py -------------------------------------------------------------------------------- /emails/email_slideshare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/emails/email_slideshare.py -------------------------------------------------------------------------------- /emails/email_whoismind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/emails/email_whoismind.py -------------------------------------------------------------------------------- /emails/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/emails/template.py -------------------------------------------------------------------------------- /ip/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/ip/__init__.py -------------------------------------------------------------------------------- /ip/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/ip/base.py -------------------------------------------------------------------------------- /ip/ip_shodan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/ip/ip_shodan.py -------------------------------------------------------------------------------- /ip/ip_virustotal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/ip/ip_virustotal.py -------------------------------------------------------------------------------- /ip/ip_whois.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/ip/ip_whois.py -------------------------------------------------------------------------------- /ip/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/ip/template.py -------------------------------------------------------------------------------- /ipOsint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/ipOsint.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /osint_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/osint_runner.py -------------------------------------------------------------------------------- /reports/README: -------------------------------------------------------------------------------- 1 | Reports Holder 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/requirements.txt -------------------------------------------------------------------------------- /roadmap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/roadmap.txt -------------------------------------------------------------------------------- /username/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/username/__init__.py -------------------------------------------------------------------------------- /username/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/username/base.py -------------------------------------------------------------------------------- /username/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/username/template.py -------------------------------------------------------------------------------- /username/username_gitlabdetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/username/username_gitlabdetails.py -------------------------------------------------------------------------------- /username/username_gitscrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/username/username_gitscrape.py -------------------------------------------------------------------------------- /username/username_gituserdetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/username/username_gituserdetails.py -------------------------------------------------------------------------------- /username/username_keybase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/username/username_keybase.py -------------------------------------------------------------------------------- /username/username_profilepic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/username/username_profilepic.py -------------------------------------------------------------------------------- /username/username_traviscidetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/username/username_traviscidetails.py -------------------------------------------------------------------------------- /username/username_twitterdetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/username/username_twitterdetails.py -------------------------------------------------------------------------------- /username/username_usernamesearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/username/username_usernamesearch.py -------------------------------------------------------------------------------- /username/username_youtubedetails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/username/username_youtubedetails.py -------------------------------------------------------------------------------- /usernameOsint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/usernameOsint.py -------------------------------------------------------------------------------- /vault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FOGSEC/datasploit/HEAD/vault.py --------------------------------------------------------------------------------