├── LICENSE ├── Libs ├── libMinHook.x64.lib └── libMinHook.x86.lib ├── MalMemDetect.sln ├── MalMemDetect ├── BaseDefs.h ├── Hollow.h ├── MalMemDetect.filters ├── MalMemDetect.user ├── MalMemDetect.vcxproj ├── MalMemDetect.vcxproj.user ├── Refresh.h └── Source.cpp ├── README.md └── include ├── MinHook.h ├── function_result.hpp ├── native.hpp ├── syscall.cpp ├── syscall.hpp ├── utils.cpp └── utils.hpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/LICENSE -------------------------------------------------------------------------------- /Libs/libMinHook.x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/Libs/libMinHook.x64.lib -------------------------------------------------------------------------------- /Libs/libMinHook.x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/Libs/libMinHook.x86.lib -------------------------------------------------------------------------------- /MalMemDetect.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/MalMemDetect.sln -------------------------------------------------------------------------------- /MalMemDetect/BaseDefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/MalMemDetect/BaseDefs.h -------------------------------------------------------------------------------- /MalMemDetect/Hollow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/MalMemDetect/Hollow.h -------------------------------------------------------------------------------- /MalMemDetect/MalMemDetect.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/MalMemDetect/MalMemDetect.filters -------------------------------------------------------------------------------- /MalMemDetect/MalMemDetect.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/MalMemDetect/MalMemDetect.user -------------------------------------------------------------------------------- /MalMemDetect/MalMemDetect.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/MalMemDetect/MalMemDetect.vcxproj -------------------------------------------------------------------------------- /MalMemDetect/MalMemDetect.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/MalMemDetect/MalMemDetect.vcxproj.user -------------------------------------------------------------------------------- /MalMemDetect/Refresh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/MalMemDetect/Refresh.h -------------------------------------------------------------------------------- /MalMemDetect/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/MalMemDetect/Source.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/README.md -------------------------------------------------------------------------------- /include/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/include/MinHook.h -------------------------------------------------------------------------------- /include/function_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/include/function_result.hpp -------------------------------------------------------------------------------- /include/native.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/include/native.hpp -------------------------------------------------------------------------------- /include/syscall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/include/syscall.cpp -------------------------------------------------------------------------------- /include/syscall.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/include/syscall.hpp -------------------------------------------------------------------------------- /include/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/include/utils.cpp -------------------------------------------------------------------------------- /include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/waldo-irc/MalMemDetect/HEAD/include/utils.hpp --------------------------------------------------------------------------------