├── .gitignore ├── LICENSE ├── README.md ├── ept_check.sln ├── ept_check.vcxproj ├── ept_hook_checks.h ├── main.cpp ├── thread_check.cpp ├── timing_check.cpp └── write_check.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/ept-hook-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/ept-hook-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/ept-hook-detection/HEAD/README.md -------------------------------------------------------------------------------- /ept_check.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/ept-hook-detection/HEAD/ept_check.sln -------------------------------------------------------------------------------- /ept_check.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/ept-hook-detection/HEAD/ept_check.vcxproj -------------------------------------------------------------------------------- /ept_hook_checks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/ept-hook-detection/HEAD/ept_hook_checks.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/ept-hook-detection/HEAD/main.cpp -------------------------------------------------------------------------------- /thread_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/ept-hook-detection/HEAD/thread_check.cpp -------------------------------------------------------------------------------- /timing_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/ept-hook-detection/HEAD/timing_check.cpp -------------------------------------------------------------------------------- /write_check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/momo5502/ept-hook-detection/HEAD/write_check.cpp --------------------------------------------------------------------------------