├── .gitignore ├── LICENSE ├── README.md ├── apihash_to_yara.py ├── data ├── custom_apis.txt └── top100_winapi_malpedia.txt ├── generate_api_list.py ├── hash_functions.py ├── requirements.txt └── yara ├── custom_apis.yar.gz └── top100_apis_malpedia.yar /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarabosch/apihash_to_yara/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarabosch/apihash_to_yara/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarabosch/apihash_to_yara/HEAD/README.md -------------------------------------------------------------------------------- /apihash_to_yara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarabosch/apihash_to_yara/HEAD/apihash_to_yara.py -------------------------------------------------------------------------------- /data/custom_apis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarabosch/apihash_to_yara/HEAD/data/custom_apis.txt -------------------------------------------------------------------------------- /data/top100_winapi_malpedia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarabosch/apihash_to_yara/HEAD/data/top100_winapi_malpedia.txt -------------------------------------------------------------------------------- /generate_api_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarabosch/apihash_to_yara/HEAD/generate_api_list.py -------------------------------------------------------------------------------- /hash_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarabosch/apihash_to_yara/HEAD/hash_functions.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | crccheck 2 | pefile 3 | -------------------------------------------------------------------------------- /yara/custom_apis.yar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarabosch/apihash_to_yara/HEAD/yara/custom_apis.yar.gz -------------------------------------------------------------------------------- /yara/top100_apis_malpedia.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tbarabosch/apihash_to_yara/HEAD/yara/top100_apis_malpedia.yar --------------------------------------------------------------------------------