├── LICENSE ├── README.md └── clean_basic_block ├── dll └── capstone.dll ├── include ├── capstone │ ├── capstone.h │ ├── platform.h │ └── x86.h ├── data_processing.h ├── file_processing.h ├── insn_processing.h └── option_processing.h ├── lib └── capstone_dll.lib └── src ├── data_processing.cpp ├── file_processing.cpp ├── insn_processing.cpp ├── main.cpp └── option_processing.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/README.md -------------------------------------------------------------------------------- /clean_basic_block/dll/capstone.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/dll/capstone.dll -------------------------------------------------------------------------------- /clean_basic_block/include/capstone/capstone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/include/capstone/capstone.h -------------------------------------------------------------------------------- /clean_basic_block/include/capstone/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/include/capstone/platform.h -------------------------------------------------------------------------------- /clean_basic_block/include/capstone/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/include/capstone/x86.h -------------------------------------------------------------------------------- /clean_basic_block/include/data_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/include/data_processing.h -------------------------------------------------------------------------------- /clean_basic_block/include/file_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/include/file_processing.h -------------------------------------------------------------------------------- /clean_basic_block/include/insn_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/include/insn_processing.h -------------------------------------------------------------------------------- /clean_basic_block/include/option_processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/include/option_processing.h -------------------------------------------------------------------------------- /clean_basic_block/lib/capstone_dll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/lib/capstone_dll.lib -------------------------------------------------------------------------------- /clean_basic_block/src/data_processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/src/data_processing.cpp -------------------------------------------------------------------------------- /clean_basic_block/src/file_processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/src/file_processing.cpp -------------------------------------------------------------------------------- /clean_basic_block/src/insn_processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/src/insn_processing.cpp -------------------------------------------------------------------------------- /clean_basic_block/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/src/main.cpp -------------------------------------------------------------------------------- /clean_basic_block/src/option_processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0mxxm/Anti-Obfuscation/HEAD/clean_basic_block/src/option_processing.cpp --------------------------------------------------------------------------------