├── .gitignore ├── Contributing.md ├── LICENSE ├── README.md ├── autorequirements.txt ├── data └── GeoLite2-City.mmdb ├── hostintel.py ├── libs ├── __init__.py ├── censysinfo.py ├── dnsinfo.py ├── geoip.py ├── isc.py ├── network.py ├── otx.py ├── pt.py ├── shodaninfo.py ├── skeleton.py ├── threatcrowdinfo.py └── vt.py ├── notes ├── Notes.pdf └── Notes.png ├── requirements.txt ├── sampleconfig.conf └── sampledata ├── largerlist.csv ├── largerlist.txt ├── smalllist.csv └── smalllist.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/.gitignore -------------------------------------------------------------------------------- /Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/Contributing.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/README.md -------------------------------------------------------------------------------- /autorequirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/autorequirements.txt -------------------------------------------------------------------------------- /data/GeoLite2-City.mmdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/data/GeoLite2-City.mmdb -------------------------------------------------------------------------------- /hostintel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/hostintel.py -------------------------------------------------------------------------------- /libs/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /libs/censysinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/libs/censysinfo.py -------------------------------------------------------------------------------- /libs/dnsinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/libs/dnsinfo.py -------------------------------------------------------------------------------- /libs/geoip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/libs/geoip.py -------------------------------------------------------------------------------- /libs/isc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/libs/isc.py -------------------------------------------------------------------------------- /libs/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/libs/network.py -------------------------------------------------------------------------------- /libs/otx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/libs/otx.py -------------------------------------------------------------------------------- /libs/pt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/libs/pt.py -------------------------------------------------------------------------------- /libs/shodaninfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/libs/shodaninfo.py -------------------------------------------------------------------------------- /libs/skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/libs/skeleton.py -------------------------------------------------------------------------------- /libs/threatcrowdinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/libs/threatcrowdinfo.py -------------------------------------------------------------------------------- /libs/vt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/libs/vt.py -------------------------------------------------------------------------------- /notes/Notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/notes/Notes.pdf -------------------------------------------------------------------------------- /notes/Notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/notes/Notes.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/requirements.txt -------------------------------------------------------------------------------- /sampleconfig.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/sampleconfig.conf -------------------------------------------------------------------------------- /sampledata/largerlist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/sampledata/largerlist.csv -------------------------------------------------------------------------------- /sampledata/largerlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/sampledata/largerlist.txt -------------------------------------------------------------------------------- /sampledata/smalllist.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/sampledata/smalllist.csv -------------------------------------------------------------------------------- /sampledata/smalllist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/keithjjones/hostintel/HEAD/sampledata/smalllist.txt --------------------------------------------------------------------------------