├── .gitignore ├── CallDump.sln ├── CallDump.vcxproj ├── CallDump.vcxproj.filters ├── Detour.cpp ├── Detour.hpp ├── Disassembler.cpp ├── Disassembler.hpp ├── LICENSE ├── README.md ├── beaengine ├── include │ └── beaengine │ │ ├── BeaEngine.h │ │ ├── basic_types.h │ │ ├── export.h │ │ └── macros.h └── src │ ├── BeaEngine.c │ ├── COPYING.LESSER.txt │ ├── COPYING.txt │ └── Includes │ ├── BeaEngineVersion.c │ ├── Routines_Disasm.c │ ├── Routines_ModRM.c │ ├── instr_set │ ├── Data_opcode.h │ ├── opcodes_AES.c │ ├── opcodes_A_M.c │ ├── opcodes_CLMUL.c │ ├── opcodes_FPU.c │ ├── opcodes_Grp1.c │ ├── opcodes_Grp12.c │ ├── opcodes_Grp13.c │ ├── opcodes_Grp14.c │ ├── opcodes_Grp15.c │ ├── opcodes_Grp16.c │ ├── opcodes_Grp17.c │ ├── opcodes_Grp2.c │ ├── opcodes_Grp3.c │ ├── opcodes_Grp4.c │ ├── opcodes_Grp5.c │ ├── opcodes_Grp6.c │ ├── opcodes_Grp7.c │ ├── opcodes_Grp8.c │ ├── opcodes_Grp9.c │ ├── opcodes_MMX.c │ ├── opcodes_N_Z.c │ ├── opcodes_SSE.c │ └── opcodes_prefixes.c │ ├── internal_datas.h │ └── protos.h ├── main.cpp └── retn_dump.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/.gitignore -------------------------------------------------------------------------------- /CallDump.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/CallDump.sln -------------------------------------------------------------------------------- /CallDump.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/CallDump.vcxproj -------------------------------------------------------------------------------- /CallDump.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/CallDump.vcxproj.filters -------------------------------------------------------------------------------- /Detour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/Detour.cpp -------------------------------------------------------------------------------- /Detour.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/Detour.hpp -------------------------------------------------------------------------------- /Disassembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/Disassembler.cpp -------------------------------------------------------------------------------- /Disassembler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/Disassembler.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/README.md -------------------------------------------------------------------------------- /beaengine/include/beaengine/BeaEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/include/beaengine/BeaEngine.h -------------------------------------------------------------------------------- /beaengine/include/beaengine/basic_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/include/beaengine/basic_types.h -------------------------------------------------------------------------------- /beaengine/include/beaengine/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/include/beaengine/export.h -------------------------------------------------------------------------------- /beaengine/include/beaengine/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/include/beaengine/macros.h -------------------------------------------------------------------------------- /beaengine/src/BeaEngine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/BeaEngine.c -------------------------------------------------------------------------------- /beaengine/src/COPYING.LESSER.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/COPYING.LESSER.txt -------------------------------------------------------------------------------- /beaengine/src/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/COPYING.txt -------------------------------------------------------------------------------- /beaengine/src/Includes/BeaEngineVersion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/BeaEngineVersion.c -------------------------------------------------------------------------------- /beaengine/src/Includes/Routines_Disasm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/Routines_Disasm.c -------------------------------------------------------------------------------- /beaengine/src/Includes/Routines_ModRM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/Routines_ModRM.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/Data_opcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/Data_opcode.h -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_AES.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_AES.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_A_M.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_A_M.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_CLMUL.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_CLMUL.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_FPU.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_FPU.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp1.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp12.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp13.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp13.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp14.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp14.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp15.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp16.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp17.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp2.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp3.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp4.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp5.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp6.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp7.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp8.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_Grp9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_Grp9.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_MMX.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_MMX.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_N_Z.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_N_Z.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_SSE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_SSE.c -------------------------------------------------------------------------------- /beaengine/src/Includes/instr_set/opcodes_prefixes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/instr_set/opcodes_prefixes.c -------------------------------------------------------------------------------- /beaengine/src/Includes/internal_datas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/internal_datas.h -------------------------------------------------------------------------------- /beaengine/src/Includes/protos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/beaengine/src/Includes/protos.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/main.cpp -------------------------------------------------------------------------------- /retn_dump.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KN4CK3R/CallDump/HEAD/retn_dump.txt --------------------------------------------------------------------------------