├── .gitattributes ├── .gitignore ├── KernelHack.sln ├── KernelHack ├── CallStack-Spoofer.h ├── Callbacks.cpp ├── Callbacks.h ├── Comm.cpp ├── Comm.hpp ├── Debug │ ├── KernelHack.Build.CppClean.log │ ├── KernelHack.log │ └── KernelHack.tlog │ │ ├── KernelHack.lastbuildstate │ │ └── unsuccessfulbuild ├── I8042Interface.cpp ├── I8042Interface.h ├── Imports.h ├── Includes.h ├── KernelHack.inf ├── KernelHack.vcxproj ├── KernelHack.vcxproj.filters ├── KernelHack.vcxproj.user ├── Mapper.cpp ├── Mapper.hpp ├── Memory.cpp ├── Memory.hpp ├── NativeEnums.h ├── NativeStructs.h ├── NativeStructs10.h ├── NativeStructs7.h ├── NativeStructs8.h ├── NativeStructs81.h ├── Offsets.cpp ├── Offsets.hpp ├── Process.cpp ├── Process.hpp ├── Utils.cpp ├── Utils.hpp ├── entry.cpp ├── hde │ ├── hde.h │ ├── hde32.c │ ├── hde32.h │ ├── hde64.c │ ├── hde64.h │ ├── kstdint.h │ ├── table32.h │ └── table64.h ├── skCrypter.h └── x64 │ ├── Debug │ ├── Callbacks.obj │ ├── Comm.obj │ ├── I8042Interface.obj │ ├── KernelHack.Build.CppClean.log │ ├── KernelHack.log │ ├── KernelHack.sys.recipe │ ├── KernelHack.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── KernelHack.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── Mapper.obj │ ├── Memory.obj │ ├── Offsets.obj │ ├── Process.obj │ ├── Utils.obj │ ├── entry.obj │ ├── hde32.obj │ ├── hde64.obj │ ├── vc143.pdb │ └── vcpkg.applocal.log │ └── Release │ ├── KernelHack.Build.CppClean.log │ ├── KernelHack.log │ ├── KernelHack.sys.recipe │ ├── KernelHack.tlog │ └── KernelHack.lastbuildstate │ └── vcpkg.applocal.log ├── LICENSE.txt ├── README.md ├── Usermode ├── Debug │ ├── Usermode.Build.CppClean.log │ ├── Usermode.exe.recipe │ ├── Usermode.log │ ├── Usermode.tlog │ │ └── Usermode.lastbuildstate │ ├── Usermode.vcxproj.FileListAbsolute.txt │ └── vcpkg.applocal.log ├── UmComm.cpp ├── UmComm.h ├── Usermode.vcxproj ├── Usermode.vcxproj.filters ├── Usermode.vcxproj.user ├── Utils.h ├── main.cpp ├── ntdll.h └── x64 │ ├── Debug │ ├── CodeAnalysisResultManifest.txt │ ├── Usermode.Build.CppClean.log │ ├── Usermode.exe.recipe │ ├── Usermode.log │ ├── Usermode.tlog │ │ └── Usermode.lastbuildstate │ ├── Usermode.vcxproj.FileListAbsolute.txt │ └── vcpkg.applocal.log │ └── Release │ ├── Usermode.Build.CppClean.log │ ├── Usermode.exe.recipe │ ├── Usermode.log │ ├── Usermode.tlog │ └── Usermode.lastbuildstate │ └── Usermode.vcxproj.FileListAbsolute.txt ├── install.bat └── x64 ├── Debug ├── KernelHack.pdb ├── KernelHack.sys ├── KernelHack │ └── KernelHack.sys ├── Msgbox.dll ├── Usermode.exe └── getmemory.exe └── Release ├── KernelHack.sys ├── KernelHack └── KernelHack.sys └── Usermode.exe /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/.gitignore -------------------------------------------------------------------------------- /KernelHack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack.sln -------------------------------------------------------------------------------- /KernelHack/CallStack-Spoofer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/CallStack-Spoofer.h -------------------------------------------------------------------------------- /KernelHack/Callbacks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Callbacks.cpp -------------------------------------------------------------------------------- /KernelHack/Callbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Callbacks.h -------------------------------------------------------------------------------- /KernelHack/Comm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Comm.cpp -------------------------------------------------------------------------------- /KernelHack/Comm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Comm.hpp -------------------------------------------------------------------------------- /KernelHack/Debug/KernelHack.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Debug/KernelHack.Build.CppClean.log -------------------------------------------------------------------------------- /KernelHack/Debug/KernelHack.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Debug/KernelHack.log -------------------------------------------------------------------------------- /KernelHack/Debug/KernelHack.tlog/KernelHack.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Debug/KernelHack.tlog/KernelHack.lastbuildstate -------------------------------------------------------------------------------- /KernelHack/Debug/KernelHack.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KernelHack/I8042Interface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/I8042Interface.cpp -------------------------------------------------------------------------------- /KernelHack/I8042Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/I8042Interface.h -------------------------------------------------------------------------------- /KernelHack/Imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Imports.h -------------------------------------------------------------------------------- /KernelHack/Includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Includes.h -------------------------------------------------------------------------------- /KernelHack/KernelHack.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/KernelHack.inf -------------------------------------------------------------------------------- /KernelHack/KernelHack.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/KernelHack.vcxproj -------------------------------------------------------------------------------- /KernelHack/KernelHack.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/KernelHack.vcxproj.filters -------------------------------------------------------------------------------- /KernelHack/KernelHack.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/KernelHack.vcxproj.user -------------------------------------------------------------------------------- /KernelHack/Mapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Mapper.cpp -------------------------------------------------------------------------------- /KernelHack/Mapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Mapper.hpp -------------------------------------------------------------------------------- /KernelHack/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Memory.cpp -------------------------------------------------------------------------------- /KernelHack/Memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Memory.hpp -------------------------------------------------------------------------------- /KernelHack/NativeEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/NativeEnums.h -------------------------------------------------------------------------------- /KernelHack/NativeStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/NativeStructs.h -------------------------------------------------------------------------------- /KernelHack/NativeStructs10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/NativeStructs10.h -------------------------------------------------------------------------------- /KernelHack/NativeStructs7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/NativeStructs7.h -------------------------------------------------------------------------------- /KernelHack/NativeStructs8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/NativeStructs8.h -------------------------------------------------------------------------------- /KernelHack/NativeStructs81.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/NativeStructs81.h -------------------------------------------------------------------------------- /KernelHack/Offsets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Offsets.cpp -------------------------------------------------------------------------------- /KernelHack/Offsets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Offsets.hpp -------------------------------------------------------------------------------- /KernelHack/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Process.cpp -------------------------------------------------------------------------------- /KernelHack/Process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Process.hpp -------------------------------------------------------------------------------- /KernelHack/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Utils.cpp -------------------------------------------------------------------------------- /KernelHack/Utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/Utils.hpp -------------------------------------------------------------------------------- /KernelHack/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/entry.cpp -------------------------------------------------------------------------------- /KernelHack/hde/hde.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/hde/hde.h -------------------------------------------------------------------------------- /KernelHack/hde/hde32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/hde/hde32.c -------------------------------------------------------------------------------- /KernelHack/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/hde/hde32.h -------------------------------------------------------------------------------- /KernelHack/hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/hde/hde64.c -------------------------------------------------------------------------------- /KernelHack/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/hde/hde64.h -------------------------------------------------------------------------------- /KernelHack/hde/kstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/hde/kstdint.h -------------------------------------------------------------------------------- /KernelHack/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/hde/table32.h -------------------------------------------------------------------------------- /KernelHack/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/hde/table64.h -------------------------------------------------------------------------------- /KernelHack/skCrypter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/skCrypter.h -------------------------------------------------------------------------------- /KernelHack/x64/Debug/Callbacks.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/Callbacks.obj -------------------------------------------------------------------------------- /KernelHack/x64/Debug/Comm.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/Comm.obj -------------------------------------------------------------------------------- /KernelHack/x64/Debug/I8042Interface.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/I8042Interface.obj -------------------------------------------------------------------------------- /KernelHack/x64/Debug/KernelHack.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/KernelHack.Build.CppClean.log -------------------------------------------------------------------------------- /KernelHack/x64/Debug/KernelHack.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/KernelHack.log -------------------------------------------------------------------------------- /KernelHack/x64/Debug/KernelHack.sys.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/KernelHack.sys.recipe -------------------------------------------------------------------------------- /KernelHack/x64/Debug/KernelHack.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/KernelHack.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /KernelHack/x64/Debug/KernelHack.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/KernelHack.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /KernelHack/x64/Debug/KernelHack.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/KernelHack.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /KernelHack/x64/Debug/KernelHack.tlog/KernelHack.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/KernelHack.tlog/KernelHack.lastbuildstate -------------------------------------------------------------------------------- /KernelHack/x64/Debug/KernelHack.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/KernelHack.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /KernelHack/x64/Debug/KernelHack.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/KernelHack.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /KernelHack/x64/Debug/KernelHack.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/KernelHack.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /KernelHack/x64/Debug/Mapper.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/Mapper.obj -------------------------------------------------------------------------------- /KernelHack/x64/Debug/Memory.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/Memory.obj -------------------------------------------------------------------------------- /KernelHack/x64/Debug/Offsets.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/Offsets.obj -------------------------------------------------------------------------------- /KernelHack/x64/Debug/Process.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/Process.obj -------------------------------------------------------------------------------- /KernelHack/x64/Debug/Utils.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/Utils.obj -------------------------------------------------------------------------------- /KernelHack/x64/Debug/entry.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/entry.obj -------------------------------------------------------------------------------- /KernelHack/x64/Debug/hde32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/hde32.obj -------------------------------------------------------------------------------- /KernelHack/x64/Debug/hde64.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/hde64.obj -------------------------------------------------------------------------------- /KernelHack/x64/Debug/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Debug/vc143.pdb -------------------------------------------------------------------------------- /KernelHack/x64/Debug/vcpkg.applocal.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /KernelHack/x64/Release/KernelHack.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Release/KernelHack.Build.CppClean.log -------------------------------------------------------------------------------- /KernelHack/x64/Release/KernelHack.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Release/KernelHack.log -------------------------------------------------------------------------------- /KernelHack/x64/Release/KernelHack.sys.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Release/KernelHack.sys.recipe -------------------------------------------------------------------------------- /KernelHack/x64/Release/KernelHack.tlog/KernelHack.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/KernelHack/x64/Release/KernelHack.tlog/KernelHack.lastbuildstate -------------------------------------------------------------------------------- /KernelHack/x64/Release/vcpkg.applocal.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/README.md -------------------------------------------------------------------------------- /Usermode/Debug/Usermode.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/Debug/Usermode.Build.CppClean.log -------------------------------------------------------------------------------- /Usermode/Debug/Usermode.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/Debug/Usermode.exe.recipe -------------------------------------------------------------------------------- /Usermode/Debug/Usermode.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/Debug/Usermode.log -------------------------------------------------------------------------------- /Usermode/Debug/Usermode.tlog/Usermode.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/Debug/Usermode.tlog/Usermode.lastbuildstate -------------------------------------------------------------------------------- /Usermode/Debug/Usermode.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/Debug/vcpkg.applocal.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Usermode/UmComm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/UmComm.cpp -------------------------------------------------------------------------------- /Usermode/UmComm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/UmComm.h -------------------------------------------------------------------------------- /Usermode/Usermode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/Usermode.vcxproj -------------------------------------------------------------------------------- /Usermode/Usermode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/Usermode.vcxproj.filters -------------------------------------------------------------------------------- /Usermode/Usermode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/Usermode.vcxproj.user -------------------------------------------------------------------------------- /Usermode/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/Utils.h -------------------------------------------------------------------------------- /Usermode/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/main.cpp -------------------------------------------------------------------------------- /Usermode/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/ntdll.h -------------------------------------------------------------------------------- /Usermode/x64/Debug/CodeAnalysisResultManifest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/x64/Debug/CodeAnalysisResultManifest.txt -------------------------------------------------------------------------------- /Usermode/x64/Debug/Usermode.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/x64/Debug/Usermode.Build.CppClean.log -------------------------------------------------------------------------------- /Usermode/x64/Debug/Usermode.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/x64/Debug/Usermode.exe.recipe -------------------------------------------------------------------------------- /Usermode/x64/Debug/Usermode.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/x64/Debug/Usermode.log -------------------------------------------------------------------------------- /Usermode/x64/Debug/Usermode.tlog/Usermode.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/x64/Debug/Usermode.tlog/Usermode.lastbuildstate -------------------------------------------------------------------------------- /Usermode/x64/Debug/Usermode.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Usermode/x64/Debug/vcpkg.applocal.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Usermode/x64/Release/Usermode.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/x64/Release/Usermode.Build.CppClean.log -------------------------------------------------------------------------------- /Usermode/x64/Release/Usermode.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/x64/Release/Usermode.exe.recipe -------------------------------------------------------------------------------- /Usermode/x64/Release/Usermode.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/x64/Release/Usermode.log -------------------------------------------------------------------------------- /Usermode/x64/Release/Usermode.tlog/Usermode.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/Usermode/x64/Release/Usermode.tlog/Usermode.lastbuildstate -------------------------------------------------------------------------------- /Usermode/x64/Release/Usermode.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/install.bat -------------------------------------------------------------------------------- /x64/Debug/KernelHack.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/x64/Debug/KernelHack.pdb -------------------------------------------------------------------------------- /x64/Debug/KernelHack.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/x64/Debug/KernelHack.sys -------------------------------------------------------------------------------- /x64/Debug/KernelHack/KernelHack.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/x64/Debug/KernelHack/KernelHack.sys -------------------------------------------------------------------------------- /x64/Debug/Msgbox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/x64/Debug/Msgbox.dll -------------------------------------------------------------------------------- /x64/Debug/Usermode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/x64/Debug/Usermode.exe -------------------------------------------------------------------------------- /x64/Debug/getmemory.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/x64/Debug/getmemory.exe -------------------------------------------------------------------------------- /x64/Release/KernelHack.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/x64/Release/KernelHack.sys -------------------------------------------------------------------------------- /x64/Release/KernelHack/KernelHack.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/x64/Release/KernelHack/KernelHack.sys -------------------------------------------------------------------------------- /x64/Release/Usermode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rogxo/KernelHack/HEAD/x64/Release/Usermode.exe --------------------------------------------------------------------------------