├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── docker-image.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── email_tab.png ├── graph_example.png ├── infohound ├── __init__.py ├── admin.py ├── apps.py ├── infohound_config.sample.py ├── models.py ├── static │ └── infohound │ │ ├── css │ │ └── styles.css │ │ ├── imgs │ │ ├── basset-hound.png │ │ ├── colorkit.png │ │ ├── colorkit2.png │ │ └── colorkit_3.png │ │ └── js │ │ └── index.js ├── tasks.py ├── templates │ ├── base.html │ ├── data_display.html │ ├── index.html │ └── tabs_content │ │ ├── dorks.html │ │ ├── emails.html │ │ ├── general.html │ │ ├── people.html │ │ ├── subdomains.html │ │ └── tasks.html ├── tests.py ├── tool │ ├── __init__.py │ ├── ai_assistant │ │ └── ollama.py │ ├── analysis_modules │ │ ├── domain_analysis.py │ │ ├── email_analysis.py │ │ ├── files_analysis.py │ │ ├── fingerprints.json │ │ ├── people_analisys.py │ │ └── usernames_analysis.py │ ├── custom_modules │ │ └── holehe.py │ ├── data_sources │ │ ├── alienvault.py │ │ ├── archive.py │ │ ├── bing_data.py │ │ ├── crtsh.py │ │ ├── google_data.py │ │ ├── hacker_target.py │ │ ├── leaks │ │ │ ├── firefox_monitor.py │ │ │ ├── leak_lookup.py │ │ │ └── proxy_nova.py │ │ ├── services │ │ │ ├── adobe.py │ │ │ ├── duolingo.py │ │ │ ├── imgur.py │ │ │ ├── mewe.py │ │ │ ├── parler.py │ │ │ ├── rumble.py │ │ │ ├── snapchat.py │ │ │ ├── twitter.py │ │ │ └── wordpress.py │ │ └── shodan.py │ ├── dorks │ │ ├── exposed services.txt │ │ ├── find files.txt │ │ ├── general information.txt │ │ ├── information in external services.txt │ │ ├── possible vulnerabilites.txt │ │ └── search emails.txt │ ├── downloaded_files │ │ └── .gitkeep │ ├── infohound_utils.py │ ├── main.py │ └── retriever_modules │ │ ├── domains.py │ │ ├── dorks.py │ │ ├── emails.py │ │ ├── files.py │ │ ├── ips.py │ │ ├── people.py │ │ ├── subdomains.py │ │ ├── urls.py │ │ └── usernames.py ├── urls.py ├── utils.py └── views.py ├── infohound_project ├── __init__.py ├── asgi.py ├── celery.py ├── settings.py ├── urls.py └── wsgi.py ├── maltego_mapping.mtz ├── manage.py ├── new_infohound_diagram.jpg └── requirements.txt /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /email_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/email_tab.png -------------------------------------------------------------------------------- /graph_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/graph_example.png -------------------------------------------------------------------------------- /infohound/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infohound/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/admin.py -------------------------------------------------------------------------------- /infohound/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/apps.py -------------------------------------------------------------------------------- /infohound/infohound_config.sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/infohound_config.sample.py -------------------------------------------------------------------------------- /infohound/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/models.py -------------------------------------------------------------------------------- /infohound/static/infohound/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/static/infohound/css/styles.css -------------------------------------------------------------------------------- /infohound/static/infohound/imgs/basset-hound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/static/infohound/imgs/basset-hound.png -------------------------------------------------------------------------------- /infohound/static/infohound/imgs/colorkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/static/infohound/imgs/colorkit.png -------------------------------------------------------------------------------- /infohound/static/infohound/imgs/colorkit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/static/infohound/imgs/colorkit2.png -------------------------------------------------------------------------------- /infohound/static/infohound/imgs/colorkit_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/static/infohound/imgs/colorkit_3.png -------------------------------------------------------------------------------- /infohound/static/infohound/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/static/infohound/js/index.js -------------------------------------------------------------------------------- /infohound/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tasks.py -------------------------------------------------------------------------------- /infohound/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/templates/base.html -------------------------------------------------------------------------------- /infohound/templates/data_display.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/templates/data_display.html -------------------------------------------------------------------------------- /infohound/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/templates/index.html -------------------------------------------------------------------------------- /infohound/templates/tabs_content/dorks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/templates/tabs_content/dorks.html -------------------------------------------------------------------------------- /infohound/templates/tabs_content/emails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/templates/tabs_content/emails.html -------------------------------------------------------------------------------- /infohound/templates/tabs_content/general.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/templates/tabs_content/general.html -------------------------------------------------------------------------------- /infohound/templates/tabs_content/people.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/templates/tabs_content/people.html -------------------------------------------------------------------------------- /infohound/templates/tabs_content/subdomains.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/templates/tabs_content/subdomains.html -------------------------------------------------------------------------------- /infohound/templates/tabs_content/tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/templates/tabs_content/tasks.html -------------------------------------------------------------------------------- /infohound/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tests.py -------------------------------------------------------------------------------- /infohound/tool/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infohound/tool/ai_assistant/ollama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/ai_assistant/ollama.py -------------------------------------------------------------------------------- /infohound/tool/analysis_modules/domain_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/analysis_modules/domain_analysis.py -------------------------------------------------------------------------------- /infohound/tool/analysis_modules/email_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/analysis_modules/email_analysis.py -------------------------------------------------------------------------------- /infohound/tool/analysis_modules/files_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/analysis_modules/files_analysis.py -------------------------------------------------------------------------------- /infohound/tool/analysis_modules/fingerprints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/analysis_modules/fingerprints.json -------------------------------------------------------------------------------- /infohound/tool/analysis_modules/people_analisys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/analysis_modules/people_analisys.py -------------------------------------------------------------------------------- /infohound/tool/analysis_modules/usernames_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/analysis_modules/usernames_analysis.py -------------------------------------------------------------------------------- /infohound/tool/custom_modules/holehe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/custom_modules/holehe.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/alienvault.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/alienvault.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/archive.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/bing_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/bing_data.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/crtsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/crtsh.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/google_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/google_data.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/hacker_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/hacker_target.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/leaks/firefox_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/leaks/firefox_monitor.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/leaks/leak_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/leaks/leak_lookup.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/leaks/proxy_nova.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/leaks/proxy_nova.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/services/adobe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/services/adobe.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/services/duolingo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/services/duolingo.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/services/imgur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/services/imgur.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/services/mewe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/services/mewe.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/services/parler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/services/parler.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/services/rumble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/services/rumble.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/services/snapchat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/services/snapchat.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/services/twitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/services/twitter.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/services/wordpress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/services/wordpress.py -------------------------------------------------------------------------------- /infohound/tool/data_sources/shodan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/data_sources/shodan.py -------------------------------------------------------------------------------- /infohound/tool/dorks/exposed services.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/dorks/exposed services.txt -------------------------------------------------------------------------------- /infohound/tool/dorks/find files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/dorks/find files.txt -------------------------------------------------------------------------------- /infohound/tool/dorks/general information.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/dorks/general information.txt -------------------------------------------------------------------------------- /infohound/tool/dorks/information in external services.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/dorks/information in external services.txt -------------------------------------------------------------------------------- /infohound/tool/dorks/possible vulnerabilites.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/dorks/possible vulnerabilites.txt -------------------------------------------------------------------------------- /infohound/tool/dorks/search emails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/dorks/search emails.txt -------------------------------------------------------------------------------- /infohound/tool/downloaded_files/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /infohound/tool/infohound_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/infohound_utils.py -------------------------------------------------------------------------------- /infohound/tool/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/main.py -------------------------------------------------------------------------------- /infohound/tool/retriever_modules/domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/retriever_modules/domains.py -------------------------------------------------------------------------------- /infohound/tool/retriever_modules/dorks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/retriever_modules/dorks.py -------------------------------------------------------------------------------- /infohound/tool/retriever_modules/emails.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/retriever_modules/emails.py -------------------------------------------------------------------------------- /infohound/tool/retriever_modules/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/retriever_modules/files.py -------------------------------------------------------------------------------- /infohound/tool/retriever_modules/ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/retriever_modules/ips.py -------------------------------------------------------------------------------- /infohound/tool/retriever_modules/people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/retriever_modules/people.py -------------------------------------------------------------------------------- /infohound/tool/retriever_modules/subdomains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/retriever_modules/subdomains.py -------------------------------------------------------------------------------- /infohound/tool/retriever_modules/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/retriever_modules/urls.py -------------------------------------------------------------------------------- /infohound/tool/retriever_modules/usernames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/tool/retriever_modules/usernames.py -------------------------------------------------------------------------------- /infohound/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/urls.py -------------------------------------------------------------------------------- /infohound/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/utils.py -------------------------------------------------------------------------------- /infohound/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound/views.py -------------------------------------------------------------------------------- /infohound_project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound_project/__init__.py -------------------------------------------------------------------------------- /infohound_project/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound_project/asgi.py -------------------------------------------------------------------------------- /infohound_project/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound_project/celery.py -------------------------------------------------------------------------------- /infohound_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound_project/settings.py -------------------------------------------------------------------------------- /infohound_project/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound_project/urls.py -------------------------------------------------------------------------------- /infohound_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/infohound_project/wsgi.py -------------------------------------------------------------------------------- /maltego_mapping.mtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/maltego_mapping.mtz -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/manage.py -------------------------------------------------------------------------------- /new_infohound_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/new_infohound_diagram.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fundacio-i2CAT/InfoHound/HEAD/requirements.txt --------------------------------------------------------------------------------