├── .gitignore ├── .idea ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── osint-combiner.iml ├── 10-logstash.conf ├── 20-logstash-institutions.conf ├── LICENSE ├── Python.gitignore ├── README.md ├── add-institution-field.py ├── base.py ├── censysfunctions.py ├── config.ini ├── convert-censys-file.py ├── convert-json-field.py ├── convert-shodan-file.py ├── converted_outputfiles └── .gitignore ├── debugscripts ├── analyse_json_file.py ├── combine_json_files.py └── count_distinct_ips.py ├── docs └── osint-combiner.PNG ├── es-add-cve-by-query.py ├── es-get-all-documents.py ├── es-get-ips-by-query.py ├── es-query-to-file.py ├── inputfiles ├── cidrfiles │ └── .gitignore ├── csvfiles │ └── .gitignore └── queryfiles │ └── .gitignore ├── outputfiles ├── censys │ └── .gitignore ├── ipinfo │ └── .gitignore └── shodan │ └── .gitignore ├── shodanfunctions.py ├── timetracker.py ├── tofile-censys.py └── tofile-shodan.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/osint-combiner.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/.idea/osint-combiner.iml -------------------------------------------------------------------------------- /10-logstash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/10-logstash.conf -------------------------------------------------------------------------------- /20-logstash-institutions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/20-logstash-institutions.conf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/LICENSE -------------------------------------------------------------------------------- /Python.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/Python.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/README.md -------------------------------------------------------------------------------- /add-institution-field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/add-institution-field.py -------------------------------------------------------------------------------- /base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/base.py -------------------------------------------------------------------------------- /censysfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/censysfunctions.py -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/config.ini -------------------------------------------------------------------------------- /convert-censys-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/convert-censys-file.py -------------------------------------------------------------------------------- /convert-json-field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/convert-json-field.py -------------------------------------------------------------------------------- /convert-shodan-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/convert-shodan-file.py -------------------------------------------------------------------------------- /converted_outputfiles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/converted_outputfiles/.gitignore -------------------------------------------------------------------------------- /debugscripts/analyse_json_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/debugscripts/analyse_json_file.py -------------------------------------------------------------------------------- /debugscripts/combine_json_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/debugscripts/combine_json_files.py -------------------------------------------------------------------------------- /debugscripts/count_distinct_ips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/debugscripts/count_distinct_ips.py -------------------------------------------------------------------------------- /docs/osint-combiner.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/docs/osint-combiner.PNG -------------------------------------------------------------------------------- /es-add-cve-by-query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/es-add-cve-by-query.py -------------------------------------------------------------------------------- /es-get-all-documents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/es-get-all-documents.py -------------------------------------------------------------------------------- /es-get-ips-by-query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/es-get-ips-by-query.py -------------------------------------------------------------------------------- /es-query-to-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/es-query-to-file.py -------------------------------------------------------------------------------- /inputfiles/cidrfiles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/inputfiles/cidrfiles/.gitignore -------------------------------------------------------------------------------- /inputfiles/csvfiles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/inputfiles/csvfiles/.gitignore -------------------------------------------------------------------------------- /inputfiles/queryfiles/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/inputfiles/queryfiles/.gitignore -------------------------------------------------------------------------------- /outputfiles/censys/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/outputfiles/censys/.gitignore -------------------------------------------------------------------------------- /outputfiles/ipinfo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/outputfiles/ipinfo/.gitignore -------------------------------------------------------------------------------- /outputfiles/shodan/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/outputfiles/shodan/.gitignore -------------------------------------------------------------------------------- /shodanfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/shodanfunctions.py -------------------------------------------------------------------------------- /timetracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/timetracker.py -------------------------------------------------------------------------------- /tofile-censys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/tofile-censys.py -------------------------------------------------------------------------------- /tofile-shodan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaanen/osint-combiner/HEAD/tofile-shodan.py --------------------------------------------------------------------------------