├── .gitignore ├── LICENSE ├── README.md ├── common_osint_model ├── __init__.py ├── models │ ├── __init__.py │ ├── autonomous_system.py │ ├── dns.py │ ├── domain.py │ ├── host.py │ ├── http.py │ ├── service.py │ ├── ssh.py │ └── tls.py └── utils.py ├── examples.ipynb ├── poetry.lock ├── pyproject.toml └── test_data ├── 1.1.1.1_binaryedge.json ├── 1.1.1.1_censys.json ├── 1.1.1.1_shodan.json ├── 140.82.118.4_censys.json ├── 140.82.118.4_censys_flattened.json ├── 140.82.118.4_shodan.json ├── 140.82.118.4_shodan_flattened.json ├── 140.82.121.4_binaryedge.json ├── 140.82.121.4_censys_v2.json ├── 140.82.121.4_shodan.json ├── 9.9.9.9_censys.json ├── 9.9.9.9_censys_flattened.json ├── 9.9.9.9_censys_v2.json ├── 9.9.9.9_censys_v2_api.json ├── 9.9.9.9_censys_v2_flattened.json ├── 9.9.9.9_shodan.json ├── 9.9.9.9_shodan_flattened.json ├── create.sh ├── www-google-com.pem ├── www-google-com_censys.json ├── www-google-com_censys_flattened.json └── www-google-com_flattened.pem /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/README.md -------------------------------------------------------------------------------- /common_osint_model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/common_osint_model/__init__.py -------------------------------------------------------------------------------- /common_osint_model/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/common_osint_model/models/__init__.py -------------------------------------------------------------------------------- /common_osint_model/models/autonomous_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/common_osint_model/models/autonomous_system.py -------------------------------------------------------------------------------- /common_osint_model/models/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/common_osint_model/models/dns.py -------------------------------------------------------------------------------- /common_osint_model/models/domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/common_osint_model/models/domain.py -------------------------------------------------------------------------------- /common_osint_model/models/host.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/common_osint_model/models/host.py -------------------------------------------------------------------------------- /common_osint_model/models/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/common_osint_model/models/http.py -------------------------------------------------------------------------------- /common_osint_model/models/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/common_osint_model/models/service.py -------------------------------------------------------------------------------- /common_osint_model/models/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/common_osint_model/models/ssh.py -------------------------------------------------------------------------------- /common_osint_model/models/tls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/common_osint_model/models/tls.py -------------------------------------------------------------------------------- /common_osint_model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/common_osint_model/utils.py -------------------------------------------------------------------------------- /examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/examples.ipynb -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test_data/1.1.1.1_binaryedge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/1.1.1.1_binaryedge.json -------------------------------------------------------------------------------- /test_data/1.1.1.1_censys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/1.1.1.1_censys.json -------------------------------------------------------------------------------- /test_data/1.1.1.1_shodan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/1.1.1.1_shodan.json -------------------------------------------------------------------------------- /test_data/140.82.118.4_censys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/140.82.118.4_censys.json -------------------------------------------------------------------------------- /test_data/140.82.118.4_censys_flattened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/140.82.118.4_censys_flattened.json -------------------------------------------------------------------------------- /test_data/140.82.118.4_shodan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/140.82.118.4_shodan.json -------------------------------------------------------------------------------- /test_data/140.82.118.4_shodan_flattened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/140.82.118.4_shodan_flattened.json -------------------------------------------------------------------------------- /test_data/140.82.121.4_binaryedge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/140.82.121.4_binaryedge.json -------------------------------------------------------------------------------- /test_data/140.82.121.4_censys_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/140.82.121.4_censys_v2.json -------------------------------------------------------------------------------- /test_data/140.82.121.4_shodan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/140.82.121.4_shodan.json -------------------------------------------------------------------------------- /test_data/9.9.9.9_censys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/9.9.9.9_censys.json -------------------------------------------------------------------------------- /test_data/9.9.9.9_censys_flattened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/9.9.9.9_censys_flattened.json -------------------------------------------------------------------------------- /test_data/9.9.9.9_censys_v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/9.9.9.9_censys_v2.json -------------------------------------------------------------------------------- /test_data/9.9.9.9_censys_v2_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/9.9.9.9_censys_v2_api.json -------------------------------------------------------------------------------- /test_data/9.9.9.9_censys_v2_flattened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/9.9.9.9_censys_v2_flattened.json -------------------------------------------------------------------------------- /test_data/9.9.9.9_shodan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/9.9.9.9_shodan.json -------------------------------------------------------------------------------- /test_data/9.9.9.9_shodan_flattened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/9.9.9.9_shodan_flattened.json -------------------------------------------------------------------------------- /test_data/create.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/create.sh -------------------------------------------------------------------------------- /test_data/www-google-com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/www-google-com.pem -------------------------------------------------------------------------------- /test_data/www-google-com_censys.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/www-google-com_censys.json -------------------------------------------------------------------------------- /test_data/www-google-com_censys_flattened.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/www-google-com_censys_flattened.json -------------------------------------------------------------------------------- /test_data/www-google-com_flattened.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3c7/common-osint-model/HEAD/test_data/www-google-com_flattened.pem --------------------------------------------------------------------------------