├── ReadMe.md ├── [1-1]SetupTestEnv └── 软件下载地址.txt ├── [1-2]KrnlHW64 ├── calc_ctl_code │ ├── calc_ctl_code.sln │ ├── calc_ctl_code.suo │ ├── calc_ctl_code.vcxproj │ ├── calc_ctl_code.vcxproj.filters │ ├── calc_ctl_code.vcxproj.user │ ├── main.cpp │ └── x64 │ │ └── Release │ │ └── calc_ctl_code.exe └── sys │ ├── MyDriver.c │ ├── buildfre_win7_amd64.log │ ├── makefile │ ├── objfre_win7_amd64 │ └── amd64 │ │ ├── KmdManager.exe │ │ ├── KrnlHW64.sys │ │ └── calc_ctl_code.exe │ ├── sources │ ├── test.c │ └── 含有多个C文件时用的source ├── [2-1]AboutKPP&DSE ├── 禁用DSE.txt └── 禁用KPP.txt ├── [2-2]ScmDrvLoader ├── ScmDrvCtrl.h ├── ScmDrvLoader.sln ├── ScmDrvLoader.suo ├── ScmDrvLoader.vcxproj ├── ScmDrvLoader.vcxproj.filters ├── ScmDrvLoader.vcxproj.user ├── main.cpp └── x64 │ └── Release │ ├── KrnlHW64.sys │ └── ScmDrvLoader.exe ├── [2-3]MemoryOperationTest ├── buildfre_win7_amd64.log ├── main.c ├── makefile ├── objfre_win7_amd64 │ └── amd64 │ │ └── SYS_FILE_NAME.sys └── sources ├── [2-4]StringOperationTest ├── buildfre_win7_amd64.log ├── main.c ├── makefile ├── objfre_win7_amd64 │ └── amd64 │ │ └── SYS_FILE_NAME.sys └── sources ├── [2-5]FileOperationTest ├── MyDriver.c ├── MyDriver.h ├── buildfre_win7_amd64.log ├── makefile ├── objfre_win7_amd64 │ └── amd64 │ │ └── MyDriver.sys └── sources ├── [2-6]RegistryOperationTest ├── buildfre_win7_amd64.log ├── main.c ├── makefile ├── objfre_win7_amd64 │ └── amd64 │ │ └── SYS_FILE_NAME.sys └── sources ├── [2-7]ProcessOperationTest ├── buildfre_win7_amd64.log ├── main.c ├── makefile ├── objfre_win7_amd64 │ └── amd64 │ │ └── SYS_FILE_NAME.sys └── sources ├── [2-8]OtherFunction ├── MyDriver.c ├── MyDriver.h ├── buildfre_win7_amd64.log ├── makefile └── sources ├── [3-1]Wow64&CompatibleMode ├── WOW64相关测试代码 │ ├── bin │ │ └── Release │ │ │ └── TestWow64.exe │ └── main.c └── 兼容模式相关测试代码 │ ├── _VB_CODE │ ├── CCM.exe │ ├── CCM.vbp │ ├── CCM.vbw │ └── Form1.frm │ ├── bin │ └── Release │ │ └── CCM.exe │ └── main.c ├── [3-2]DisableWin7KPP&DSE ├── ASM │ ├── patch.asm │ ├── patch.exe │ ├── 一键破解.cmd │ └── 编译.bat └── VC │ ├── disable_pgds.sln │ ├── disable_pgds.vcxproj │ ├── disable_pgds.vcxproj.filters │ ├── disable_pgds.vcxproj.user │ ├── main.cpp │ ├── x64 │ └── Release │ │ └── disable_pgds.exe │ └── 说明.txt ├── [3-3]CalcSSDTFuncAddr ├── MyDriver.c ├── MyDriver.h ├── buildfre_win7_amd64.log ├── makefile ├── objfre_win7_amd64 │ └── amd64 │ │ └── MyDriver.sys └── sources ├── [3-4]SSDTHookUnhook ├── hook │ ├── LoadDrv.exe │ ├── hookssdt_x64.sys │ ├── src │ │ ├── MyDriver.c │ │ ├── MyDriver.h │ │ ├── buildfre_win7_amd64.log │ │ ├── hookssdt.h │ │ ├── makefile │ │ └── sources │ └── 说明.txt └── unhook │ ├── EnumSSDT_x64_exe.exe │ ├── EnumSSDT_x64_exe │ ├── EnumSSDT_x64_exe.sln │ ├── EnumSSDT_x64_exe.suo │ └── EnumSSDT_x64_exe │ │ ├── DrvCtrl.h │ │ ├── EnumSSDT_x64_exe.vcxproj │ │ ├── EnumSSDT_x64_exe.vcxproj.filters │ │ ├── EnumSSDT_x64_exe.vcxproj.user │ │ ├── GetNtos.h │ │ └── main.cpp │ ├── EnumSSDT_x64_sys │ ├── MyDriver.c │ ├── MyDriver.h │ ├── buildfre_win7_amd64.log │ ├── buildfre_win7_amd64.wrn │ ├── makefile │ └── sources │ └── emSSDT64.sys ├── [3-5]SSSDTHookUnhook ├── hook │ ├── Fuck3SDT.sys │ ├── KillProcessByPostMessage.exe │ ├── KillProcessByPostMessage │ │ └── main.c │ ├── MyDriver.exe │ └── SSSDTHook_NtUserPostMessage │ │ ├── exe │ │ ├── MSSCCPRJ.SCC │ │ ├── MyDriver.vbp │ │ ├── MyDriver.vbw │ │ ├── cls_Driver.cls │ │ ├── frm_Main.frm │ │ └── mod_DrvFunc.bas │ │ └── sys │ │ ├── LDE64x64.h │ │ ├── MyDriver.c │ │ ├── MyDriver.h │ │ ├── buildfre_win7_amd64.log │ │ ├── hook3sdt.h │ │ ├── makefile │ │ └── sources └── unhook │ ├── EnumSSSDT64.exe │ ├── SSSDTx64.sys │ ├── exe │ ├── DrvCtrl.h │ ├── EnumDrv.h │ ├── EnumSSSDT64.sln │ ├── EnumSSSDT64.suo │ ├── EnumSSSDT64.vcxproj │ ├── EnumSSSDT64.vcxproj.filters │ ├── EnumSSSDT64.vcxproj.user │ └── main.cpp │ └── sys │ ├── MyDriver.c │ ├── MyDriver.h │ ├── buildfre_win7_amd64.log │ ├── makefile │ └── sources ├── [3-6]InlineHookUnhook ├── hook │ ├── exe │ │ ├── MSSCCPRJ.SCC │ │ ├── MyDriver.vbp │ │ ├── MyDriver.vbw │ │ ├── cls_Driver.cls │ │ ├── frm_Main.frm │ │ └── mod_DrvFunc.bas │ ├── hook_ps.exe │ ├── hook_ps.sys │ └── sys │ │ ├── HookFunc.h │ │ ├── LDE64x64.h │ │ ├── MyDriver.c │ │ ├── MyDriver.h │ │ ├── buildfre_win7_amd64.wrn │ │ ├── makefile │ │ └── sources └── unhook │ ├── ClrKIH64.sys │ ├── GetKernelOriCode.exe │ ├── exe │ ├── DrvCtrl.h │ ├── GetKernelOriCode.sln │ ├── GetKernelOriCode.suo │ ├── GetKernelOriCode.vcxproj │ ├── GetKernelOriCode.vcxproj.filters │ ├── GetKernelOriCode.vcxproj.user │ └── main.cpp │ └── sys │ ├── MyDriver.c │ ├── MyDriver.h │ ├── buildfre_win7_amd64.log │ ├── makefile │ └── sources ├── [4-1]MonitorCreateExitProcessThread ├── monitor_create_process_x64.sys ├── src │ ├── MyDriver.c │ ├── MyDriver.h │ ├── ProcessNotify.h │ ├── buildfre_win7_amd64.log │ ├── makefile │ └── sources └── 使用说明.txt ├── [4-2]MonitorLoadUnloadDllDriver ├── LoadImageNotifyX64.sys ├── src │ ├── MyDriver.c │ ├── MyDriver.h │ ├── buildfre_win7_amd64.log │ ├── makefile │ └── sources └── 测试说明.txt ├── [4-3]MonitorRegistryOperation ├── CmRegMonitor_x64.sys ├── src │ ├── MyDriver.c │ ├── MyDriver.h │ ├── buildfre_win7_amd64.log │ ├── makefile │ ├── sources │ └── testcode.h └── 说明.txt ├── [4-4]MonitorFileOperation ├── MFTest.sys ├── WdmDrvLoader.exe ├── readme.txt ├── setup.inf └── src │ ├── WdmDrvLoader │ ├── VB6StrFunc.h │ ├── WdmDrvLoader.sln │ ├── WdmDrvLoader.suo │ ├── WdmDrvLoader.vcxproj │ ├── WdmDrvLoader.vcxproj.filters │ ├── WdmDrvLoader.vcxproj.user │ └── main.cpp │ └── driver │ ├── MFTest.c │ ├── buildfre_win7_amd64.log │ ├── makefile │ └── sources ├── [4-5]MonitorProcessThreadHandle ├── MyDriver.c ├── MyDriver.h ├── ProtectProcess.h ├── buildfre_win7_amd64.log ├── makefile └── sources ├── [4-6]MonitorFileOperationByCallback ├── file_monitor_x64.sys ├── readme.txt └── src │ ├── MAKEFILE │ ├── buildfre_win7_amd64.log │ ├── main.c │ ├── obstruct.h │ └── sources ├── [4-7]MonitorInternetAccessByWFP ├── buildfre_win7_amd64.log ├── denyip.c ├── makefile ├── objfre_win7_amd64 │ └── amd64 │ │ └── WFP_TEST.sys └── sources ├── [4-8]TimeChangeCallback ├── amd64 │ └── TimeNotify.sys ├── buildfre_win7_amd64.log ├── main.c ├── makefile └── sources ├── [5-1]DrvInlineASM ├── Win64InlineASM.sys ├── src │ ├── Win7x64Drv.c │ ├── Win7x64Drv.h │ ├── dbghelp.h │ ├── makefile │ └── sources └── x64asm_to_x64bin.exe ├── [5-2]DkomHideProtect ├── MyDriver.sys └── src │ ├── MyDriver.c │ ├── MyDriver.h │ ├── buildfre_win7_amd64.log │ ├── makefile │ └── sources ├── [5-3]DriverEnumHide ├── EnumDriver.exe ├── EnumDriver │ ├── EnumDriver.sln │ ├── EnumDriver.suo │ ├── EnumDriver.vcxproj │ ├── EnumDriver.vcxproj.filters │ ├── EnumDriver.vcxproj.user │ └── main.cpp ├── HideDriver │ ├── HideKM.c │ ├── buildfre_win7_amd64.log │ ├── makefile │ └── sources └── HideKM64.sys ├── [5-4]ForceKillProcess ├── FKP64.exe ├── Win7x64Drv.sys ├── exe │ ├── MSSCCPRJ.SCC │ ├── Mod_MemClr.bas │ ├── Win7x64Drv.vbp │ ├── Win7x64Drv.vbw │ ├── cls_Driver.cls │ └── form1.frm └── sys │ ├── Win7x64Drv.c │ ├── Win7x64Drv.h │ ├── buildfre_win7_amd64.log │ ├── makefile │ └── sources ├── [5-5]ForceProcMemRW ├── KRWProcess.sys ├── 模拟游戏.exe ├── 模拟游戏 │ ├── Form1.frm │ ├── Game.vbp │ └── Game.vbw ├── 模拟盗号.exe ├── 模拟盗号 │ ├── Form1.frm │ ├── PlugIn.vbp │ └── PlugIn.vbw ├── 驱动级模拟盗号.exe ├── 驱动级模拟盗号 │ ├── exe │ │ ├── MSSCCPRJ.SCC │ │ ├── Mod_MemClr.bas │ │ ├── Win7x64Drv.vbp │ │ ├── Win7x64Drv.vbw │ │ ├── cls_Driver.cls │ │ └── form1.frm │ └── sys │ │ ├── Win7x64Drv.c │ │ ├── Win7x64Drv.h │ │ ├── buildfre_win7_amd64.log │ │ ├── makefile │ │ └── sources └── 驱动级游戏保护 │ └── 下载地址.txt ├── [5-6]EnumMsgHook ├── EnumMsgHook64.exe ├── EnumMsgHook64.sys ├── src │ ├── exe │ │ ├── DrvCtrl.h │ │ ├── exe.sln │ │ ├── exe.suo │ │ ├── exe.vcxproj │ │ ├── exe.vcxproj.filters │ │ ├── exe.vcxproj.user │ │ └── main.cpp │ └── sys │ │ ├── MyDriver.c │ │ ├── MyDriver.h │ │ ├── buildfre_win7_amd64.log │ │ ├── buildfre_win7_amd64.wrn │ │ ├── makefile │ │ ├── rwkm.h │ │ └── sources └── 测试说明.txt ├── [5-7]UnlockFile ├── LockFile.exe ├── UnlockFile.sys ├── lockfile.xxx ├── src │ ├── LockFile │ │ └── main.cpp │ └── UnlockFile │ │ ├── EnumHandle.c │ │ ├── buildfre_win7_amd64.log │ │ ├── makefile │ │ └── sources └── 测试说明.txt ├── [5-8]PE32+ ├── PE32结构图.jpg ├── PE64结构图.jpg ├── SimplePE64Viewer.exe └── SimplePE64Viewer │ ├── SimplePE64Viewer.sln │ ├── SimplePE64Viewer.suo │ ├── SimplePE64Viewer.vcxproj │ ├── SimplePE64Viewer.vcxproj.filters │ ├── SimplePE64Viewer.vcxproj.user │ └── main.cpp ├── [6-1]RemoteThreadToSystemProcess ├── SuperInsertDll.exe ├── SuperInsertDll │ ├── SuperInsertDll.sln │ ├── SuperInsertDll.suo │ ├── SuperInsertDll.vcxproj │ ├── SuperInsertDll.vcxproj.filters │ ├── SuperInsertDll.vcxproj.user │ ├── main.cpp │ ├── main.h │ └── ntdll.lib ├── TestDll.dll └── TestDll │ ├── ReadMe.txt │ ├── TestDll.cpp │ ├── TestDll.sln │ ├── TestDll.suo │ ├── TestDll.vcxproj │ ├── TestDll.vcxproj.filters │ ├── TestDll.vcxproj.user │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── [6-2]Ring3InlineHookAntiHook ├── anti-hook │ ├── AntiHook.exe │ ├── AntiHook │ │ ├── AntiHook.cpp │ │ ├── AntiHook.sln │ │ ├── AntiHook.suo │ │ ├── AntiHook.vcxproj │ │ ├── AntiHook.vcxproj.filters │ │ ├── AntiHook.vcxproj.user │ │ ├── ReadMe.txt │ │ ├── _HookTest │ │ │ ├── !!复制全部文件到C盘根目录 │ │ │ ├── AntiHook.exe │ │ │ ├── Calculator.lnk │ │ │ ├── HookDll.dll │ │ │ ├── InjectDllx64.exe │ │ │ ├── NtHookEngine.dll │ │ │ └── desktop.ini │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── Calculator.lnk │ ├── HookDll.dll │ ├── HookZwReadFile │ │ ├── HookDll.cpp │ │ ├── HookDll.sln │ │ ├── HookDll.suo │ │ ├── HookDll.vcxproj │ │ ├── HookDll.vcxproj.filters │ │ ├── HookDll.vcxproj.user │ │ ├── ReadMe.txt │ │ ├── __TEST │ │ │ └── desktop.ini │ │ ├── dllmain.cpp │ │ ├── stdafx.cpp │ │ ├── stdafx.h │ │ └── targetver.h │ ├── InjectDllx64.exe │ ├── NtHookEngine.dll │ ├── desktop.ini │ └── 复制全部文件到C盘根目录 └── hook │ ├── Calculator.lnk │ ├── HookDll.dll │ ├── HookDll │ ├── HookDll.cpp │ ├── HookDll.sln │ ├── HookDll.suo │ ├── HookDll.vcxproj │ ├── HookDll.vcxproj.filters │ ├── HookDll.vcxproj.user │ ├── ReadMe.txt │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h │ ├── InjectDllx64.exe │ ├── InjectDllx64 │ ├── InjectDllx64.sln │ ├── InjectDllx64.suo │ ├── InjectDllx64.vcxproj │ ├── InjectDllx64.vcxproj.filters │ ├── InjectDllx64.vcxproj.user │ └── main.cpp │ ├── MiniHookEngineForX86X64 │ ├── NtHookEngine.sln │ ├── NtHookEngine │ │ ├── NtHookEngine.cpp │ │ ├── NtHookEngine.rc │ │ ├── NtHookEngine.suo │ │ ├── NtHookEngine.vcproj │ │ ├── NtHookEngine.vcxproj │ │ ├── NtHookEngine.vcxproj.filters │ │ ├── NtHookEngine.vcxproj.user │ │ ├── ReadMe.txt │ │ ├── distorm.h │ │ ├── distorm_x64.lib │ │ ├── distorm_x86.lib │ │ ├── resource.h │ │ ├── stdafx.cpp │ │ └── stdafx.h │ ├── release │ │ ├── NtHookEngine.dll │ │ ├── NtHookEngine.exp │ │ └── NtHookEngine.lib │ └── x64 │ │ └── release │ │ ├── NtHookEngine.dll │ │ ├── NtHookEngine.exp │ │ └── NtHookEngine.lib │ ├── NtHookEngine.dll │ ├── desktop.ini │ └── 复制全部文件到C盘根目录 ├── [6-3]Ring3EatIatHook ├── EAT_IAT_HOOK_TEST32 │ ├── main.cpp │ └── test.exe └── EAT_IAT_HOOK_TEST64 │ ├── main.cpp │ └── test.exe ├── [7-1]EnumRemoveProcessThreadNotify ├── MyDriver.c ├── MyDriver.h ├── ProcNotify.h ├── ThrdNotify.h ├── buildfre_win7_amd64.log ├── makefile ├── objfre_win7_amd64 │ └── amd64 │ │ └── EnumProcessThreadNotify64.sys └── sources ├── [7-2]EnumRemoveImageNotify ├── ImgNotify.h ├── MyDriver.c ├── MyDriver.h ├── buildfre_win7_amd64.log ├── makefile ├── objfre_win7_amd64 │ └── amd64 │ │ └── EnumRemoveImageNotify.sys └── sources ├── [7-3]EnumRemoveCmpCallback ├── MyDriver.c ├── MyDriver.h ├── RegCallback.h ├── buildfre_win7_amd64.log ├── makefile ├── objfre_win7_amd64 │ └── amd64 │ │ └── EnumRemoveCmpCallback.sys └── sources ├── [7-4]EnumRemoveObCallback ├── MyDriver.c ├── MyDriver.h ├── buildfre_win7_amd64.log ├── makefile ├── objfre_win7_amd64 │ └── amd64 │ │ └── EnumRemoveObCallback.sys └── sources └── [7-5]EnumAntiMiniFilter ├── MyDriver.c ├── MyDriver.h ├── buildfre_win7_amd64.log ├── makefile ├── objfre_win7_amd64 └── amd64 │ └── EnumAntiMiniFilter.sys └── sources /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/ReadMe.md -------------------------------------------------------------------------------- /[1-1]SetupTestEnv/软件下载地址.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-1]SetupTestEnv/软件下载地址.txt -------------------------------------------------------------------------------- /[1-2]KrnlHW64/calc_ctl_code/calc_ctl_code.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/calc_ctl_code/calc_ctl_code.sln -------------------------------------------------------------------------------- /[1-2]KrnlHW64/calc_ctl_code/calc_ctl_code.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/calc_ctl_code/calc_ctl_code.suo -------------------------------------------------------------------------------- /[1-2]KrnlHW64/calc_ctl_code/calc_ctl_code.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/calc_ctl_code/calc_ctl_code.vcxproj -------------------------------------------------------------------------------- /[1-2]KrnlHW64/calc_ctl_code/calc_ctl_code.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/calc_ctl_code/calc_ctl_code.vcxproj.filters -------------------------------------------------------------------------------- /[1-2]KrnlHW64/calc_ctl_code/calc_ctl_code.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/calc_ctl_code/calc_ctl_code.vcxproj.user -------------------------------------------------------------------------------- /[1-2]KrnlHW64/calc_ctl_code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/calc_ctl_code/main.cpp -------------------------------------------------------------------------------- /[1-2]KrnlHW64/calc_ctl_code/x64/Release/calc_ctl_code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/calc_ctl_code/x64/Release/calc_ctl_code.exe -------------------------------------------------------------------------------- /[1-2]KrnlHW64/sys/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/sys/MyDriver.c -------------------------------------------------------------------------------- /[1-2]KrnlHW64/sys/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/sys/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[1-2]KrnlHW64/sys/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/sys/makefile -------------------------------------------------------------------------------- /[1-2]KrnlHW64/sys/objfre_win7_amd64/amd64/KmdManager.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/sys/objfre_win7_amd64/amd64/KmdManager.exe -------------------------------------------------------------------------------- /[1-2]KrnlHW64/sys/objfre_win7_amd64/amd64/KrnlHW64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/sys/objfre_win7_amd64/amd64/KrnlHW64.sys -------------------------------------------------------------------------------- /[1-2]KrnlHW64/sys/objfre_win7_amd64/amd64/calc_ctl_code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/sys/objfre_win7_amd64/amd64/calc_ctl_code.exe -------------------------------------------------------------------------------- /[1-2]KrnlHW64/sys/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/sys/sources -------------------------------------------------------------------------------- /[1-2]KrnlHW64/sys/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/sys/test.c -------------------------------------------------------------------------------- /[1-2]KrnlHW64/sys/含有多个C文件时用的source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[1-2]KrnlHW64/sys/含有多个C文件时用的source -------------------------------------------------------------------------------- /[2-1]AboutKPP&DSE/禁用DSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-1]AboutKPP&DSE/禁用DSE.txt -------------------------------------------------------------------------------- /[2-1]AboutKPP&DSE/禁用KPP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-1]AboutKPP&DSE/禁用KPP.txt -------------------------------------------------------------------------------- /[2-2]ScmDrvLoader/ScmDrvCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-2]ScmDrvLoader/ScmDrvCtrl.h -------------------------------------------------------------------------------- /[2-2]ScmDrvLoader/ScmDrvLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-2]ScmDrvLoader/ScmDrvLoader.sln -------------------------------------------------------------------------------- /[2-2]ScmDrvLoader/ScmDrvLoader.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-2]ScmDrvLoader/ScmDrvLoader.suo -------------------------------------------------------------------------------- /[2-2]ScmDrvLoader/ScmDrvLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-2]ScmDrvLoader/ScmDrvLoader.vcxproj -------------------------------------------------------------------------------- /[2-2]ScmDrvLoader/ScmDrvLoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-2]ScmDrvLoader/ScmDrvLoader.vcxproj.filters -------------------------------------------------------------------------------- /[2-2]ScmDrvLoader/ScmDrvLoader.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-2]ScmDrvLoader/ScmDrvLoader.vcxproj.user -------------------------------------------------------------------------------- /[2-2]ScmDrvLoader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-2]ScmDrvLoader/main.cpp -------------------------------------------------------------------------------- /[2-2]ScmDrvLoader/x64/Release/KrnlHW64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-2]ScmDrvLoader/x64/Release/KrnlHW64.sys -------------------------------------------------------------------------------- /[2-2]ScmDrvLoader/x64/Release/ScmDrvLoader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-2]ScmDrvLoader/x64/Release/ScmDrvLoader.exe -------------------------------------------------------------------------------- /[2-3]MemoryOperationTest/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-3]MemoryOperationTest/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[2-3]MemoryOperationTest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-3]MemoryOperationTest/main.c -------------------------------------------------------------------------------- /[2-3]MemoryOperationTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-3]MemoryOperationTest/makefile -------------------------------------------------------------------------------- /[2-3]MemoryOperationTest/objfre_win7_amd64/amd64/SYS_FILE_NAME.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-3]MemoryOperationTest/objfre_win7_amd64/amd64/SYS_FILE_NAME.sys -------------------------------------------------------------------------------- /[2-3]MemoryOperationTest/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-3]MemoryOperationTest/sources -------------------------------------------------------------------------------- /[2-4]StringOperationTest/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-4]StringOperationTest/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[2-4]StringOperationTest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-4]StringOperationTest/main.c -------------------------------------------------------------------------------- /[2-4]StringOperationTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-4]StringOperationTest/makefile -------------------------------------------------------------------------------- /[2-4]StringOperationTest/objfre_win7_amd64/amd64/SYS_FILE_NAME.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-4]StringOperationTest/objfre_win7_amd64/amd64/SYS_FILE_NAME.sys -------------------------------------------------------------------------------- /[2-4]StringOperationTest/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-4]StringOperationTest/sources -------------------------------------------------------------------------------- /[2-5]FileOperationTest/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-5]FileOperationTest/MyDriver.c -------------------------------------------------------------------------------- /[2-5]FileOperationTest/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-5]FileOperationTest/MyDriver.h -------------------------------------------------------------------------------- /[2-5]FileOperationTest/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-5]FileOperationTest/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[2-5]FileOperationTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-5]FileOperationTest/makefile -------------------------------------------------------------------------------- /[2-5]FileOperationTest/objfre_win7_amd64/amd64/MyDriver.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-5]FileOperationTest/objfre_win7_amd64/amd64/MyDriver.sys -------------------------------------------------------------------------------- /[2-5]FileOperationTest/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-5]FileOperationTest/sources -------------------------------------------------------------------------------- /[2-6]RegistryOperationTest/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-6]RegistryOperationTest/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[2-6]RegistryOperationTest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-6]RegistryOperationTest/main.c -------------------------------------------------------------------------------- /[2-6]RegistryOperationTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-6]RegistryOperationTest/makefile -------------------------------------------------------------------------------- /[2-6]RegistryOperationTest/objfre_win7_amd64/amd64/SYS_FILE_NAME.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-6]RegistryOperationTest/objfre_win7_amd64/amd64/SYS_FILE_NAME.sys -------------------------------------------------------------------------------- /[2-6]RegistryOperationTest/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-6]RegistryOperationTest/sources -------------------------------------------------------------------------------- /[2-7]ProcessOperationTest/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-7]ProcessOperationTest/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[2-7]ProcessOperationTest/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-7]ProcessOperationTest/main.c -------------------------------------------------------------------------------- /[2-7]ProcessOperationTest/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-7]ProcessOperationTest/makefile -------------------------------------------------------------------------------- /[2-7]ProcessOperationTest/objfre_win7_amd64/amd64/SYS_FILE_NAME.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-7]ProcessOperationTest/objfre_win7_amd64/amd64/SYS_FILE_NAME.sys -------------------------------------------------------------------------------- /[2-7]ProcessOperationTest/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-7]ProcessOperationTest/sources -------------------------------------------------------------------------------- /[2-8]OtherFunction/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-8]OtherFunction/MyDriver.c -------------------------------------------------------------------------------- /[2-8]OtherFunction/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-8]OtherFunction/MyDriver.h -------------------------------------------------------------------------------- /[2-8]OtherFunction/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-8]OtherFunction/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[2-8]OtherFunction/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-8]OtherFunction/makefile -------------------------------------------------------------------------------- /[2-8]OtherFunction/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[2-8]OtherFunction/sources -------------------------------------------------------------------------------- /[3-1]Wow64&CompatibleMode/WOW64相关测试代码/bin/Release/TestWow64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-1]Wow64&CompatibleMode/WOW64相关测试代码/bin/Release/TestWow64.exe -------------------------------------------------------------------------------- /[3-1]Wow64&CompatibleMode/WOW64相关测试代码/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-1]Wow64&CompatibleMode/WOW64相关测试代码/main.c -------------------------------------------------------------------------------- /[3-1]Wow64&CompatibleMode/兼容模式相关测试代码/_VB_CODE/CCM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-1]Wow64&CompatibleMode/兼容模式相关测试代码/_VB_CODE/CCM.exe -------------------------------------------------------------------------------- /[3-1]Wow64&CompatibleMode/兼容模式相关测试代码/_VB_CODE/CCM.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-1]Wow64&CompatibleMode/兼容模式相关测试代码/_VB_CODE/CCM.vbp -------------------------------------------------------------------------------- /[3-1]Wow64&CompatibleMode/兼容模式相关测试代码/_VB_CODE/CCM.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-1]Wow64&CompatibleMode/兼容模式相关测试代码/_VB_CODE/CCM.vbw -------------------------------------------------------------------------------- /[3-1]Wow64&CompatibleMode/兼容模式相关测试代码/_VB_CODE/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-1]Wow64&CompatibleMode/兼容模式相关测试代码/_VB_CODE/Form1.frm -------------------------------------------------------------------------------- /[3-1]Wow64&CompatibleMode/兼容模式相关测试代码/bin/Release/CCM.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-1]Wow64&CompatibleMode/兼容模式相关测试代码/bin/Release/CCM.exe -------------------------------------------------------------------------------- /[3-1]Wow64&CompatibleMode/兼容模式相关测试代码/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-1]Wow64&CompatibleMode/兼容模式相关测试代码/main.c -------------------------------------------------------------------------------- /[3-2]DisableWin7KPP&DSE/ASM/patch.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-2]DisableWin7KPP&DSE/ASM/patch.asm -------------------------------------------------------------------------------- /[3-2]DisableWin7KPP&DSE/ASM/patch.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-2]DisableWin7KPP&DSE/ASM/patch.exe -------------------------------------------------------------------------------- /[3-2]DisableWin7KPP&DSE/ASM/一键破解.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-2]DisableWin7KPP&DSE/ASM/一键破解.cmd -------------------------------------------------------------------------------- /[3-2]DisableWin7KPP&DSE/ASM/编译.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-2]DisableWin7KPP&DSE/ASM/编译.bat -------------------------------------------------------------------------------- /[3-2]DisableWin7KPP&DSE/VC/disable_pgds.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-2]DisableWin7KPP&DSE/VC/disable_pgds.sln -------------------------------------------------------------------------------- /[3-2]DisableWin7KPP&DSE/VC/disable_pgds.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-2]DisableWin7KPP&DSE/VC/disable_pgds.vcxproj -------------------------------------------------------------------------------- /[3-2]DisableWin7KPP&DSE/VC/disable_pgds.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-2]DisableWin7KPP&DSE/VC/disable_pgds.vcxproj.filters -------------------------------------------------------------------------------- /[3-2]DisableWin7KPP&DSE/VC/disable_pgds.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-2]DisableWin7KPP&DSE/VC/disable_pgds.vcxproj.user -------------------------------------------------------------------------------- /[3-2]DisableWin7KPP&DSE/VC/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-2]DisableWin7KPP&DSE/VC/main.cpp -------------------------------------------------------------------------------- /[3-2]DisableWin7KPP&DSE/VC/x64/Release/disable_pgds.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-2]DisableWin7KPP&DSE/VC/x64/Release/disable_pgds.exe -------------------------------------------------------------------------------- /[3-2]DisableWin7KPP&DSE/VC/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-2]DisableWin7KPP&DSE/VC/说明.txt -------------------------------------------------------------------------------- /[3-3]CalcSSDTFuncAddr/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-3]CalcSSDTFuncAddr/MyDriver.c -------------------------------------------------------------------------------- /[3-3]CalcSSDTFuncAddr/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-3]CalcSSDTFuncAddr/MyDriver.h -------------------------------------------------------------------------------- /[3-3]CalcSSDTFuncAddr/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-3]CalcSSDTFuncAddr/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[3-3]CalcSSDTFuncAddr/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-3]CalcSSDTFuncAddr/makefile -------------------------------------------------------------------------------- /[3-3]CalcSSDTFuncAddr/objfre_win7_amd64/amd64/MyDriver.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-3]CalcSSDTFuncAddr/objfre_win7_amd64/amd64/MyDriver.sys -------------------------------------------------------------------------------- /[3-3]CalcSSDTFuncAddr/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-3]CalcSSDTFuncAddr/sources -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/hook/LoadDrv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/hook/LoadDrv.exe -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/hook/hookssdt_x64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/hook/hookssdt_x64.sys -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/hook/src/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/hook/src/MyDriver.c -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/hook/src/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/hook/src/MyDriver.h -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/hook/src/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/hook/src/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/hook/src/hookssdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/hook/src/hookssdt.h -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/hook/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/hook/src/makefile -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/hook/src/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/hook/src/sources -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/hook/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/hook/说明.txt -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe.exe -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe.sln -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe.suo -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe/DrvCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe/DrvCtrl.h -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe/EnumSSDT_x64_exe.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe/EnumSSDT_x64_exe.vcxproj -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe/EnumSSDT_x64_exe.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe/EnumSSDT_x64_exe.vcxproj.filters -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe/EnumSSDT_x64_exe.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe/EnumSSDT_x64_exe.vcxproj.user -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe/GetNtos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe/GetNtos.h -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_exe/EnumSSDT_x64_exe/main.cpp -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_sys/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_sys/MyDriver.c -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_sys/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_sys/MyDriver.h -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_sys/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_sys/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_sys/buildfre_win7_amd64.wrn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_sys/buildfre_win7_amd64.wrn -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_sys/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_sys/makefile -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_sys/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/EnumSSDT_x64_sys/sources -------------------------------------------------------------------------------- /[3-4]SSDTHookUnhook/unhook/emSSDT64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-4]SSDTHookUnhook/unhook/emSSDT64.sys -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/Fuck3SDT.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/Fuck3SDT.sys -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/KillProcessByPostMessage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/KillProcessByPostMessage.exe -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/KillProcessByPostMessage/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/KillProcessByPostMessage/main.c -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/MyDriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/MyDriver.exe -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/exe/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/exe/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/exe/MyDriver.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/exe/MyDriver.vbp -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/exe/MyDriver.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/exe/MyDriver.vbw -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/exe/cls_Driver.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/exe/cls_Driver.cls -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/exe/frm_Main.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/exe/frm_Main.frm -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/exe/mod_DrvFunc.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/exe/mod_DrvFunc.bas -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/LDE64x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/LDE64x64.h -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/MyDriver.c -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/MyDriver.h -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/hook3sdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/hook3sdt.h -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/makefile -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/hook/SSSDTHook_NtUserPostMessage/sys/sources -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/EnumSSSDT64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/EnumSSSDT64.exe -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/SSSDTx64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/SSSDTx64.sys -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/exe/DrvCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/exe/DrvCtrl.h -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/exe/EnumDrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/exe/EnumDrv.h -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/exe/EnumSSSDT64.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/exe/EnumSSSDT64.sln -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/exe/EnumSSSDT64.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/exe/EnumSSSDT64.suo -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/exe/EnumSSSDT64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/exe/EnumSSSDT64.vcxproj -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/exe/EnumSSSDT64.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/exe/EnumSSSDT64.vcxproj.filters -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/exe/EnumSSSDT64.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/exe/EnumSSSDT64.vcxproj.user -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/exe/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/exe/main.cpp -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/sys/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/sys/MyDriver.c -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/sys/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/sys/MyDriver.h -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/sys/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/sys/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/sys/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/sys/makefile -------------------------------------------------------------------------------- /[3-5]SSSDTHookUnhook/unhook/sys/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-5]SSSDTHookUnhook/unhook/sys/sources -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/exe/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/exe/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/exe/MyDriver.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/exe/MyDriver.vbp -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/exe/MyDriver.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/exe/MyDriver.vbw -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/exe/cls_Driver.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/exe/cls_Driver.cls -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/exe/frm_Main.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/exe/frm_Main.frm -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/exe/mod_DrvFunc.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/exe/mod_DrvFunc.bas -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/hook_ps.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/hook_ps.exe -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/hook_ps.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/hook_ps.sys -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/sys/HookFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/sys/HookFunc.h -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/sys/LDE64x64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/sys/LDE64x64.h -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/sys/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/sys/MyDriver.c -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/sys/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/sys/MyDriver.h -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/sys/buildfre_win7_amd64.wrn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/sys/buildfre_win7_amd64.wrn -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/sys/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/sys/makefile -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/hook/sys/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/hook/sys/sources -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/ClrKIH64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/ClrKIH64.sys -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/GetKernelOriCode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/GetKernelOriCode.exe -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/exe/DrvCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/exe/DrvCtrl.h -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/exe/GetKernelOriCode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/exe/GetKernelOriCode.sln -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/exe/GetKernelOriCode.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/exe/GetKernelOriCode.suo -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/exe/GetKernelOriCode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/exe/GetKernelOriCode.vcxproj -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/exe/GetKernelOriCode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/exe/GetKernelOriCode.vcxproj.filters -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/exe/GetKernelOriCode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/exe/GetKernelOriCode.vcxproj.user -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/exe/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/exe/main.cpp -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/sys/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/sys/MyDriver.c -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/sys/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/sys/MyDriver.h -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/sys/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/sys/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/sys/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/sys/makefile -------------------------------------------------------------------------------- /[3-6]InlineHookUnhook/unhook/sys/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[3-6]InlineHookUnhook/unhook/sys/sources -------------------------------------------------------------------------------- /[4-1]MonitorCreateExitProcessThread/monitor_create_process_x64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-1]MonitorCreateExitProcessThread/monitor_create_process_x64.sys -------------------------------------------------------------------------------- /[4-1]MonitorCreateExitProcessThread/src/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-1]MonitorCreateExitProcessThread/src/MyDriver.c -------------------------------------------------------------------------------- /[4-1]MonitorCreateExitProcessThread/src/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-1]MonitorCreateExitProcessThread/src/MyDriver.h -------------------------------------------------------------------------------- /[4-1]MonitorCreateExitProcessThread/src/ProcessNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-1]MonitorCreateExitProcessThread/src/ProcessNotify.h -------------------------------------------------------------------------------- /[4-1]MonitorCreateExitProcessThread/src/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-1]MonitorCreateExitProcessThread/src/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[4-1]MonitorCreateExitProcessThread/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-1]MonitorCreateExitProcessThread/src/makefile -------------------------------------------------------------------------------- /[4-1]MonitorCreateExitProcessThread/src/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-1]MonitorCreateExitProcessThread/src/sources -------------------------------------------------------------------------------- /[4-1]MonitorCreateExitProcessThread/使用说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-1]MonitorCreateExitProcessThread/使用说明.txt -------------------------------------------------------------------------------- /[4-2]MonitorLoadUnloadDllDriver/LoadImageNotifyX64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-2]MonitorLoadUnloadDllDriver/LoadImageNotifyX64.sys -------------------------------------------------------------------------------- /[4-2]MonitorLoadUnloadDllDriver/src/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-2]MonitorLoadUnloadDllDriver/src/MyDriver.c -------------------------------------------------------------------------------- /[4-2]MonitorLoadUnloadDllDriver/src/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-2]MonitorLoadUnloadDllDriver/src/MyDriver.h -------------------------------------------------------------------------------- /[4-2]MonitorLoadUnloadDllDriver/src/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-2]MonitorLoadUnloadDllDriver/src/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[4-2]MonitorLoadUnloadDllDriver/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-2]MonitorLoadUnloadDllDriver/src/makefile -------------------------------------------------------------------------------- /[4-2]MonitorLoadUnloadDllDriver/src/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-2]MonitorLoadUnloadDllDriver/src/sources -------------------------------------------------------------------------------- /[4-2]MonitorLoadUnloadDllDriver/测试说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-2]MonitorLoadUnloadDllDriver/测试说明.txt -------------------------------------------------------------------------------- /[4-3]MonitorRegistryOperation/CmRegMonitor_x64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-3]MonitorRegistryOperation/CmRegMonitor_x64.sys -------------------------------------------------------------------------------- /[4-3]MonitorRegistryOperation/src/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-3]MonitorRegistryOperation/src/MyDriver.c -------------------------------------------------------------------------------- /[4-3]MonitorRegistryOperation/src/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-3]MonitorRegistryOperation/src/MyDriver.h -------------------------------------------------------------------------------- /[4-3]MonitorRegistryOperation/src/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-3]MonitorRegistryOperation/src/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[4-3]MonitorRegistryOperation/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-3]MonitorRegistryOperation/src/makefile -------------------------------------------------------------------------------- /[4-3]MonitorRegistryOperation/src/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-3]MonitorRegistryOperation/src/sources -------------------------------------------------------------------------------- /[4-3]MonitorRegistryOperation/src/testcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-3]MonitorRegistryOperation/src/testcode.h -------------------------------------------------------------------------------- /[4-3]MonitorRegistryOperation/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-3]MonitorRegistryOperation/说明.txt -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/MFTest.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/MFTest.sys -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/WdmDrvLoader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/WdmDrvLoader.exe -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/readme.txt -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/setup.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/setup.inf -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/src/WdmDrvLoader/VB6StrFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/src/WdmDrvLoader/VB6StrFunc.h -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/src/WdmDrvLoader/WdmDrvLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/src/WdmDrvLoader/WdmDrvLoader.sln -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/src/WdmDrvLoader/WdmDrvLoader.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/src/WdmDrvLoader/WdmDrvLoader.suo -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/src/WdmDrvLoader/WdmDrvLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/src/WdmDrvLoader/WdmDrvLoader.vcxproj -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/src/WdmDrvLoader/WdmDrvLoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/src/WdmDrvLoader/WdmDrvLoader.vcxproj.filters -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/src/WdmDrvLoader/WdmDrvLoader.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/src/WdmDrvLoader/WdmDrvLoader.vcxproj.user -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/src/WdmDrvLoader/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/src/WdmDrvLoader/main.cpp -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/src/driver/MFTest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/src/driver/MFTest.c -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/src/driver/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/src/driver/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/src/driver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/src/driver/makefile -------------------------------------------------------------------------------- /[4-4]MonitorFileOperation/src/driver/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-4]MonitorFileOperation/src/driver/sources -------------------------------------------------------------------------------- /[4-5]MonitorProcessThreadHandle/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-5]MonitorProcessThreadHandle/MyDriver.c -------------------------------------------------------------------------------- /[4-5]MonitorProcessThreadHandle/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-5]MonitorProcessThreadHandle/MyDriver.h -------------------------------------------------------------------------------- /[4-5]MonitorProcessThreadHandle/ProtectProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-5]MonitorProcessThreadHandle/ProtectProcess.h -------------------------------------------------------------------------------- /[4-5]MonitorProcessThreadHandle/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-5]MonitorProcessThreadHandle/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[4-5]MonitorProcessThreadHandle/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-5]MonitorProcessThreadHandle/makefile -------------------------------------------------------------------------------- /[4-5]MonitorProcessThreadHandle/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-5]MonitorProcessThreadHandle/sources -------------------------------------------------------------------------------- /[4-6]MonitorFileOperationByCallback/file_monitor_x64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-6]MonitorFileOperationByCallback/file_monitor_x64.sys -------------------------------------------------------------------------------- /[4-6]MonitorFileOperationByCallback/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-6]MonitorFileOperationByCallback/readme.txt -------------------------------------------------------------------------------- /[4-6]MonitorFileOperationByCallback/src/MAKEFILE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-6]MonitorFileOperationByCallback/src/MAKEFILE -------------------------------------------------------------------------------- /[4-6]MonitorFileOperationByCallback/src/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-6]MonitorFileOperationByCallback/src/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[4-6]MonitorFileOperationByCallback/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-6]MonitorFileOperationByCallback/src/main.c -------------------------------------------------------------------------------- /[4-6]MonitorFileOperationByCallback/src/obstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-6]MonitorFileOperationByCallback/src/obstruct.h -------------------------------------------------------------------------------- /[4-6]MonitorFileOperationByCallback/src/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-6]MonitorFileOperationByCallback/src/sources -------------------------------------------------------------------------------- /[4-7]MonitorInternetAccessByWFP/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-7]MonitorInternetAccessByWFP/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[4-7]MonitorInternetAccessByWFP/denyip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-7]MonitorInternetAccessByWFP/denyip.c -------------------------------------------------------------------------------- /[4-7]MonitorInternetAccessByWFP/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-7]MonitorInternetAccessByWFP/makefile -------------------------------------------------------------------------------- /[4-7]MonitorInternetAccessByWFP/objfre_win7_amd64/amd64/WFP_TEST.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-7]MonitorInternetAccessByWFP/objfre_win7_amd64/amd64/WFP_TEST.sys -------------------------------------------------------------------------------- /[4-7]MonitorInternetAccessByWFP/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-7]MonitorInternetAccessByWFP/sources -------------------------------------------------------------------------------- /[4-8]TimeChangeCallback/amd64/TimeNotify.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-8]TimeChangeCallback/amd64/TimeNotify.sys -------------------------------------------------------------------------------- /[4-8]TimeChangeCallback/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-8]TimeChangeCallback/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[4-8]TimeChangeCallback/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-8]TimeChangeCallback/main.c -------------------------------------------------------------------------------- /[4-8]TimeChangeCallback/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-8]TimeChangeCallback/makefile -------------------------------------------------------------------------------- /[4-8]TimeChangeCallback/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[4-8]TimeChangeCallback/sources -------------------------------------------------------------------------------- /[5-1]DrvInlineASM/Win64InlineASM.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-1]DrvInlineASM/Win64InlineASM.sys -------------------------------------------------------------------------------- /[5-1]DrvInlineASM/src/Win7x64Drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-1]DrvInlineASM/src/Win7x64Drv.c -------------------------------------------------------------------------------- /[5-1]DrvInlineASM/src/Win7x64Drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-1]DrvInlineASM/src/Win7x64Drv.h -------------------------------------------------------------------------------- /[5-1]DrvInlineASM/src/dbghelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-1]DrvInlineASM/src/dbghelp.h -------------------------------------------------------------------------------- /[5-1]DrvInlineASM/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-1]DrvInlineASM/src/makefile -------------------------------------------------------------------------------- /[5-1]DrvInlineASM/src/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-1]DrvInlineASM/src/sources -------------------------------------------------------------------------------- /[5-1]DrvInlineASM/x64asm_to_x64bin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-1]DrvInlineASM/x64asm_to_x64bin.exe -------------------------------------------------------------------------------- /[5-2]DkomHideProtect/MyDriver.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-2]DkomHideProtect/MyDriver.sys -------------------------------------------------------------------------------- /[5-2]DkomHideProtect/src/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-2]DkomHideProtect/src/MyDriver.c -------------------------------------------------------------------------------- /[5-2]DkomHideProtect/src/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-2]DkomHideProtect/src/MyDriver.h -------------------------------------------------------------------------------- /[5-2]DkomHideProtect/src/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-2]DkomHideProtect/src/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[5-2]DkomHideProtect/src/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-2]DkomHideProtect/src/makefile -------------------------------------------------------------------------------- /[5-2]DkomHideProtect/src/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-2]DkomHideProtect/src/sources -------------------------------------------------------------------------------- /[5-3]DriverEnumHide/EnumDriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-3]DriverEnumHide/EnumDriver.exe -------------------------------------------------------------------------------- /[5-3]DriverEnumHide/EnumDriver/EnumDriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-3]DriverEnumHide/EnumDriver/EnumDriver.sln -------------------------------------------------------------------------------- /[5-3]DriverEnumHide/EnumDriver/EnumDriver.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-3]DriverEnumHide/EnumDriver/EnumDriver.suo -------------------------------------------------------------------------------- /[5-3]DriverEnumHide/EnumDriver/EnumDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-3]DriverEnumHide/EnumDriver/EnumDriver.vcxproj -------------------------------------------------------------------------------- /[5-3]DriverEnumHide/EnumDriver/EnumDriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-3]DriverEnumHide/EnumDriver/EnumDriver.vcxproj.filters -------------------------------------------------------------------------------- /[5-3]DriverEnumHide/EnumDriver/EnumDriver.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-3]DriverEnumHide/EnumDriver/EnumDriver.vcxproj.user -------------------------------------------------------------------------------- /[5-3]DriverEnumHide/EnumDriver/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-3]DriverEnumHide/EnumDriver/main.cpp -------------------------------------------------------------------------------- /[5-3]DriverEnumHide/HideDriver/HideKM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-3]DriverEnumHide/HideDriver/HideKM.c -------------------------------------------------------------------------------- /[5-3]DriverEnumHide/HideDriver/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-3]DriverEnumHide/HideDriver/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[5-3]DriverEnumHide/HideDriver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-3]DriverEnumHide/HideDriver/makefile -------------------------------------------------------------------------------- /[5-3]DriverEnumHide/HideDriver/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-3]DriverEnumHide/HideDriver/sources -------------------------------------------------------------------------------- /[5-3]DriverEnumHide/HideKM64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-3]DriverEnumHide/HideKM64.sys -------------------------------------------------------------------------------- /[5-4]ForceKillProcess/FKP64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-4]ForceKillProcess/FKP64.exe -------------------------------------------------------------------------------- /[5-4]ForceKillProcess/Win7x64Drv.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-4]ForceKillProcess/Win7x64Drv.sys -------------------------------------------------------------------------------- /[5-4]ForceKillProcess/exe/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-4]ForceKillProcess/exe/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /[5-4]ForceKillProcess/exe/Mod_MemClr.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-4]ForceKillProcess/exe/Mod_MemClr.bas -------------------------------------------------------------------------------- /[5-4]ForceKillProcess/exe/Win7x64Drv.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-4]ForceKillProcess/exe/Win7x64Drv.vbp -------------------------------------------------------------------------------- /[5-4]ForceKillProcess/exe/Win7x64Drv.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-4]ForceKillProcess/exe/Win7x64Drv.vbw -------------------------------------------------------------------------------- /[5-4]ForceKillProcess/exe/cls_Driver.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-4]ForceKillProcess/exe/cls_Driver.cls -------------------------------------------------------------------------------- /[5-4]ForceKillProcess/exe/form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-4]ForceKillProcess/exe/form1.frm -------------------------------------------------------------------------------- /[5-4]ForceKillProcess/sys/Win7x64Drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-4]ForceKillProcess/sys/Win7x64Drv.c -------------------------------------------------------------------------------- /[5-4]ForceKillProcess/sys/Win7x64Drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-4]ForceKillProcess/sys/Win7x64Drv.h -------------------------------------------------------------------------------- /[5-4]ForceKillProcess/sys/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-4]ForceKillProcess/sys/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[5-4]ForceKillProcess/sys/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-4]ForceKillProcess/sys/makefile -------------------------------------------------------------------------------- /[5-4]ForceKillProcess/sys/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-4]ForceKillProcess/sys/sources -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/KRWProcess.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/KRWProcess.sys -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/模拟游戏.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/模拟游戏.exe -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/模拟游戏/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/模拟游戏/Form1.frm -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/模拟游戏/Game.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/模拟游戏/Game.vbp -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/模拟游戏/Game.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/模拟游戏/Game.vbw -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/模拟盗号.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/模拟盗号.exe -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/模拟盗号/Form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/模拟盗号/Form1.frm -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/模拟盗号/PlugIn.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/模拟盗号/PlugIn.vbp -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/模拟盗号/PlugIn.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/模拟盗号/PlugIn.vbw -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/驱动级模拟盗号.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/驱动级模拟盗号.exe -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/驱动级模拟盗号/exe/MSSCCPRJ.SCC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/驱动级模拟盗号/exe/MSSCCPRJ.SCC -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/驱动级模拟盗号/exe/Mod_MemClr.bas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/驱动级模拟盗号/exe/Mod_MemClr.bas -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/驱动级模拟盗号/exe/Win7x64Drv.vbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/驱动级模拟盗号/exe/Win7x64Drv.vbp -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/驱动级模拟盗号/exe/Win7x64Drv.vbw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/驱动级模拟盗号/exe/Win7x64Drv.vbw -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/驱动级模拟盗号/exe/cls_Driver.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/驱动级模拟盗号/exe/cls_Driver.cls -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/驱动级模拟盗号/exe/form1.frm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/驱动级模拟盗号/exe/form1.frm -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/驱动级模拟盗号/sys/Win7x64Drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/驱动级模拟盗号/sys/Win7x64Drv.c -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/驱动级模拟盗号/sys/Win7x64Drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/驱动级模拟盗号/sys/Win7x64Drv.h -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/驱动级模拟盗号/sys/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/驱动级模拟盗号/sys/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/驱动级模拟盗号/sys/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/驱动级模拟盗号/sys/makefile -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/驱动级模拟盗号/sys/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/驱动级模拟盗号/sys/sources -------------------------------------------------------------------------------- /[5-5]ForceProcMemRW/驱动级游戏保护/下载地址.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-5]ForceProcMemRW/驱动级游戏保护/下载地址.txt -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/EnumMsgHook64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/EnumMsgHook64.exe -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/EnumMsgHook64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/EnumMsgHook64.sys -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/exe/DrvCtrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/exe/DrvCtrl.h -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/exe/exe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/exe/exe.sln -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/exe/exe.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/exe/exe.suo -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/exe/exe.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/exe/exe.vcxproj -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/exe/exe.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/exe/exe.vcxproj.filters -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/exe/exe.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/exe/exe.vcxproj.user -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/exe/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/exe/main.cpp -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/sys/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/sys/MyDriver.c -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/sys/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/sys/MyDriver.h -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/sys/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/sys/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/sys/buildfre_win7_amd64.wrn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/sys/buildfre_win7_amd64.wrn -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/sys/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/sys/makefile -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/sys/rwkm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/sys/rwkm.h -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/src/sys/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/src/sys/sources -------------------------------------------------------------------------------- /[5-6]EnumMsgHook/测试说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-6]EnumMsgHook/测试说明.txt -------------------------------------------------------------------------------- /[5-7]UnlockFile/LockFile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-7]UnlockFile/LockFile.exe -------------------------------------------------------------------------------- /[5-7]UnlockFile/UnlockFile.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-7]UnlockFile/UnlockFile.sys -------------------------------------------------------------------------------- /[5-7]UnlockFile/lockfile.xxx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[5-7]UnlockFile/src/LockFile/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-7]UnlockFile/src/LockFile/main.cpp -------------------------------------------------------------------------------- /[5-7]UnlockFile/src/UnlockFile/EnumHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-7]UnlockFile/src/UnlockFile/EnumHandle.c -------------------------------------------------------------------------------- /[5-7]UnlockFile/src/UnlockFile/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-7]UnlockFile/src/UnlockFile/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[5-7]UnlockFile/src/UnlockFile/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-7]UnlockFile/src/UnlockFile/makefile -------------------------------------------------------------------------------- /[5-7]UnlockFile/src/UnlockFile/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-7]UnlockFile/src/UnlockFile/sources -------------------------------------------------------------------------------- /[5-7]UnlockFile/测试说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-7]UnlockFile/测试说明.txt -------------------------------------------------------------------------------- /[5-8]PE32+/PE32结构图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-8]PE32+/PE32结构图.jpg -------------------------------------------------------------------------------- /[5-8]PE32+/PE64结构图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-8]PE32+/PE64结构图.jpg -------------------------------------------------------------------------------- /[5-8]PE32+/SimplePE64Viewer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-8]PE32+/SimplePE64Viewer.exe -------------------------------------------------------------------------------- /[5-8]PE32+/SimplePE64Viewer/SimplePE64Viewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-8]PE32+/SimplePE64Viewer/SimplePE64Viewer.sln -------------------------------------------------------------------------------- /[5-8]PE32+/SimplePE64Viewer/SimplePE64Viewer.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-8]PE32+/SimplePE64Viewer/SimplePE64Viewer.suo -------------------------------------------------------------------------------- /[5-8]PE32+/SimplePE64Viewer/SimplePE64Viewer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-8]PE32+/SimplePE64Viewer/SimplePE64Viewer.vcxproj -------------------------------------------------------------------------------- /[5-8]PE32+/SimplePE64Viewer/SimplePE64Viewer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-8]PE32+/SimplePE64Viewer/SimplePE64Viewer.vcxproj.filters -------------------------------------------------------------------------------- /[5-8]PE32+/SimplePE64Viewer/SimplePE64Viewer.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-8]PE32+/SimplePE64Viewer/SimplePE64Viewer.vcxproj.user -------------------------------------------------------------------------------- /[5-8]PE32+/SimplePE64Viewer/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[5-8]PE32+/SimplePE64Viewer/main.cpp -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/SuperInsertDll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/SuperInsertDll.exe -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/SuperInsertDll/SuperInsertDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/SuperInsertDll/SuperInsertDll.sln -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/SuperInsertDll/SuperInsertDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/SuperInsertDll/SuperInsertDll.suo -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/SuperInsertDll/SuperInsertDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/SuperInsertDll/SuperInsertDll.vcxproj -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/SuperInsertDll/SuperInsertDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/SuperInsertDll/SuperInsertDll.vcxproj.filters -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/SuperInsertDll/SuperInsertDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/SuperInsertDll/SuperInsertDll.vcxproj.user -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/SuperInsertDll/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/SuperInsertDll/main.cpp -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/SuperInsertDll/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/SuperInsertDll/main.h -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/SuperInsertDll/ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/SuperInsertDll/ntdll.lib -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/TestDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/TestDll.dll -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/TestDll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/TestDll/ReadMe.txt -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/TestDll/TestDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/TestDll/TestDll.cpp -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/TestDll/TestDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/TestDll/TestDll.sln -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/TestDll/TestDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/TestDll/TestDll.suo -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/TestDll/TestDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/TestDll/TestDll.vcxproj -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/TestDll/TestDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/TestDll/TestDll.vcxproj.filters -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/TestDll/TestDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/TestDll/TestDll.vcxproj.user -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/TestDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/TestDll/dllmain.cpp -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/TestDll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/TestDll/stdafx.cpp -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/TestDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/TestDll/stdafx.h -------------------------------------------------------------------------------- /[6-1]RemoteThreadToSystemProcess/TestDll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-1]RemoteThreadToSystemProcess/TestDll/targetver.h -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook.exe -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/AntiHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/AntiHook.cpp -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/AntiHook.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/AntiHook.sln -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/AntiHook.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/AntiHook.suo -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/AntiHook.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/AntiHook.vcxproj -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/AntiHook.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/AntiHook.vcxproj.filters -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/AntiHook.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/AntiHook.vcxproj.user -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/ReadMe.txt -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/_HookTest/!!复制全部文件到C盘根目录: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/_HookTest/AntiHook.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/_HookTest/AntiHook.exe -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/_HookTest/Calculator.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/_HookTest/Calculator.lnk -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/_HookTest/HookDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/_HookTest/HookDll.dll -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/_HookTest/InjectDllx64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/_HookTest/InjectDllx64.exe -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/_HookTest/NtHookEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/_HookTest/NtHookEngine.dll -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/_HookTest/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/_HookTest/desktop.ini -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/stdafx.cpp -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/stdafx.h -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/AntiHook/targetver.h -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/Calculator.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/Calculator.lnk -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/HookDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/HookDll.dll -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/HookDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/HookDll.cpp -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/HookDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/HookDll.sln -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/HookDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/HookDll.suo -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/HookDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/HookDll.vcxproj -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/HookDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/HookDll.vcxproj.filters -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/HookDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/HookDll.vcxproj.user -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/ReadMe.txt -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/__TEST/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/__TEST/desktop.ini -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/dllmain.cpp -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/stdafx.cpp -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/stdafx.h -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/HookZwReadFile/targetver.h -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/InjectDllx64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/InjectDllx64.exe -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/NtHookEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/NtHookEngine.dll -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/anti-hook/desktop.ini -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/anti-hook/复制全部文件到C盘根目录: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/Calculator.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/Calculator.lnk -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/HookDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/HookDll.dll -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/HookDll/HookDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/HookDll/HookDll.cpp -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/HookDll/HookDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/HookDll/HookDll.sln -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/HookDll/HookDll.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/HookDll/HookDll.suo -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/HookDll/HookDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/HookDll/HookDll.vcxproj -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/HookDll/HookDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/HookDll/HookDll.vcxproj.filters -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/HookDll/HookDll.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/HookDll/HookDll.vcxproj.user -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/HookDll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/HookDll/ReadMe.txt -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/HookDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/HookDll/dllmain.cpp -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/HookDll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/HookDll/stdafx.cpp -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/HookDll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/HookDll/stdafx.h -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/HookDll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/HookDll/targetver.h -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64.exe -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64/InjectDllx64.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64/InjectDllx64.sln -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64/InjectDllx64.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64/InjectDllx64.suo -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64/InjectDllx64.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64/InjectDllx64.vcxproj -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64/InjectDllx64.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64/InjectDllx64.vcxproj.filters -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64/InjectDllx64.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64/InjectDllx64.vcxproj.user -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/InjectDllx64/main.cpp -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine.sln -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.cpp -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.rc -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.suo -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.vcproj -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.vcxproj -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.vcxproj.filters -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/NtHookEngine.vcxproj.user -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/ReadMe.txt -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/distorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/distorm.h -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/distorm_x64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/distorm_x64.lib -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/distorm_x86.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/distorm_x86.lib -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/resource.h -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/stdafx.cpp -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/NtHookEngine/stdafx.h -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/release/NtHookEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/release/NtHookEngine.dll -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/release/NtHookEngine.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/release/NtHookEngine.exp -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/release/NtHookEngine.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/release/NtHookEngine.lib -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/x64/release/NtHookEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/x64/release/NtHookEngine.dll -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/x64/release/NtHookEngine.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/x64/release/NtHookEngine.exp -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/x64/release/NtHookEngine.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/MiniHookEngineForX86X64/x64/release/NtHookEngine.lib -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/NtHookEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/NtHookEngine.dll -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-2]Ring3InlineHookAntiHook/hook/desktop.ini -------------------------------------------------------------------------------- /[6-2]Ring3InlineHookAntiHook/hook/复制全部文件到C盘根目录: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[6-3]Ring3EatIatHook/EAT_IAT_HOOK_TEST32/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-3]Ring3EatIatHook/EAT_IAT_HOOK_TEST32/main.cpp -------------------------------------------------------------------------------- /[6-3]Ring3EatIatHook/EAT_IAT_HOOK_TEST32/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-3]Ring3EatIatHook/EAT_IAT_HOOK_TEST32/test.exe -------------------------------------------------------------------------------- /[6-3]Ring3EatIatHook/EAT_IAT_HOOK_TEST64/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-3]Ring3EatIatHook/EAT_IAT_HOOK_TEST64/main.cpp -------------------------------------------------------------------------------- /[6-3]Ring3EatIatHook/EAT_IAT_HOOK_TEST64/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[6-3]Ring3EatIatHook/EAT_IAT_HOOK_TEST64/test.exe -------------------------------------------------------------------------------- /[7-1]EnumRemoveProcessThreadNotify/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-1]EnumRemoveProcessThreadNotify/MyDriver.c -------------------------------------------------------------------------------- /[7-1]EnumRemoveProcessThreadNotify/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-1]EnumRemoveProcessThreadNotify/MyDriver.h -------------------------------------------------------------------------------- /[7-1]EnumRemoveProcessThreadNotify/ProcNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-1]EnumRemoveProcessThreadNotify/ProcNotify.h -------------------------------------------------------------------------------- /[7-1]EnumRemoveProcessThreadNotify/ThrdNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-1]EnumRemoveProcessThreadNotify/ThrdNotify.h -------------------------------------------------------------------------------- /[7-1]EnumRemoveProcessThreadNotify/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-1]EnumRemoveProcessThreadNotify/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[7-1]EnumRemoveProcessThreadNotify/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-1]EnumRemoveProcessThreadNotify/makefile -------------------------------------------------------------------------------- /[7-1]EnumRemoveProcessThreadNotify/objfre_win7_amd64/amd64/EnumProcessThreadNotify64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-1]EnumRemoveProcessThreadNotify/objfre_win7_amd64/amd64/EnumProcessThreadNotify64.sys -------------------------------------------------------------------------------- /[7-1]EnumRemoveProcessThreadNotify/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-1]EnumRemoveProcessThreadNotify/sources -------------------------------------------------------------------------------- /[7-2]EnumRemoveImageNotify/ImgNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-2]EnumRemoveImageNotify/ImgNotify.h -------------------------------------------------------------------------------- /[7-2]EnumRemoveImageNotify/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-2]EnumRemoveImageNotify/MyDriver.c -------------------------------------------------------------------------------- /[7-2]EnumRemoveImageNotify/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-2]EnumRemoveImageNotify/MyDriver.h -------------------------------------------------------------------------------- /[7-2]EnumRemoveImageNotify/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-2]EnumRemoveImageNotify/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[7-2]EnumRemoveImageNotify/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-2]EnumRemoveImageNotify/makefile -------------------------------------------------------------------------------- /[7-2]EnumRemoveImageNotify/objfre_win7_amd64/amd64/EnumRemoveImageNotify.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-2]EnumRemoveImageNotify/objfre_win7_amd64/amd64/EnumRemoveImageNotify.sys -------------------------------------------------------------------------------- /[7-2]EnumRemoveImageNotify/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-2]EnumRemoveImageNotify/sources -------------------------------------------------------------------------------- /[7-3]EnumRemoveCmpCallback/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-3]EnumRemoveCmpCallback/MyDriver.c -------------------------------------------------------------------------------- /[7-3]EnumRemoveCmpCallback/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-3]EnumRemoveCmpCallback/MyDriver.h -------------------------------------------------------------------------------- /[7-3]EnumRemoveCmpCallback/RegCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-3]EnumRemoveCmpCallback/RegCallback.h -------------------------------------------------------------------------------- /[7-3]EnumRemoveCmpCallback/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-3]EnumRemoveCmpCallback/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[7-3]EnumRemoveCmpCallback/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-3]EnumRemoveCmpCallback/makefile -------------------------------------------------------------------------------- /[7-3]EnumRemoveCmpCallback/objfre_win7_amd64/amd64/EnumRemoveCmpCallback.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-3]EnumRemoveCmpCallback/objfre_win7_amd64/amd64/EnumRemoveCmpCallback.sys -------------------------------------------------------------------------------- /[7-3]EnumRemoveCmpCallback/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-3]EnumRemoveCmpCallback/sources -------------------------------------------------------------------------------- /[7-4]EnumRemoveObCallback/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-4]EnumRemoveObCallback/MyDriver.c -------------------------------------------------------------------------------- /[7-4]EnumRemoveObCallback/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-4]EnumRemoveObCallback/MyDriver.h -------------------------------------------------------------------------------- /[7-4]EnumRemoveObCallback/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-4]EnumRemoveObCallback/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[7-4]EnumRemoveObCallback/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-4]EnumRemoveObCallback/makefile -------------------------------------------------------------------------------- /[7-4]EnumRemoveObCallback/objfre_win7_amd64/amd64/EnumRemoveObCallback.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-4]EnumRemoveObCallback/objfre_win7_amd64/amd64/EnumRemoveObCallback.sys -------------------------------------------------------------------------------- /[7-4]EnumRemoveObCallback/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-4]EnumRemoveObCallback/sources -------------------------------------------------------------------------------- /[7-5]EnumAntiMiniFilter/MyDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-5]EnumAntiMiniFilter/MyDriver.c -------------------------------------------------------------------------------- /[7-5]EnumAntiMiniFilter/MyDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-5]EnumAntiMiniFilter/MyDriver.h -------------------------------------------------------------------------------- /[7-5]EnumAntiMiniFilter/buildfre_win7_amd64.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-5]EnumAntiMiniFilter/buildfre_win7_amd64.log -------------------------------------------------------------------------------- /[7-5]EnumAntiMiniFilter/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-5]EnumAntiMiniFilter/makefile -------------------------------------------------------------------------------- /[7-5]EnumAntiMiniFilter/objfre_win7_amd64/amd64/EnumAntiMiniFilter.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-5]EnumAntiMiniFilter/objfre_win7_amd64/amd64/EnumAntiMiniFilter.sys -------------------------------------------------------------------------------- /[7-5]EnumAntiMiniFilter/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wanttobeno/Win64DriverStudy_Src/HEAD/[7-5]EnumAntiMiniFilter/sources --------------------------------------------------------------------------------