├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── Makefile ├── README.md ├── headers ├── hook.h ├── memory_helper.h └── pch.h ├── install.sh ├── prepare_env.bat └── src ├── dllmain.cpp ├── hook_injector.cpp └── memory_helper.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/README.md -------------------------------------------------------------------------------- /headers/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/headers/hook.h -------------------------------------------------------------------------------- /headers/memory_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/headers/memory_helper.h -------------------------------------------------------------------------------- /headers/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/headers/pch.h -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/install.sh -------------------------------------------------------------------------------- /prepare_env.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/prepare_env.bat -------------------------------------------------------------------------------- /src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/src/dllmain.cpp -------------------------------------------------------------------------------- /src/hook_injector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/src/hook_injector.cpp -------------------------------------------------------------------------------- /src/memory_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/h311d1n3r/LetsHook/HEAD/src/memory_helper.cpp --------------------------------------------------------------------------------