├── .appveyor.yml ├── .gitmodules ├── CMakeLists.txt ├── README.md ├── demo.bin ├── docs └── img │ ├── demo.png │ └── module_overload.png └── module_overloader ├── CMakeLists.txt ├── LICENSE ├── main.cpp ├── map_dll_image.cpp ├── map_dll_image.h ├── ntddk.h ├── util.cpp └── util.h /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/README.md -------------------------------------------------------------------------------- /demo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/demo.bin -------------------------------------------------------------------------------- /docs/img/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/docs/img/demo.png -------------------------------------------------------------------------------- /docs/img/module_overload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/docs/img/module_overload.png -------------------------------------------------------------------------------- /module_overloader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/module_overloader/CMakeLists.txt -------------------------------------------------------------------------------- /module_overloader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/module_overloader/LICENSE -------------------------------------------------------------------------------- /module_overloader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/module_overloader/main.cpp -------------------------------------------------------------------------------- /module_overloader/map_dll_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/module_overloader/map_dll_image.cpp -------------------------------------------------------------------------------- /module_overloader/map_dll_image.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | 5 | PVOID map_dll_image(const char* dll_name); 6 | -------------------------------------------------------------------------------- /module_overloader/ntddk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/module_overloader/ntddk.h -------------------------------------------------------------------------------- /module_overloader/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/module_overloader/util.cpp -------------------------------------------------------------------------------- /module_overloader/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hasherezade/module_overloading/HEAD/module_overloader/util.h --------------------------------------------------------------------------------