├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── config_sample.cfg ├── requirements.txt ├── sample ├── input_sample.txt └── output.csv └── vt_lookup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegeral/osint_to_timesketch/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegeral/osint_to_timesketch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegeral/osint_to_timesketch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegeral/osint_to_timesketch/HEAD/README.md -------------------------------------------------------------------------------- /config_sample.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegeral/osint_to_timesketch/HEAD/config_sample.cfg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | virustotal-api 2 | configparser 3 | datetime 4 | bs4 5 | pypssl 6 | coinaddr -------------------------------------------------------------------------------- /sample/input_sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegeral/osint_to_timesketch/HEAD/sample/input_sample.txt -------------------------------------------------------------------------------- /sample/output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegeral/osint_to_timesketch/HEAD/sample/output.csv -------------------------------------------------------------------------------- /vt_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaegeral/osint_to_timesketch/HEAD/vt_lookup.py --------------------------------------------------------------------------------