├── .gitignore ├── LICENSE ├── README.md ├── RELEASE ├── UPGRADE ├── collect_distribution.py ├── email_to_db.py ├── etc ├── logging_example.ini └── vt_example.ini ├── fetchmail_processor.py ├── fetchmailrc-example ├── lib ├── __init__.py ├── analysis │ ├── __init__.py │ ├── analysis.py │ ├── example.py │ └── mwzoo.py ├── ansistrm.py ├── constants.py ├── hunting.py └── vtmis │ ├── __init__.py │ ├── scoring_example.py │ └── utilities.py ├── migrate └── migrate_0.11.py ├── process_downloads.py ├── review_alerts.py └── vtmis.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/RELEASE -------------------------------------------------------------------------------- /UPGRADE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/UPGRADE -------------------------------------------------------------------------------- /collect_distribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/collect_distribution.py -------------------------------------------------------------------------------- /email_to_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/email_to_db.py -------------------------------------------------------------------------------- /etc/logging_example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/etc/logging_example.ini -------------------------------------------------------------------------------- /etc/vt_example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/etc/vt_example.ini -------------------------------------------------------------------------------- /fetchmail_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/fetchmail_processor.py -------------------------------------------------------------------------------- /fetchmailrc-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/fetchmailrc-example -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/analysis/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ "mwzoo" ] 2 | -------------------------------------------------------------------------------- /lib/analysis/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/lib/analysis/analysis.py -------------------------------------------------------------------------------- /lib/analysis/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/lib/analysis/example.py -------------------------------------------------------------------------------- /lib/analysis/mwzoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/lib/analysis/mwzoo.py -------------------------------------------------------------------------------- /lib/ansistrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/lib/ansistrm.py -------------------------------------------------------------------------------- /lib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/lib/constants.py -------------------------------------------------------------------------------- /lib/hunting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/lib/hunting.py -------------------------------------------------------------------------------- /lib/vtmis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/vtmis/scoring_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/lib/vtmis/scoring_example.py -------------------------------------------------------------------------------- /lib/vtmis/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/lib/vtmis/utilities.py -------------------------------------------------------------------------------- /migrate/migrate_0.11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/migrate/migrate_0.11.py -------------------------------------------------------------------------------- /process_downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/process_downloads.py -------------------------------------------------------------------------------- /review_alerts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/review_alerts.py -------------------------------------------------------------------------------- /vtmis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lolnate/vt-hunter/HEAD/vtmis.py --------------------------------------------------------------------------------