├── .gitignore ├── CHANGELOG ├── LICENCE ├── README.md ├── confs ├── README.md ├── argus.conf ├── example_zeo.conf ├── example_zodb_file_database.conf ├── example_zodb_server_database.conf ├── ra.conf ├── stf.conf ├── zeo.conf └── zodb.conf ├── database └── README.md ├── dependencies.txt ├── doc └── labels.md ├── modules ├── __init__.py ├── distances_1.py ├── dns_parser.py ├── example.py ├── experiments_1.py ├── markov_models_1.py ├── template_module.py └── visualize_1.py ├── stf.py └── stf ├── __init__.py ├── __init__.pyc ├── common ├── __init__.py ├── __init__.pyc ├── abstracts.py ├── ap.py ├── colors.py ├── markov_chains.py └── out.py └── core ├── __init__.py ├── __init__.pyc ├── configuration.py ├── connections.py ├── database.py ├── dataset.py ├── file.py ├── labels.py ├── models.py ├── models_constructors.py ├── notes.py ├── plugins.py └── ui ├── __init__.py ├── commands.py └── console.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/README.md -------------------------------------------------------------------------------- /confs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/confs/README.md -------------------------------------------------------------------------------- /confs/argus.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/confs/argus.conf -------------------------------------------------------------------------------- /confs/example_zeo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/confs/example_zeo.conf -------------------------------------------------------------------------------- /confs/example_zodb_file_database.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/confs/example_zodb_file_database.conf -------------------------------------------------------------------------------- /confs/example_zodb_server_database.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/confs/example_zodb_server_database.conf -------------------------------------------------------------------------------- /confs/ra.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/confs/ra.conf -------------------------------------------------------------------------------- /confs/stf.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/confs/stf.conf -------------------------------------------------------------------------------- /confs/zeo.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/confs/zeo.conf -------------------------------------------------------------------------------- /confs/zodb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/confs/zodb.conf -------------------------------------------------------------------------------- /database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/database/README.md -------------------------------------------------------------------------------- /dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/dependencies.txt -------------------------------------------------------------------------------- /doc/labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/doc/labels.md -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/modules/__init__.py -------------------------------------------------------------------------------- /modules/distances_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/modules/distances_1.py -------------------------------------------------------------------------------- /modules/dns_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/modules/dns_parser.py -------------------------------------------------------------------------------- /modules/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/modules/example.py -------------------------------------------------------------------------------- /modules/experiments_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/modules/experiments_1.py -------------------------------------------------------------------------------- /modules/markov_models_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/modules/markov_models_1.py -------------------------------------------------------------------------------- /modules/template_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/modules/template_module.py -------------------------------------------------------------------------------- /modules/visualize_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/modules/visualize_1.py -------------------------------------------------------------------------------- /stf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf.py -------------------------------------------------------------------------------- /stf/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stf/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/__init__.pyc -------------------------------------------------------------------------------- /stf/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stf/common/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/common/__init__.pyc -------------------------------------------------------------------------------- /stf/common/abstracts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/common/abstracts.py -------------------------------------------------------------------------------- /stf/common/ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/common/ap.py -------------------------------------------------------------------------------- /stf/common/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/common/colors.py -------------------------------------------------------------------------------- /stf/common/markov_chains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/common/markov_chains.py -------------------------------------------------------------------------------- /stf/common/out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/common/out.py -------------------------------------------------------------------------------- /stf/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stf/core/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/core/__init__.pyc -------------------------------------------------------------------------------- /stf/core/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/core/configuration.py -------------------------------------------------------------------------------- /stf/core/connections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/core/connections.py -------------------------------------------------------------------------------- /stf/core/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/core/database.py -------------------------------------------------------------------------------- /stf/core/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/core/dataset.py -------------------------------------------------------------------------------- /stf/core/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/core/file.py -------------------------------------------------------------------------------- /stf/core/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/core/labels.py -------------------------------------------------------------------------------- /stf/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/core/models.py -------------------------------------------------------------------------------- /stf/core/models_constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/core/models_constructors.py -------------------------------------------------------------------------------- /stf/core/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/core/notes.py -------------------------------------------------------------------------------- /stf/core/plugins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/core/plugins.py -------------------------------------------------------------------------------- /stf/core/ui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stf/core/ui/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/core/ui/commands.py -------------------------------------------------------------------------------- /stf/core/ui/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stratosphereips/StratosphereTestingFramework/HEAD/stf/core/ui/console.py --------------------------------------------------------------------------------