├── Mid-FunctionHooking ├── README.md ├── example1.cpp └── example2.cpp ├── README.md └── dbghelpDll_hijack ├── README.md ├── dbghelp.cpp ├── dbghelp.def ├── dbghelp.h └── dllmain.cpp /Mid-FunctionHooking/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secware-debug/re_utilities_src/HEAD/Mid-FunctionHooking/README.md -------------------------------------------------------------------------------- /Mid-FunctionHooking/example1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secware-debug/re_utilities_src/HEAD/Mid-FunctionHooking/example1.cpp -------------------------------------------------------------------------------- /Mid-FunctionHooking/example2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secware-debug/re_utilities_src/HEAD/Mid-FunctionHooking/example2.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Reverse Engineering utilities' sample codes 2 | 3 | ## -dbghelp.dll proxy 4 | -------------------------------------------------------------------------------- /dbghelpDll_hijack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secware-debug/re_utilities_src/HEAD/dbghelpDll_hijack/README.md -------------------------------------------------------------------------------- /dbghelpDll_hijack/dbghelp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secware-debug/re_utilities_src/HEAD/dbghelpDll_hijack/dbghelp.cpp -------------------------------------------------------------------------------- /dbghelpDll_hijack/dbghelp.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secware-debug/re_utilities_src/HEAD/dbghelpDll_hijack/dbghelp.def -------------------------------------------------------------------------------- /dbghelpDll_hijack/dbghelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secware-debug/re_utilities_src/HEAD/dbghelpDll_hijack/dbghelp.h -------------------------------------------------------------------------------- /dbghelpDll_hijack/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/secware-debug/re_utilities_src/HEAD/dbghelpDll_hijack/dllmain.cpp --------------------------------------------------------------------------------