├── .gitignore ├── LICENSE ├── README.md ├── blindspot_coverage ├── __init__.py └── covering_number.py ├── datasets ├── __init__.py └── datasets.py ├── framework.py ├── generate_vectors.py ├── helper_files ├── imported_function_to_index_mapping_dict.p ├── lief_parseable_cnet_programs.p ├── linux_environment.yml └── osx_environment.yml ├── inner_maximizers ├── __init__.py └── inner_maximizers.py ├── nets ├── __init__.py └── ff_classifier.py ├── parameters.ini ├── requirements.txt ├── run_experiments.py └── utils ├── __init__.py ├── script_functions.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/README.md -------------------------------------------------------------------------------- /blindspot_coverage/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /blindspot_coverage/covering_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/blindspot_coverage/covering_number.py -------------------------------------------------------------------------------- /datasets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datasets/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/datasets/datasets.py -------------------------------------------------------------------------------- /framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/framework.py -------------------------------------------------------------------------------- /generate_vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/generate_vectors.py -------------------------------------------------------------------------------- /helper_files/imported_function_to_index_mapping_dict.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/helper_files/imported_function_to_index_mapping_dict.p -------------------------------------------------------------------------------- /helper_files/lief_parseable_cnet_programs.p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/helper_files/lief_parseable_cnet_programs.p -------------------------------------------------------------------------------- /helper_files/linux_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/helper_files/linux_environment.yml -------------------------------------------------------------------------------- /helper_files/osx_environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/helper_files/osx_environment.yml -------------------------------------------------------------------------------- /inner_maximizers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /inner_maximizers/inner_maximizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/inner_maximizers/inner_maximizers.py -------------------------------------------------------------------------------- /nets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nets/ff_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/nets/ff_classifier.py -------------------------------------------------------------------------------- /parameters.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/parameters.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_experiments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/run_experiments.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/script_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/utils/script_functions.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ALFA-group/robust-adv-malware-detection/HEAD/utils/utils.py --------------------------------------------------------------------------------