├── .gitignore ├── LICENSE ├── NOTICE ├── dynmx.py ├── dynmx ├── __init__.py ├── config │ ├── aam_cuckoo.yaml │ └── aam_vmray.yaml ├── converters │ ├── __init__.py │ ├── dynmx_converter.py │ └── dynmx_harmonizer.py ├── core │ ├── __init__.py │ ├── api_call.py │ ├── file_resource.py │ ├── function_log.py │ ├── network_resource.py │ ├── pointer.py │ ├── process.py │ ├── registry_resource.py │ ├── resource.py │ └── statistics.py ├── detection │ ├── __init__.py │ ├── access_activity_model.py │ ├── detection_result.py │ ├── detection_step.py │ ├── graph.py │ └── signature.py ├── flog_parsers │ ├── __init__.py │ ├── cape_flog_parser.py │ ├── cuckoo_flog_parser.py │ ├── dynmx_flog_parser.py │ ├── parser.py │ ├── parser_library.py │ ├── vmray_flog_parser.py │ └── vmray_xml_flog_parser.py └── helpers │ ├── __init__.py │ ├── argument_helper.py │ ├── flog_parser_helper.py │ ├── logging_globals.py │ ├── logging_helper.py │ ├── multiprocessing_helper.py │ ├── output_helper.py │ ├── regex_helper.py │ └── resource_helper.py ├── readme.md └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/NOTICE -------------------------------------------------------------------------------- /dynmx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx.py -------------------------------------------------------------------------------- /dynmx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/__init__.py -------------------------------------------------------------------------------- /dynmx/config/aam_cuckoo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/config/aam_cuckoo.yaml -------------------------------------------------------------------------------- /dynmx/config/aam_vmray.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/config/aam_vmray.yaml -------------------------------------------------------------------------------- /dynmx/converters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/converters/__init__.py -------------------------------------------------------------------------------- /dynmx/converters/dynmx_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/converters/dynmx_converter.py -------------------------------------------------------------------------------- /dynmx/converters/dynmx_harmonizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/converters/dynmx_harmonizer.py -------------------------------------------------------------------------------- /dynmx/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/core/__init__.py -------------------------------------------------------------------------------- /dynmx/core/api_call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/core/api_call.py -------------------------------------------------------------------------------- /dynmx/core/file_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/core/file_resource.py -------------------------------------------------------------------------------- /dynmx/core/function_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/core/function_log.py -------------------------------------------------------------------------------- /dynmx/core/network_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/core/network_resource.py -------------------------------------------------------------------------------- /dynmx/core/pointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/core/pointer.py -------------------------------------------------------------------------------- /dynmx/core/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/core/process.py -------------------------------------------------------------------------------- /dynmx/core/registry_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/core/registry_resource.py -------------------------------------------------------------------------------- /dynmx/core/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/core/resource.py -------------------------------------------------------------------------------- /dynmx/core/statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/core/statistics.py -------------------------------------------------------------------------------- /dynmx/detection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/detection/__init__.py -------------------------------------------------------------------------------- /dynmx/detection/access_activity_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/detection/access_activity_model.py -------------------------------------------------------------------------------- /dynmx/detection/detection_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/detection/detection_result.py -------------------------------------------------------------------------------- /dynmx/detection/detection_step.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/detection/detection_step.py -------------------------------------------------------------------------------- /dynmx/detection/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/detection/graph.py -------------------------------------------------------------------------------- /dynmx/detection/signature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/detection/signature.py -------------------------------------------------------------------------------- /dynmx/flog_parsers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/flog_parsers/__init__.py -------------------------------------------------------------------------------- /dynmx/flog_parsers/cape_flog_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/flog_parsers/cape_flog_parser.py -------------------------------------------------------------------------------- /dynmx/flog_parsers/cuckoo_flog_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/flog_parsers/cuckoo_flog_parser.py -------------------------------------------------------------------------------- /dynmx/flog_parsers/dynmx_flog_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/flog_parsers/dynmx_flog_parser.py -------------------------------------------------------------------------------- /dynmx/flog_parsers/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/flog_parsers/parser.py -------------------------------------------------------------------------------- /dynmx/flog_parsers/parser_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/flog_parsers/parser_library.py -------------------------------------------------------------------------------- /dynmx/flog_parsers/vmray_flog_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/flog_parsers/vmray_flog_parser.py -------------------------------------------------------------------------------- /dynmx/flog_parsers/vmray_xml_flog_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/flog_parsers/vmray_xml_flog_parser.py -------------------------------------------------------------------------------- /dynmx/helpers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/helpers/__init__.py -------------------------------------------------------------------------------- /dynmx/helpers/argument_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/helpers/argument_helper.py -------------------------------------------------------------------------------- /dynmx/helpers/flog_parser_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/helpers/flog_parser_helper.py -------------------------------------------------------------------------------- /dynmx/helpers/logging_globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/helpers/logging_globals.py -------------------------------------------------------------------------------- /dynmx/helpers/logging_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/helpers/logging_helper.py -------------------------------------------------------------------------------- /dynmx/helpers/multiprocessing_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/helpers/multiprocessing_helper.py -------------------------------------------------------------------------------- /dynmx/helpers/output_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/helpers/output_helper.py -------------------------------------------------------------------------------- /dynmx/helpers/regex_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/helpers/regex_helper.py -------------------------------------------------------------------------------- /dynmx/helpers/resource_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/dynmx/helpers/resource_helper.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0x534a/dynmx/HEAD/requirements.txt --------------------------------------------------------------------------------