├── .gitignore ├── LICENSE ├── README.md ├── [工具] [本人] Bypass AC analytics games └── README.md ├── [教程] [15208240327] CrossFire └── README.md ├── [教程] [Dick丶迷恋] CrossFire └── README.md ├── [教程] [Guided Hacking] Counterstrike Global Offensive └── README.md ├── [教程] [Zer0Mem0ry] Counterstrike Global Offensive └── README.md ├── [教程] [atiksoftware] pubg mobile └── README.md ├── [教程] [收集] Win10 Kernel Driver ├── Blackbone [简单的封装] │ └── blackbone_interface.hpp ├── CallBack [回调通信] │ └── README.md ├── Dispatch [分发通信] │ └── README.md ├── Ioctl [输入输出控制通信] │ ├── Driver_IOCTL │ │ ├── Driver_IOCTL.sln │ │ ├── Driver_IOCTL │ │ │ ├── Driver_IOCTL.inf │ │ │ ├── Driver_IOCTL.vcxproj │ │ │ ├── Driver_IOCTL.vcxproj.filters │ │ │ └── main.c │ │ └── User_IOCTL │ │ │ ├── User_IOCTL.vcxproj │ │ │ ├── User_IOCTL.vcxproj.filters │ │ │ ├── User_IOCTL.vcxproj.user │ │ │ └── main.cpp │ └── README.md ├── Kernel-Bridge [简单的封装] │ ├── CtlTypes.h │ ├── DriversUtils.cpp │ ├── DriversUtils.h │ ├── User-Bridge.cpp │ ├── User-Bridge.h │ ├── Utils.cpp │ ├── Utils.h │ └── WdkTypes.h ├── Mdl [读取内存] │ ├── Driver.c │ ├── Driver.h │ └── main.cpp ├── MiProcessLoaderEntry [隐藏驱动] │ ├── README.md │ ├── demo.png │ ├── v0.5 │ │ ├── HideDriver.c │ │ └── HideDriver.h │ └── v1.0 │ │ ├── entry.cpp │ │ └── entry.hpp ├── Name Pipe [命名管道通信] │ └── README.md ├── Share Memory [共享内存通信] │ └── README.md ├── Socket [套接字通信] │ └── README.md ├── Trace Cleaner [清除跟踪] │ ├── Main.cpp │ ├── clean.hpp │ ├── struct.h │ └── v1.0.0 │ │ ├── main.c │ │ └── main.h ├── klhk ssdt hook [内核挂钩] │ ├── hooks.cpp │ ├── hooks.hpp │ ├── klhk.cpp │ ├── klhk.hpp │ ├── klhk.sys │ ├── main.cpp │ ├── module.cpp │ ├── module.hpp │ ├── ssdt_index.hpp │ ├── util.cpp │ └── util.hpp └── super framework [不错的框架] │ ├── README.md │ ├── kernelmode │ ├── cleaner.h │ ├── imports.h │ ├── kernelmode.vcxproj │ ├── kernelmode.vcxproj.filters │ ├── kernelmode.vcxproj.user │ ├── main.cpp │ └── memory.h │ ├── solution.sln │ └── usermode │ ├── driver.h │ ├── imports.h │ ├── main.cpp │ ├── nuklear │ ├── nuklear.h │ ├── nuklear_d3d11.cpp │ ├── nuklear_d3d11.h │ ├── nuklear_d3d11.hlsl │ ├── nuklear_d3d11_pixel_shader.h │ └── nuklear_d3d11_vertex_shader.h │ ├── offsets.h │ ├── sdk.h │ ├── usermode.vcxproj │ ├── usermode.vcxproj.filters │ ├── usermode.vcxproj.user │ ├── vectors.h │ └── xor.h ├── [教程] [收集] Window Kernel Hack ├── Minifilter文件监控 │ └── Minifilter_FileMonitor_Test │ │ ├── Minifilter_FileMonitor_Test.sln │ │ ├── Minifilter_FileMonitor_Test.v12.suo │ │ ├── Minifilter_FileMonitor_Test │ │ ├── Minifilter_FileMonitor_Test.c │ │ ├── Minifilter_FileMonitor_Test.inf │ │ ├── Minifilter_FileMonitor_Test.rc │ │ ├── Minifilter_FileMonitor_Test.vcxproj │ │ └── Minifilter_FileMonitor_Test.vcxproj.filters │ │ ├── Win7Debug │ │ ├── Minifilter_FileMonitor_Test.inf │ │ └── start.bat │ │ └── x64 │ │ └── Win8.1Debug │ │ ├── Minifilter_FileMonitor_Test.inf │ │ └── start.bat ├── README.md ├── SSDT HOOK │ ├── GetSSDTFunctionIndex_Test │ │ ├── GetSSDTFunctionIndex_Test.sln │ │ ├── GetSSDTFunctionIndex_Test.v12.suo │ │ └── GetSSDTFunctionIndex_Test │ │ │ ├── Driver.c │ │ │ ├── Driver.h │ │ │ ├── GetSSDTFunctionIndex_Test.inf │ │ │ ├── GetSSDTFunctionIndex_Test.vcxproj │ │ │ ├── GetSSDTFunctionIndex_Test.vcxproj.filters │ │ │ ├── GetSSDTFunctionIndex_Test.vcxproj.user │ │ │ ├── SSDTFunctionIndex.c │ │ │ └── SSDTFunctionIndex.h │ ├── SSDTFunction_32_Test │ │ ├── SSDTFunction_32_Test.sln │ │ ├── SSDTFunction_32_Test.v12.suo │ │ └── SSDTFunction_32_Test │ │ │ ├── Driver.c │ │ │ ├── Driver.h │ │ │ ├── SSDTFunction.c │ │ │ ├── SSDTFunction.h │ │ │ ├── SSDTFunction_32_Test.inf │ │ │ ├── SSDTFunction_32_Test.vcxproj │ │ │ ├── SSDTFunction_32_Test.vcxproj.filters │ │ │ └── SSDTFunction_32_Test.vcxproj.user │ ├── SSDTFunction_64_Test │ │ ├── SSDTFunction_64_Test.sln │ │ ├── SSDTFunction_64_Test.v12.suo │ │ └── SSDTFunction_64_Test │ │ │ ├── Driver.c │ │ │ ├── Driver.h │ │ │ ├── SSDTFunction.c │ │ │ ├── SSDTFunction.h │ │ │ ├── SSDTFunction_64_Test.inf │ │ │ ├── SSDTFunction_64_Test.vcxproj │ │ │ ├── SSDTFunction_64_Test.vcxproj.filters │ │ │ └── SSDTFunction_64_Test.vcxproj.user │ └── SSDTHook_ZwQueryDirectoryFile_Test │ │ ├── SSDTHook_ZwQueryDirectoryFile_Test.sln │ │ ├── SSDTHook_ZwQueryDirectoryFile_Test.v12.suo │ │ └── SSDTHook_ZwQueryDirectoryFile_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── SSDTFunction.c │ │ ├── SSDTFunction.h │ │ ├── SSDTHook.c │ │ ├── SSDTHook.h │ │ ├── SSDTHook_ZwQueryDirectoryFile_Test.inf │ │ ├── SSDTHook_ZwQueryDirectoryFile_Test.vcxproj │ │ ├── SSDTHook_ZwQueryDirectoryFile_Test.vcxproj.filters │ │ └── SSDTHook_ZwQueryDirectoryFile_Test.vcxproj.user ├── TDI网络通信 │ ├── ChatServer.7z │ └── TdiCommunicate_Test │ │ ├── TdiCommunicate_Test.sln │ │ ├── TdiCommunicate_Test.v12.suo │ │ └── TdiCommunicate_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── TdiCommunicate_Test.inf │ │ ├── TdiCommunicate_Test.vcxproj │ │ ├── TdiCommunicate_Test.vcxproj.filters │ │ ├── TdiCommunicate_Test.vcxproj.user │ │ ├── TdiTcp.c │ │ └── TdiTcp.h ├── WFP网络监控 │ └── WFP_Network_Test │ │ ├── WFP_Network_Test.sln │ │ ├── WFP_Network_Test.v12.suo │ │ └── WFP_Network_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── WFP_Network.c │ │ ├── WFP_Network.h │ │ ├── WFP_Network_Test.inf │ │ ├── WFP_Network_Test.vcxproj │ │ ├── WFP_Network_Test.vcxproj.filters │ │ └── WFP_Network_Test.vcxproj.user ├── 反Minifilter文件监控 │ └── Minifilter_Enum_Remove_Test │ │ ├── Minifilter_Enum_Remove_Test.sln │ │ ├── Minifilter_Enum_Remove_Test.v12.suo │ │ └── Minifilter_Enum_Remove_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── EnumRemove.c │ │ ├── EnumRemove.h │ │ ├── Minifilter_Enum_Remove_Test.inf │ │ ├── Minifilter_Enum_Remove_Test.vcxproj │ │ ├── Minifilter_Enum_Remove_Test.vcxproj.filters │ │ └── Minifilter_Enum_Remove_Test.vcxproj.user ├── 反对象监控 │ └── ObRegisterCallbacks_Enum_Remove_Test │ │ ├── ObRegisterCallbacks_Enum_Remove_Test.sln │ │ ├── ObRegisterCallbacks_Enum_Remove_Test.v12.suo │ │ └── ObRegisterCallbacks_Enum_Remove_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── EnumRemove.c │ │ ├── EnumRemove.h │ │ ├── ObRegisterCallbacks_Enum_Remove_Test.inf │ │ ├── ObRegisterCallbacks_Enum_Remove_Test.vcxproj │ │ ├── ObRegisterCallbacks_Enum_Remove_Test.vcxproj.filters │ │ └── ObRegisterCallbacks_Enum_Remove_Test.vcxproj.user ├── 反模块加载监控 │ └── PsSetLoadImageNotifyRoutine_Enum_Remove_Test │ │ ├── PsSetLoadImageNotifyRoutine_Enum_Remove_Test.sln │ │ ├── PsSetLoadImageNotifyRoutine_Enum_Remove_Test.v12.suo │ │ └── PsSetLoadImageNotifyRoutine_Enum_Remove_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── EnumRemove.c │ │ ├── EnumRemove.h │ │ ├── PsSetLoadImageNotifyRoutine_Enum_Remove_Test.inf │ │ ├── PsSetLoadImageNotifyRoutine_Enum_Remove_Test.vcxproj │ │ ├── PsSetLoadImageNotifyRoutine_Enum_Remove_Test.vcxproj.filters │ │ └── PsSetLoadImageNotifyRoutine_Enum_Remove_Test.vcxproj.user ├── 反注册表监控 │ └── CmRegisterCallback_Enum_Remove_Test │ │ ├── CmRegisterCallback_Enum_Remove_Test.sln │ │ ├── CmRegisterCallback_Enum_Remove_Test.v12.suo │ │ └── CmRegisterCallback_Enum_Remove_Test │ │ ├── CmRegisterCallback_Enum_Remove_Test.inf │ │ ├── CmRegisterCallback_Enum_Remove_Test.vcxproj │ │ ├── CmRegisterCallback_Enum_Remove_Test.vcxproj.filters │ │ ├── CmRegisterCallback_Enum_Remove_Test.vcxproj.user │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── EnumRemove.c │ │ └── EnumRemove.h ├── 反线程创建监控 │ └── PsSetCreateThreadNotifyRoutine_Enum_Remove_Test │ │ ├── PsSetCreateThreadNotifyRoutine_Enum_Remove_Test.sln │ │ ├── PsSetCreateThreadNotifyRoutine_Enum_Remove_Test.v12.suo │ │ └── PsSetCreateThreadNotifyRoutine_Enum_Remove_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── EnumRemove.c │ │ ├── EnumRemove.h │ │ ├── PsSetCreateThreadNotifyRoutine_Enum_Remove_Test.inf │ │ ├── PsSetCreateThreadNotifyRoutine_Enum_Remove_Test.vcxproj │ │ ├── PsSetCreateThreadNotifyRoutine_Enum_Remove_Test.vcxproj.filters │ │ └── PsSetCreateThreadNotifyRoutine_Enum_Remove_Test.vcxproj.user ├── 反进程创建监控 │ └── PsSetCreateProcessNotifyRoutine_Enum_Remove_Test │ │ ├── PsSetCreateProcessNotifyRoutine_Enum_Remove_Test.sln │ │ ├── PsSetCreateProcessNotifyRoutine_Enum_Remove_Test.v12.suo │ │ └── PsSetCreateProcessNotifyRoutine_Enum_Remove_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── EnumRemove.c │ │ ├── EnumRemove.h │ │ ├── PsSetCreateProcessNotifyRoutine_Enum_Remove_Test.inf │ │ ├── PsSetCreateProcessNotifyRoutine_Enum_Remove_Test.vcxproj │ │ ├── PsSetCreateProcessNotifyRoutine_Enum_Remove_Test.vcxproj.filters │ │ └── PsSetCreateProcessNotifyRoutine_Enum_Remove_Test.vcxproj.user ├── 对象监控 │ └── ObRegisterCallbacks_Test │ │ ├── ObRegisterCallbacks_Test.sln │ │ ├── ObRegisterCallbacks_Test.v12.suo │ │ └── ObRegisterCallbacks_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── NotifyRoutine.c │ │ ├── NotifyRoutine.h │ │ ├── ObRegisterCallbacks_Test.inf │ │ ├── ObRegisterCallbacks_Test.vcxproj │ │ ├── ObRegisterCallbacks_Test.vcxproj.filters │ │ └── ObRegisterCallbacks_Test.vcxproj.user ├── 强制结束进程 │ └── ForceKillProcess_Test │ │ ├── ForceKillProcess_Test.sln │ │ ├── ForceKillProcess_Test.v12.suo │ │ └── ForceKillProcess_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── ForceKillProcess.c │ │ ├── ForceKillProcess.h │ │ ├── ForceKillProcess_Test.inf │ │ ├── ForceKillProcess_Test.vcxproj │ │ ├── ForceKillProcess_Test.vcxproj.filters │ │ └── ForceKillProcess_Test.vcxproj.user ├── 文件保护 │ └── IrpFileProtect_Test │ │ ├── IrpFileProtect_Test.sln │ │ ├── IrpFileProtect_Test.v12.suo │ │ └── IrpFileProtect_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── FileProtect.c │ │ ├── FileProtect.h │ │ ├── IrpFile.c │ │ ├── IrpFile.h │ │ ├── IrpFileProtect_Test.inf │ │ ├── IrpFileProtect_Test.vcxproj │ │ ├── IrpFileProtect_Test.vcxproj.filters │ │ └── IrpFileProtect_Test.vcxproj.user ├── 文件强删 │ └── IrpFileForceDelete_Test │ │ ├── IrpFileForceDelete_Test.sln │ │ ├── IrpFileForceDelete_Test.v12.suo │ │ └── IrpFileForceDelete_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── ForceDelete.c │ │ ├── ForceDelete.h │ │ ├── IrpFile.c │ │ ├── IrpFile.h │ │ ├── IrpFileForceDelete_Test.inf │ │ ├── IrpFileForceDelete_Test.vcxproj │ │ ├── IrpFileForceDelete_Test.vcxproj.filters │ │ └── IrpFileForceDelete_Test.vcxproj.user ├── 模块加载监控 │ └── PsSetLoadImageNotifyRoutine_Test │ │ ├── PsSetLoadImageNotifyRoutine_Test.sln │ │ ├── PsSetLoadImageNotifyRoutine_Test.v12.suo │ │ └── PsSetLoadImageNotifyRoutine_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── LoadImageNotify.c │ │ ├── LoadImageNotify.h │ │ ├── PsSetLoadImageNotifyRoutine_Test.inf │ │ ├── PsSetLoadImageNotifyRoutine_Test.vcxproj │ │ ├── PsSetLoadImageNotifyRoutine_Test.vcxproj.filters │ │ └── PsSetLoadImageNotifyRoutine_Test.vcxproj.user ├── 注册表监控 │ └── CmRegisterCallback_Test │ │ ├── CmRegisterCallback_Test.sln │ │ ├── CmRegisterCallback_Test.v12.suo │ │ └── CmRegisterCallback_Test │ │ ├── CmRegisterCallback_Test.inf │ │ ├── CmRegisterCallback_Test.vcxproj │ │ ├── CmRegisterCallback_Test.vcxproj.filters │ │ ├── CmRegisterCallback_Test.vcxproj.user │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── NotifyRoutine.c │ │ └── NotifyRoutine.h ├── 过Patch Guard的进程隐藏 │ └── EnumProcess_ActiveProcessLinks_Test │ │ ├── EnumProcess_ActiveProcessLinks_Test.sln │ │ ├── EnumProcess_ActiveProcessLinks_Test.v12.suo │ │ └── EnumProcess_ActiveProcessLinks_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── EnumProcess.c │ │ ├── EnumProcess.h │ │ ├── EnumProcess_ActiveProcessLinks_Test.inf │ │ ├── EnumProcess_ActiveProcessLinks_Test.vcxproj │ │ ├── EnumProcess_ActiveProcessLinks_Test.vcxproj.filters │ │ ├── EnumProcess_ActiveProcessLinks_Test.vcxproj.user │ │ ├── GetMiProcessLoaderEntry.c │ │ ├── GetMiProcessLoaderEntry.h │ │ ├── SSDTFunction.c │ │ └── SSDTFunction.h ├── 过Patch Guard的驱动隐藏 │ └── EnumDriver_Test │ │ ├── EnumDriver_Test.sln │ │ ├── EnumDriver_Test.v12.suo │ │ └── EnumDriver_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── EnumDriver.c │ │ ├── EnumDriver.h │ │ ├── EnumDriver_Test.inf │ │ ├── EnumDriver_Test.vcxproj │ │ ├── EnumDriver_Test.vcxproj.filters │ │ ├── EnumDriver_Test.vcxproj.user │ │ ├── GetMiProcessLoaderEntry.c │ │ ├── GetMiProcessLoaderEntry.h │ │ ├── SSDTFunction.c │ │ └── SSDTFunction.h ├── 进程创建监控 │ └── PsSetCreateProcessNotifyRoutineEx_Test │ │ ├── PsSetCreateProcessNotifyRoutineEx_Test.sln │ │ ├── PsSetCreateProcessNotifyRoutineEx_Test.v12.suo │ │ └── PsSetCreateProcessNotifyRoutineEx_Test │ │ ├── Driver.c │ │ ├── Driver.h │ │ ├── NotifyRoutine.c │ │ ├── NotifyRoutine.h │ │ ├── PsSetCreateProcessNotifyRoutineEx_Test.inf │ │ ├── PsSetCreateProcessNotifyRoutineEx_Test.vcxproj │ │ ├── PsSetCreateProcessNotifyRoutineEx_Test.vcxproj.filters │ │ └── PsSetCreateProcessNotifyRoutineEx_Test.vcxproj.user └── 键盘监听 │ └── KeyboardLog_Test │ ├── KeyboardLog_Test.sln │ ├── KeyboardLog_Test.v12.suo │ └── KeyboardLog_Test │ ├── Driver.c │ ├── Driver.h │ ├── KeyboardLog_Test.inf │ ├── KeyboardLog_Test.vcxproj │ ├── KeyboardLog_Test.vcxproj.filters │ └── KeyboardLog_Test.vcxproj.user ├── [教程] [本人] Apex Legends ├── README.md ├── [dump] [offsets] [tools] │ ├── apex_202_10_10.md │ ├── apex_offsets.txt │ ├── dump_apex.exe │ └── get_apex_offsets.exe ├── [dump] │ ├── dump_apex.exe │ ├── main.cpp │ └── memory.hpp ├── [offsets] [pelite] │ ├── README.md │ └── pelite-0.9.0.zip ├── [最新偏移] │ └── offset_2020_11_24.txt ├── [最新辅助] │ └── README.md ├── [辉光] [自瞄] [原始版本] │ ├── cheats.hpp │ ├── main.cpp │ ├── memory.hpp │ ├── overlay.hpp │ └── vectors.hpp ├── [辉光] [自瞄] [自瞄不稳待修改] │ ├── cheats.hpp │ ├── memory.hpp │ └── vectors.hpp └── [辉光] [锁头] [稳定版本] │ ├── README.md │ ├── apex_show.sln │ ├── apex_show.vcxproj │ ├── apex_show.vcxproj.filters │ ├── apex_show.vcxproj.user │ ├── cheats.hpp │ ├── demo.jpg │ ├── entity.hpp │ ├── main.cpp │ ├── memory.hpp │ └── offsets.hpp ├── [教程] [本人] Counterstrike Global Offensive ├── A.辅助程序最终效果演示 │ ├── README.md │ └── demo.jpg ├── B.使用CE查找自己的矩阵信息 │ ├── README.md │ └── demo.jpg ├── C.使用CE查找自己的角度信息 │ ├── README.md │ └── demo.jpg ├── D.使用CE查找自己的位置信息 │ ├── README.md │ └── demo.jpg ├── E.使用CE查找敌人和队友的位置信息 │ ├── README.md │ └── demo.jpg ├── F.使用CE查找敌人和队友的骨骼信息 │ ├── README.md │ └── demo.jpg ├── G.C++实现inline hook │ ├── README.md │ └── inline_hook.hpp ├── H.inline hook Direct3D9 │ ├── README.md │ ├── demo.jpg │ ├── dll_main.cpp │ ├── do_cheats.hpp │ ├── help_func.hpp │ └── inline_hook.hpp ├── I.imgui + 内外挂 │ ├── README.md │ ├── demo.jpg │ ├── 内挂 │ │ ├── dll_main.cpp │ │ ├── do_cheats.hpp │ │ ├── help_func.hpp │ │ └── inline_hook.hpp │ └── 外挂 │ │ ├── main.cpp │ │ └── main.h ├── J.DrawIndexedPrimitive的透视实现 │ ├── README.md │ └── demo.jpg ├── K.内存模式查找 │ ├── README.md │ ├── csgo.txt │ ├── 源码 │ │ ├── csgo_cheats.hpp │ │ ├── direct3d9.hpp │ │ ├── help_func.hpp │ │ └── main.cpp │ └── 自己矩阵前内存特征.txt ├── L.完善外挂功能 │ ├── README.md │ ├── csgo_cheats.hpp │ ├── demo.jpg │ ├── direct3d9.hpp │ ├── help_func.hpp │ └── main.cpp ├── M.外部辉光 + 连跳 │ ├── README.md │ ├── demo.jpg │ ├── main.cpp │ └── offset.h ├── N.CSGO外部武器换肤 │ ├── README.md │ ├── demo.jpg │ ├── main.cpp │ ├── main.h │ └── skin.txt ├── O.加载驱动的完美方法 │ ├── README.md │ └── temp.png ├── P.CSGO注入小助手 │ ├── README.md │ ├── csgo_inject.exe │ └── main.cpp ├── Q.hvh陀螺自瞄 │ ├── README.md │ ├── address.hpp │ ├── bsp_parser.hpp │ ├── cheats.hpp │ ├── main.cpp │ ├── memory.hpp │ └── obfuscator.hpp ├── R.绘制人物骨骼 │ ├── README.md │ ├── cheats.hpp │ ├── demo.png │ ├── main.cpp │ └── overlay.hpp ├── README.md └── [无视频]一些有用小代码 │ ├── CSGO简单接口类 │ ├── README.md │ ├── address.hpp │ ├── convar.hpp │ ├── main.cpp │ ├── memory.hpp │ └── netvar.hpp │ ├── overlay类 │ ├── main.cpp │ └── overlay.hpp │ └── 获取网络上的CSGO地址和偏移 │ ├── README.md │ └── main.cpp ├── [教程] [本人] Grand Theft Auto V ├── GTAHaXUI │ ├── GTAHaXUI.exe │ ├── stat.txt │ └── stats.txt └── README.md └── [教程] [派大星] League of Legends (TM) Client └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Prerequisites 2 | *.d 3 | 4 | # Compiled Object files 5 | *.slo 6 | *.lo 7 | *.o 8 | *.obj 9 | 10 | # Precompiled Headers 11 | *.gch 12 | *.pch 13 | 14 | # Compiled Dynamic libraries 15 | *.so 16 | *.dylib 17 | *.dll 18 | 19 | # Fortran module files 20 | *.mod 21 | *.smod 22 | 23 | # Compiled Static libraries 24 | *.lai 25 | *.la 26 | *.a 27 | *.lib 28 | 29 | # Executables 30 | # *.exe 31 | *.out 32 | *.app 33 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 fengyihua 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /[工具] [本人] Bypass AC analytics games/README.md: -------------------------------------------------------------------------------- 1 | # 前言 2 | 3 | 我们想要做一款游戏的辅助,第一步就是要分析游戏,找到我们想要的数据地址 4 | 5 | 针对简单的和没有保护的游戏,我们也能使用简单的工具就能进行分析 6 | 7 | 但是,如果我们要面对的是大型的游戏,或者是网络游戏,那简单的工具就无法分析了 8 | 9 | 因为游戏会有反作弊系统进行保护,比较有名的反作弊系统有TP BE EAC等 10 | 11 | 它们或许使用内核回调函数或者挂钩相应函数,让我们普通工具无法访问游戏内存 12 | 13 | 难道就没有人搞一些能绕过上面这些反作弊保护的工具么?让广大码农方便一点点 14 | 15 | 好吧,为了自己的方便,也为了大家的方便,我就搞了几款工具,发放出来让大家方便一点 16 | 17 | ## 第一款 : ReClassEx Driver 18 | 19 | ## 第二款 : CrySearch Driver 20 | 21 | ## 第三款 : Cheat Engine Driver 22 | 23 | 这三款工具都是比较常用的工具了,所以我就修改这三款工具,让它们能绕过反作弊系统 24 | 25 | # 怎么用? 26 | 27 | 非常方便简单,打开工具后打开游戏,或者打开游戏后打开工具,顺序不重要的 28 | 29 | 打开后就选择游戏进行附加就行了 30 | 31 | 就算CE里面没有显示图标,照样能读取游戏的内存 32 | 33 | 就不像某些教程里面要修改游戏的保护驱动才能使用CE 34 | 35 | 想分析游戏就打开工具,不想分析了就关闭程序,就这么简单 36 | 37 | 但是我不确保调试游戏功能也能正常使用!!! 38 | 39 | # 什么原理? 40 | 41 | 其实很简单,主要就在三个函数 42 | 43 | 1. OpenProcess 44 | 45 | 2. ReadProcessMemory 46 | 47 | 3. WriteProcessMemory 48 | 49 | 我将这三个函数进行Hook操作,使用我自己修改的函数,也就是使用内核操作,就这么简单! 50 | 51 | 如果想要参考源码的话,可以去看看这个项目,你就会有所启发的 -> [access](https://github.com/btbd/access) 52 | 53 | # 后话 54 | 55 | 我提供的驱动蓝屏的几率是0.001%,那就是和反作弊驱动冲突造成的 56 | 57 | 我尝试分析pubg mobile的时候就是它那个反作弊驱动触发蓝屏,也是无语 58 | 59 | 驱动有签名了,是我使用泄露签字证书签的,可能会被一些安全软件判定为病毒文件 60 | 61 | 如果使用的人多的话还会被定位特征码的,所以分析游戏的时候要用小号,这应该不需要多说什么 62 | 63 | # 下载 64 | 65 | [ReClassEx Driver](https://wwx.lanzoux.com/itdCZipsoej) 66 | 67 | [CrySearch Driver](https://wwx.lanzoux.com/ibCqSipsreh) 68 | 69 | [Cheat Engine Driver](https://wwx.lanzoux.com/iPNzQipsw6j) 70 | [Cheat Engine Driver 2020.12.15](https://wwx.lanzoux.com/i1bCsjdsycb) 71 | 72 | # 祝你工作愉快 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | -------------------------------------------------------------------------------- /[教程] [15208240327] CrossFire/README.md: -------------------------------------------------------------------------------- 1 | ## 作者 : 15208240327 2 | ## 平台 : BiliBili 3 | ## 集数 : 8 4 | ## 游戏 : CrossFire 5 | 6 | [第一集](https://www.bilibili.com/video/BV1gT4y1g7Qo?p=1) 7 | [第二集](https://www.bilibili.com/video/BV1gT4y1g7Qo?p=2) 8 | [第三集](https://www.bilibili.com/video/BV1gT4y1g7Qo?p=3) 9 | [第四集](https://www.bilibili.com/video/BV1gT4y1g7Qo?p=4) 10 | [第五集](https://www.bilibili.com/video/BV1gT4y1g7Qo?p=5) 11 | [第六集](https://www.bilibili.com/video/BV1gT4y1g7Qo?p=6) 12 | [第七集](https://www.bilibili.com/video/BV1gT4y1g7Qo?p=7) 13 | [第八集](https://www.bilibili.com/video/BV1gT4y1g7Qo?p=8) 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /[教程] [Dick丶迷恋] CrossFire/README.md: -------------------------------------------------------------------------------- 1 | ## 作者 : Dick丶迷恋 2 | ## 平台 : BiliBili 3 | ## 集数 : 7 4 | ## 游戏 : CrossFire 5 | 6 | [第一集](https://www.bilibili.com/video/BV1dV411R7kF?t=1) 7 | [第二集](https://www.bilibili.com/video/BV1dV411R7kF?p=2) 8 | [第三集](https://www.bilibili.com/video/BV1dV411R7kF?p=3) 9 | [第四集](https://www.bilibili.com/video/BV1dV411R7kF?p=4) 10 | [第五集](https://www.bilibili.com/video/BV1dV411R7kF?p=5) 11 | [第六集](https://www.bilibili.com/video/BV1dV411R7kF?p=6) 12 | [第七集](https://www.bilibili.com/video/BV1dV411R7kF?p=7) 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /[教程] [Zer0Mem0ry] Counterstrike Global Offensive/README.md: -------------------------------------------------------------------------------- 1 | # [国外教程] 2 | 3 | 作者 : Zer0Mem0ry 4 | 5 | 平台 : YouTube 6 | 7 | 语言 : C++ 8 | 9 | 教程 : :smile: 10 | 11 | [C/C++ — Manual Dll Injection | Manual Mapping](https://youtu.be/X393OZqSPUk) 12 | 13 | [Dll Injection Explained - how it works + source code](https://youtu.be/IBwoVUR1gt8) 14 | 15 | [How Function Hooking / Detouring Works](https://youtu.be/b1ahj347pDc) 16 | 17 | [C/C++ Memory Hacking — Function Hooking / Detouring](https://youtu.be/JixHeLgQwHM) 18 | 19 | [C/C++ Kernel Mode / Game Hacking — CS:GO Undetectable External Bunnyhop! (VAC Bypass)](https://youtu.be/sJdBtPosWQs) 20 | 21 | [C/C++ Kernel Mode — Communcation From User space To Kernel Space (IOCTL)](https://youtu.be/1JWNrAk-Kx0) 22 | 23 | [C/C++ Cryptography — Simple CRC32 Brute Force Cracking Algorithm](https://youtu.be/yz4n3c_H1xk) 24 | 25 | [C/C++ Kernel Mode — Read/Write Process' Memory From Driver](https://youtu.be/1HVJqyTOL2Q) 26 | 27 | [Reverse-Engineering — Crack / Patch Program | Bypass Security Checks (IDA Cracking Part 1)](https://youtu.be/3d5Ler_8cHg) 28 | 29 | [Reverse-Engineering — Cracking a Program In Practice (IDA Cracking Part 2)](https://youtu.be/wq6fk5oDbVg) 30 | 31 | [C/C++ Prank Program — Screen Melting Effect](https://youtu.be/VrBxr0PD4xo) 32 | 33 | [C/C++ Disable Address Space Layout Randomization (ASLR) & DEP Of Another Program](https://youtu.be/9nq0RHfrAi4) 34 | 35 | [C/C++ Game Hacking — Simple Wallhack (CS:GO)](https://youtu.be/JPlAqPb4izs) 36 | 37 | [C/C++ Memory Hacking — Powerful Virus | Overwrite MBR](https://youtu.be/2Gfmw_6sYz4) 38 | 39 | [C/C++ Malware — Simple Keylogger | Log Keystrokes](https://youtu.be/8X2UOfkOuZY) 40 | 41 | [C/C++ Game Hacking — Simple Triggerbot (CS:GO)](https://youtu.be/QFWqjpceiuw) 42 | 43 | [Reverse Engineering — Decompiling A Virus To C Source Code (IDA Pro)](https://youtu.be/gYkDcUO9otQ) 44 | 45 | [C/C++ Game Hacking – Perfect Bunny Hop (CS:GO)](https://youtu.be/q78Fh1mrOU4) 46 | 47 | [C/C++ Memory Hacking — Self Modifying Code | Encrypt Memory At Runtime](https://youtu.be/MBvdWULRBU8) 48 | 49 | [C/C++ Memory Hacking — Code Cave | Inject function to a process](https://youtu.be/0NwlWaT9NEY) 50 | -------------------------------------------------------------------------------- /[教程] [atiksoftware] pubg mobile/README.md: -------------------------------------------------------------------------------- 1 | ## 作者 : atiksoftware 2 | ## 平台 : Youtube 3 | ## 集数 : 10 4 | ## 游戏 : pubg mobile 5 | 6 | [第一集](https://www.youtube.com/watch?v=ya0rbAwFKdY) 7 | [第二集](https://www.youtube.com/watch?v=8DxZExFLges) 8 | [第三集](https://www.youtube.com/watch?v=mukNNm5MxJE) 9 | [第四集](https://www.youtube.com/watch?v=nVuDz1hbYEs) 10 | [第五集](https://www.youtube.com/watch?v=uJiurAlhsWw) 11 | [第六集](https://www.youtube.com/watch?v=UI6xyrmGtQ4) 12 | [第七集](https://www.youtube.com/watch?v=V3bd7XEfW68) 13 | [第八集](https://www.youtube.com/watch?v=TpCXqkRH08A) 14 | [第九集](https://www.youtube.com/watch?v=RYxih0Phqgg) 15 | [第十集](https://www.youtube.com/watch?v=RXzzC8rI6H4) 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Blackbone [简单的封装]/blackbone_interface.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/Blackbone [简单的封装]/blackbone_interface.hpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/CallBack [回调通信]/README.md: -------------------------------------------------------------------------------- 1 | # 等待更新... 2 | 3 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Dispatch [分发通信]/README.md: -------------------------------------------------------------------------------- 1 | # 等待更新... 2 | 3 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Ioctl [输入输出控制通信]/Driver_IOCTL/Driver_IOCTL/Driver_IOCTL.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; Driver_IOCTL.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class=System 8 | ClassGuid={4d36e97d-e325-11ce-bfc1-08002be10318} 9 | Provider=%ManufacturerName% 10 | DriverVer= 11 | CatalogFile=Driver_IOCTL.cat 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" ;TODO: Replace with your manufacturer name 31 | ClassName="" 32 | DiskName="Driver_IOCTL Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Ioctl [输入输出控制通信]/Driver_IOCTL/Driver_IOCTL/Driver_IOCTL.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Source Files 29 | 30 | 31 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Ioctl [输入输出控制通信]/Driver_IOCTL/Driver_IOCTL/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/Ioctl [输入输出控制通信]/Driver_IOCTL/Driver_IOCTL/main.c -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Ioctl [输入输出控制通信]/Driver_IOCTL/User_IOCTL/User_IOCTL.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;ipp;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 源文件 20 | 21 | 22 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Ioctl [输入输出控制通信]/Driver_IOCTL/User_IOCTL/User_IOCTL.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Ioctl [输入输出控制通信]/Driver_IOCTL/User_IOCTL/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/Ioctl [输入输出控制通信]/Driver_IOCTL/User_IOCTL/main.cpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Ioctl [输入输出控制通信]/README.md: -------------------------------------------------------------------------------- 1 | 2 | [百度网盘 提取码-mmup](https://pan.baidu.com/s/1JjziceV5lYm_n2FkqhZZNQ) 3 | 4 | [在线播放](https://www.ixigua.com/6855645091101573645/?utm_source=xiguastudio) 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Kernel-Bridge [简单的封装]/DriversUtils.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #define IOCTL(Code, Method) (CTL_CODE(0x8000, (Code), Method, FILE_ANY_ACCESS)) 4 | #define EXTRACT_CTL_CODE(Ioctl) ((unsigned short)(((Ioctl) & 0b0011111111111100) >> 2)) 5 | #define EXTRACT_CTL_METHOD(Ioctl) ((unsigned short)((Ioctl) & 0b11)) 6 | 7 | #define CTL_BASE (0x800) 8 | 9 | BOOL InstallDriver(LPCWSTR FilePath, LPCWSTR DriverName, DWORD DriverType = SERVICE_KERNEL_DRIVER); 10 | BOOL InstallMinifilter(LPCWSTR FilePath, LPCWSTR DriverName, LPCWSTR Altitude); 11 | BOOL DeleteDriver(LPCWSTR DriverName); 12 | 13 | HANDLE OpenDevice(LPCWSTR DeviceName); 14 | 15 | BOOL SendIOCTL( 16 | IN HANDLE hDevice, 17 | IN DWORD Ioctl, 18 | IN PVOID InputBuffer, 19 | IN ULONG InputBufferSize, 20 | IN PVOID OutputBuffer, 21 | IN ULONG OutputBufferSize, 22 | OPTIONAL OUT PDWORD BytesReturned = NULL, 23 | OPTIONAL IN DWORD Method = METHOD_NEITHER 24 | ); 25 | 26 | BOOL SendRawIOCTL( 27 | IN HANDLE hDevice, 28 | IN DWORD Ioctl, 29 | IN PVOID InputBuffer, 30 | IN ULONG InputBufferSize, 31 | IN PVOID OutputBuffer, 32 | IN ULONG OutputBufferSize, 33 | OPTIONAL OUT PDWORD BytesReturned = NULL 34 | ); 35 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Kernel-Bridge [简单的封装]/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/Kernel-Bridge [简单的封装]/Utils.cpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Kernel-Bridge [简单的封装]/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/Kernel-Bridge [简单的封装]/Utils.h -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Mdl [读取内存]/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/Mdl [读取内存]/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Mdl [读取内存]/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/Mdl [读取内存]/Driver.h -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Mdl [读取内存]/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/Mdl [读取内存]/main.cpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/MiProcessLoaderEntry [隐藏驱动]/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 截图展示 3 |

4 | 5 |

6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/MiProcessLoaderEntry [隐藏驱动]/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/MiProcessLoaderEntry [隐藏驱动]/demo.png -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/MiProcessLoaderEntry [隐藏驱动]/v0.5/HideDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/MiProcessLoaderEntry [隐藏驱动]/v0.5/HideDriver.c -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/MiProcessLoaderEntry [隐藏驱动]/v0.5/HideDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/MiProcessLoaderEntry [隐藏驱动]/v0.5/HideDriver.h -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/MiProcessLoaderEntry [隐藏驱动]/v1.0/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/MiProcessLoaderEntry [隐藏驱动]/v1.0/entry.cpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/MiProcessLoaderEntry [隐藏驱动]/v1.0/entry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/MiProcessLoaderEntry [隐藏驱动]/v1.0/entry.hpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Name Pipe [命名管道通信]/README.md: -------------------------------------------------------------------------------- 1 | # 等待更新... 2 | 3 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Share Memory [共享内存通信]/README.md: -------------------------------------------------------------------------------- 1 | # 等待更新... 2 | 3 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Socket [套接字通信]/README.md: -------------------------------------------------------------------------------- 1 | # 等待更新... 2 | 3 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Trace Cleaner [清除跟踪]/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/Trace Cleaner [清除跟踪]/Main.cpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Trace Cleaner [清除跟踪]/clean.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/Trace Cleaner [清除跟踪]/clean.hpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Trace Cleaner [清除跟踪]/v1.0.0/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/Trace Cleaner [清除跟踪]/v1.0.0/main.c -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/Trace Cleaner [清除跟踪]/v1.0.0/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/Trace Cleaner [清除跟踪]/v1.0.0/main.h -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/hooks.cpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/hooks.hpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/klhk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/klhk.cpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/klhk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/klhk.hpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/klhk.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/klhk.sys -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/main.cpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/module.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/module.cpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/module.hpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/ssdt_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/ssdt_index.hpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/util.cpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/util.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Win10 Kernel Driver/klhk ssdt hook [内核挂钩]/util.hpp -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/super framework [不错的框架]/README.md: -------------------------------------------------------------------------------- 1 | ## [源地址](https://github.com/alxbrn/r6s-external-nuklear-hook) 2 | ## 我主要觉得这个框架很不错 3 | ## clear piddb简洁明了,默认清除iqvw64e.sys驱动痕迹 4 | ## hook住内核的NtOpenCompositionSurfaceSectionInfo函数与应用层进行通信 5 | ## 例子是彩虹六号的 -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/super framework [不错的框架]/kernelmode/kernelmode.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/super framework [不错的框架]/kernelmode/kernelmode.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | DbgengKernelDebugger 5 | 6 | 7 | Off 8 | 9 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/super framework [不错的框架]/usermode/imports.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | #include 4 | #include 5 | #include 6 | #include 7 | #include 8 | #include 9 | #include "Vectors.h" 10 | #include "offsets.h" 11 | #include 12 | #include 13 | #include 14 | #include 15 | #include 16 | #include 17 | #include "driver.h" 18 | 19 | #include "nuklear/nuklear_d3d11.h" 20 | #include "xor.h" 21 | #include "sdk.h" -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/super framework [不错的框架]/usermode/nuklear/nuklear_d3d11.hlsl: -------------------------------------------------------------------------------- 1 | // 2 | cbuffer buffer0 : register(b0) 3 | { 4 | float4x4 ProjectionMatrix; 5 | }; 6 | 7 | sampler sampler0 : register(s0); 8 | Texture2D texture0 : register(t0); 9 | 10 | struct VS_INPUT 11 | { 12 | float2 pos : POSITION; 13 | float4 col : COLOR0; 14 | float2 uv : TEXCOORD0; 15 | }; 16 | 17 | struct PS_INPUT 18 | { 19 | float4 pos : SV_POSITION; 20 | float4 col : COLOR0; 21 | float2 uv : TEXCOORD0; 22 | }; 23 | 24 | PS_INPUT vs(VS_INPUT input) 25 | { 26 | PS_INPUT output; 27 | output.pos = mul(ProjectionMatrix, float4(input.pos.xy, 0.f, 1.f)); 28 | output.col = input.col; 29 | output.uv = input.uv; 30 | return output; 31 | } 32 | 33 | float4 ps(PS_INPUT input) : SV_Target 34 | { 35 | return input.col * texture0.Sample(sampler0, input.uv); 36 | } 37 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/super framework [不错的框架]/usermode/offsets.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #define OFFSET_GAME_MANAGER 0x51cb748 3 | #define OFFSET_GLOW_MANAGER 0x5E3F4E8 4 | #define OFFSET_STATUS_MANAGER 0x51cb6e0 5 | #define OFFSET_NETWORK_MANAGER 0x51b8958 6 | #define OFFSET_GAME_Renderer 0x51b8988 7 | #define OFFSET_PLAYER_MANAGER 0x51B87B0 8 | #define OFFSET_ROUNDMANAGER 0x51b8820 9 | #define OFFSET_PROFILE_MANAGER 0x51b87b0 10 | #define OFFSET_FOVMANAGER 0x51cb730 11 | 12 | #define OFFSET_UNLOCKS 0x132F4C5 13 | 14 | #define OFFSET_GAME_MANAGER_ENTITY_COUNT 0x1D0 15 | #define OFFSET_GAME_MANAGER_ENTITY_LIST 0x1C8 16 | #define OFFSET_STATUS_MANAGER_LOCALENTITY 0x28 17 | #define OFFSET_STATUS_MANAGER_CONTAINER 0x370 18 | 19 | #define OFFSET_ENTITY_PAWN 0x20 20 | #define OFFSET_MAINCOMPONENT_ESPCHAIN 0x78 21 | #define OFFSET_ESPCHAIN_WRITE1 0x532 22 | #define OFFSET_ESPCHAIN_WRITE2 0x534 23 | 24 | #define OFFSET_ESPCHAIN_CHECK 0x531 25 | 26 | #define OFFSET_ENTITY_REPLICATION 0xA8 27 | #define OFFSET_ENTITY_REPLICATION_TEAM 0x19E 28 | 29 | #define OFFSET_CAMERA_MANAGER 0x51A6168 30 | #define OFFSET_CAMERA_ENGINELINK 0x120 31 | #define OFFSET_CAMERA_ENGINE 0x1D8 32 | #define OFFSET_CAMERA_ENGINE_CAMERA 0x08 33 | 34 | #define OFFSET_CAMERA_VIEWFOVY 0x124 35 | #define OFFSET_CAMERA_VIEWFOVX 0x110 36 | #define OFFSET_CAMERA_VIEWFORWARD 0xF0 37 | #define OFFSET_CAMERA_VIEWUP 0xE0 38 | #define OFFSET_CAMERA_VIEWRIGHT 0xD0 39 | #define OFFSET_CAMERA_VIEWTRANSLATION 0x100 40 | 41 | #define OFFSET_ENTITY_HEAD 0x180 42 | #define OFFSET_ENTITY_FEET 0x1D0 43 | 44 | #define OFFSET_ENTITY_SKELETON 0x20 45 | #define OFFSET_SKELETON_POSITION 0x6c0 46 | #define OFFSET_SKELETON_HEADPOSITION 0x660 47 | #define OFFSET_ENTITYPAWN_FEET 0x6c0 48 | 49 | #define OFFSET_ENTITY_COMPONENT 0xD8 50 | #define OFFSET_ENTITY_COMPONENT_LIST 0x8 51 | #define ENTITY_MARKER_VT_OFFSET 0x37BBA90 52 | #define ENTITY_MARKER_ENABLED_OFFSET 0x530 53 | 54 | #define OFFSET_TRIGGERBOT 0x51CB748 55 | #define OFFSET_TRIGGERBOT1 0x50 56 | #define OFFSET_TRIGGERBOT2 0x80 57 | #define OFFSET_TRIGGERBOT3 0x58 58 | #define OFFSET_TRIGGERBOT4 0x418 59 | #define OFFSET_TRIGGERBOT5 0x304 -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/super framework [不错的框架]/usermode/usermode.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/super framework [不错的框架]/usermode/usermode.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /[教程] [收集] Win10 Kernel Driver/super framework [不错的框架]/usermode/vectors.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | #include 4 | 5 | #define M_PI 3.14159265358979323846264338327950288419716939937510 6 | 7 | //Vector2 8 | class Vector2 9 | { 10 | public: 11 | Vector2() : x(0.f), y(0.f) 12 | { 13 | 14 | } 15 | 16 | Vector2(float _x, float _y) : x(_x), y(_y) 17 | { 18 | 19 | } 20 | ~Vector2() 21 | { 22 | 23 | } 24 | 25 | float x; 26 | float y; 27 | }; 28 | 29 | //Vector3 30 | class Vector3 31 | { 32 | public: 33 | Vector3() : x(0.f), y(0.f), z(0.f) 34 | { 35 | 36 | } 37 | 38 | Vector3(float _x, float _y, float _z) : x(_x), y(_y), z(_z) 39 | { 40 | 41 | } 42 | ~Vector3() 43 | { 44 | 45 | } 46 | 47 | float x; 48 | float y; 49 | float z; 50 | 51 | inline float Dot(Vector3 v) 52 | { 53 | return x * v.x + y * v.y + z * v.z; 54 | } 55 | 56 | inline float Distance(Vector3 v) 57 | { 58 | return float(sqrtf(powf(v.x - x, 2.0) + powf(v.y - y, 2.0) + powf(v.z - z, 2.0))); 59 | } 60 | inline float Length() 61 | { 62 | float ls = x * x + y * y + z * z; 63 | return sqrt(ls); 64 | } 65 | 66 | Vector3 operator+(Vector3 v) 67 | { 68 | return Vector3(x + v.x, y + v.y, z + v.z); 69 | } 70 | 71 | Vector3 operator-(Vector3 v) 72 | { 73 | return Vector3(x - v.x, y - v.y, z - v.z); 74 | } 75 | 76 | Vector3 operator*(float number) const { 77 | return Vector3(x * number, y * number, z * number); 78 | } 79 | 80 | Vector3& operator-=( const Vector3& v ) 81 | { 82 | x -= v.x; 83 | y -= v.y; 84 | z -= v.z; 85 | 86 | return *this; 87 | } 88 | 89 | 90 | void clamp() 91 | { 92 | if ( x > 75.f ) x = 75.f; 93 | else if (x < -75.f ) x = -75.f; 94 | if ( z < -180 ) z += 360.0f; 95 | else if ( z > 180 ) z -= 360.0f; 96 | 97 | y = 0.f; 98 | } 99 | 100 | }; 101 | 102 | //Vector4 103 | class Vector4 104 | { 105 | public: 106 | Vector4() : x(0.f), y(0.f), z(0.f), w(0.f) 107 | { 108 | 109 | } 110 | 111 | Vector4(float _x, float _y, float _z, float _w) : x(_x), y(_y), z(_z), w(_w) 112 | { 113 | 114 | } 115 | ~Vector4() 116 | { 117 | 118 | } 119 | 120 | float x; 121 | float y; 122 | float z; 123 | float w; 124 | }; 125 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/Minifilter文件监控/Minifilter_FileMonitor_Test/Minifilter_FileMonitor_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/Minifilter文件监控/Minifilter_FileMonitor_Test/Minifilter_FileMonitor_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/Minifilter文件监控/Minifilter_FileMonitor_Test/Minifilter_FileMonitor_Test/Minifilter_FileMonitor_Test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/Minifilter文件监控/Minifilter_FileMonitor_Test/Minifilter_FileMonitor_Test/Minifilter_FileMonitor_Test.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/Minifilter文件监控/Minifilter_FileMonitor_Test/Minifilter_FileMonitor_Test/Minifilter_FileMonitor_Test.rc: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include 4 | 5 | #define VER_FILETYPE VFT_DRV 6 | #define VER_FILESUBTYPE VFT2_DRV_SYSTEM 7 | #define VER_FILEDESCRIPTION_STR "Minifilter_FileMonitor_Test Filter Driver" 8 | #define VER_INTERNALNAME_STR "Minifilter_FileMonitor_Test.sys" 9 | 10 | #include "common.ver" 11 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/Minifilter文件监控/Minifilter_FileMonitor_Test/Minifilter_FileMonitor_Test/Minifilter_FileMonitor_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Source Files 29 | 30 | 31 | 32 | 33 | Resource Files 34 | 35 | 36 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/Minifilter文件监控/Minifilter_FileMonitor_Test/Win7Debug/start.bat: -------------------------------------------------------------------------------- 1 | @echo on 2 | net start Minifilter_FileMonitor_Test 3 | pause 4 | net stop Minifilter_FileMonitor_Test 5 | pause 6 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/Minifilter文件监控/Minifilter_FileMonitor_Test/x64/Win8.1Debug/start.bat: -------------------------------------------------------------------------------- 1 | @echo on 2 | net start Minifilter_FileMonitor_Test 3 | pause 4 | net stop Minifilter_FileMonitor_Test 5 | pause 6 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/README.md: -------------------------------------------------------------------------------- 1 | ## 说明 2 | 3 | 这里的教程是《WINDOWS黑客编程技术详解》一书中的配套源码 4 | 5 | 我觉得在一定情况下你们会需要这些教程的 6 | 7 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; GetSSDTFunctionIndex_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="GetSSDTFunctionIndex_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test/SSDTFunctionIndex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test/SSDTFunctionIndex.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test/SSDTFunctionIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/GetSSDTFunctionIndex_Test/GetSSDTFunctionIndex_Test/SSDTFunctionIndex.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_32_Test/SSDTFunction_32_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_32_Test/SSDTFunction_32_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_32_Test/SSDTFunction_32_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_32_Test/SSDTFunction_32_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_32_Test/SSDTFunction_32_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_32_Test/SSDTFunction_32_Test/SSDTFunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_32_Test/SSDTFunction_32_Test/SSDTFunction.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_32_Test/SSDTFunction_32_Test/SSDTFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_32_Test/SSDTFunction_32_Test/SSDTFunction.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_32_Test/SSDTFunction_32_Test/SSDTFunction_32_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; SSDTFunction_32_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="SSDTFunction_32_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_32_Test/SSDTFunction_32_Test/SSDTFunction_32_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_32_Test/SSDTFunction_32_Test/SSDTFunction_32_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_64_Test/SSDTFunction_64_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_64_Test/SSDTFunction_64_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_64_Test/SSDTFunction_64_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_64_Test/SSDTFunction_64_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_64_Test/SSDTFunction_64_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_64_Test/SSDTFunction_64_Test/SSDTFunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_64_Test/SSDTFunction_64_Test/SSDTFunction.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_64_Test/SSDTFunction_64_Test/SSDTFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_64_Test/SSDTFunction_64_Test/SSDTFunction.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_64_Test/SSDTFunction_64_Test/SSDTFunction_64_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; SSDTFunction_64_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="SSDTFunction_64_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_64_Test/SSDTFunction_64_Test/SSDTFunction_64_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTFunction_64_Test/SSDTFunction_64_Test/SSDTFunction_64_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | TestSign 8 | 9 | 10 | Off 11 | 12 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test/Driver.c: -------------------------------------------------------------------------------- 1 | #include "SSDTHook.h" 2 | #include "Driver.h" 3 | 4 | 5 | NTSTATUS DriverEntry(PDRIVER_OBJECT pDriverObject, PUNICODE_STRING pRegPath) 6 | { 7 | DbgPrint("Enter DriverEntry\n"); 8 | 9 | NTSTATUS status = STATUS_SUCCESS; 10 | pDriverObject->DriverUnload = DriverUnload; 11 | for (ULONG i = 0; i < IRP_MJ_MAXIMUM_FUNCTION; i++) 12 | { 13 | pDriverObject->MajorFunction[i] = DriverDefaultHandle; 14 | } 15 | 16 | // SSDT Hook 17 | SSDTHook(); 18 | 19 | DbgPrint("Leave DriverEntry\n"); 20 | return status; 21 | } 22 | 23 | 24 | 25 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject) 26 | { 27 | // SSDT Unhook 28 | SSDTUnhook(); 29 | } 30 | 31 | 32 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp) 33 | { 34 | NTSTATUS status = STATUS_SUCCESS; 35 | pIrp->IoStatus.Status = status; 36 | pIrp->IoStatus.Information = 0; 37 | IoCompleteRequest(pIrp, IO_NO_INCREMENT); 38 | 39 | return status; 40 | } -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test/SSDTFunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test/SSDTFunction.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test/SSDTFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test/SSDTFunction.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; SSDTHook_ZwQueryDirectoryFile_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="SSDTHook_ZwQueryDirectoryFile_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | Header Files 35 | 36 | 37 | 38 | 39 | Source Files 40 | 41 | 42 | Source Files 43 | 44 | 45 | Source Files 46 | 47 | 48 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/SSDT HOOK/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test/SSDTHook_ZwQueryDirectoryFile_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/TDI网络通信/ChatServer.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/TDI网络通信/ChatServer.7z -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/TDI网络通信/TdiCommunicate_Test/TdiCommunicate_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/TDI网络通信/TdiCommunicate_Test/TdiCommunicate_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/TDI网络通信/TdiCommunicate_Test/TdiCommunicate_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/TDI网络通信/TdiCommunicate_Test/TdiCommunicate_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/TDI网络通信/TdiCommunicate_Test/TdiCommunicate_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVEr_H_ 2 | #define _DRIVEr_H_ 3 | 4 | #include 5 | 6 | #include 7 | 8 | 9 | #define DEV_NAME L"\\Device\\MY_TDI_DEV_NAME" 10 | #define SYM_NAME L"\\DosDevices\\MY_TDI_SYM_NAME" 11 | 12 | 13 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 14 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 15 | 16 | NTSTATUS CreateDevice(PDRIVER_OBJECT pDriverObject); 17 | 18 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/TDI网络通信/TdiCommunicate_Test/TdiCommunicate_Test/TdiCommunicate_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; TdiCommunicate_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="TdiCommunicate_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/TDI网络通信/TdiCommunicate_Test/TdiCommunicate_Test/TdiCommunicate_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/TDI网络通信/TdiCommunicate_Test/TdiCommunicate_Test/TdiTcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/TDI网络通信/TdiCommunicate_Test/TdiCommunicate_Test/TdiTcp.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/TDI网络通信/TdiCommunicate_Test/TdiCommunicate_Test/TdiTcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/TDI网络通信/TdiCommunicate_Test/TdiCommunicate_Test/TdiTcp.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/WFP网络监控/WFP_Network_Test/WFP_Network_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/WFP网络监控/WFP_Network_Test/WFP_Network_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/WFP网络监控/WFP_Network_Test/WFP_Network_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/WFP网络监控/WFP_Network_Test/WFP_Network_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/WFP网络监控/WFP_Network_Test/WFP_Network_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | #define DEV_NAME L"\\Device\\MY_WFP_DEV_NAME" 9 | #define SYM_NAME L"\\DosDevices\\MY_WFP_SYM_NAME" 10 | 11 | 12 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 13 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 14 | NTSTATUS CreateDevice(PDRIVER_OBJECT pDriverObject); 15 | 16 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/WFP网络监控/WFP_Network_Test/WFP_Network_Test/WFP_Network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/WFP网络监控/WFP_Network_Test/WFP_Network_Test/WFP_Network.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/WFP网络监控/WFP_Network_Test/WFP_Network_Test/WFP_Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/WFP网络监控/WFP_Network_Test/WFP_Network_Test/WFP_Network.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/WFP网络监控/WFP_Network_Test/WFP_Network_Test/WFP_Network_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; WFP_Network_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="WFP_Network_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/WFP网络监控/WFP_Network_Test/WFP_Network_Test/WFP_Network_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/WFP网络监控/WFP_Network_Test/WFP_Network_Test/WFP_Network_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反Minifilter文件监控/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反Minifilter文件监控/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反Minifilter文件监控/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反Minifilter文件监控/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反Minifilter文件监控/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反Minifilter文件监控/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test/EnumRemove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反Minifilter文件监控/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test/EnumRemove.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反Minifilter文件监控/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test/EnumRemove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反Minifilter文件监控/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test/EnumRemove.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反Minifilter文件监控/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; Minifilter_Enum_Remove_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="Minifilter_Enum_Remove_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反Minifilter文件监控/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反Minifilter文件监控/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test/Minifilter_Enum_Remove_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反对象监控/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反对象监控/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反对象监控/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反对象监控/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反对象监控/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反对象监控/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test/EnumRemove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反对象监控/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test/EnumRemove.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反对象监控/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test/EnumRemove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反对象监控/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test/EnumRemove.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反对象监控/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; ObRegisterCallbacks_Enum_Remove_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="ObRegisterCallbacks_Enum_Remove_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反对象监控/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反对象监控/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test/ObRegisterCallbacks_Enum_Remove_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反模块加载监控/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反模块加载监控/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反模块加载监控/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反模块加载监控/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反模块加载监控/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反模块加载监控/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/EnumRemove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反模块加载监控/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/EnumRemove.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反模块加载监控/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/EnumRemove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反模块加载监控/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/EnumRemove.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反模块加载监控/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; PsSetLoadImageNotifyRoutine_Enum_Remove_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="PsSetLoadImageNotifyRoutine_Enum_Remove_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反模块加载监控/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反模块加载监控/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test/PsSetLoadImageNotifyRoutine_Enum_Remove_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反注册表监控/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反注册表监控/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反注册表监控/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; CmRegisterCallback_Enum_Remove_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="CmRegisterCallback_Enum_Remove_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反注册表监控/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反注册表监控/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反注册表监控/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反注册表监控/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反注册表监控/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反注册表监控/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test/EnumRemove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反注册表监控/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test/EnumRemove.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反注册表监控/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test/EnumRemove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反注册表监控/CmRegisterCallback_Enum_Remove_Test/CmRegisterCallback_Enum_Remove_Test/EnumRemove.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反线程创建监控/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反线程创建监控/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反线程创建监控/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反线程创建监控/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反线程创建监控/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反线程创建监控/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/EnumRemove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反线程创建监控/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/EnumRemove.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反线程创建监控/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/EnumRemove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反线程创建监控/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/EnumRemove.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反线程创建监控/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; PsSetCreateThreadNotifyRoutine_Enum_Remove_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="PsSetCreateThreadNotifyRoutine_Enum_Remove_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反线程创建监控/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反线程创建监控/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test/PsSetCreateThreadNotifyRoutine_Enum_Remove_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反进程创建监控/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反进程创建监控/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反进程创建监控/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反进程创建监控/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反进程创建监控/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反进程创建监控/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/EnumRemove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反进程创建监控/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/EnumRemove.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反进程创建监控/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/EnumRemove.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/反进程创建监控/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/EnumRemove.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反进程创建监控/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; PsSetCreateProcessNotifyRoutine_Enum_Remove_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="PsSetCreateProcessNotifyRoutine_Enum_Remove_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/反进程创建监控/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test/PsSetCreateProcessNotifyRoutine_Enum_Remove_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/对象监控/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/对象监控/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/对象监控/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/对象监控/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/对象监控/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/对象监控/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test/NotifyRoutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/对象监控/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test/NotifyRoutine.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/对象监控/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test/NotifyRoutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/对象监控/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test/NotifyRoutine.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/对象监控/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; ObRegisterCallbacks_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="ObRegisterCallbacks_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/对象监控/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/对象监控/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test/ObRegisterCallbacks_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/强制结束进程/ForceKillProcess_Test/ForceKillProcess_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/强制结束进程/ForceKillProcess_Test/ForceKillProcess_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/强制结束进程/ForceKillProcess_Test/ForceKillProcess_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/强制结束进程/ForceKillProcess_Test/ForceKillProcess_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/强制结束进程/ForceKillProcess_Test/ForceKillProcess_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/强制结束进程/ForceKillProcess_Test/ForceKillProcess_Test/ForceKillProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/强制结束进程/ForceKillProcess_Test/ForceKillProcess_Test/ForceKillProcess.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/强制结束进程/ForceKillProcess_Test/ForceKillProcess_Test/ForceKillProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/强制结束进程/ForceKillProcess_Test/ForceKillProcess_Test/ForceKillProcess.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/强制结束进程/ForceKillProcess_Test/ForceKillProcess_Test/ForceKillProcess_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; ForceKillProcess_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="ForceKillProcess_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/强制结束进程/ForceKillProcess_Test/ForceKillProcess_Test/ForceKillProcess_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | #define DEV_NAME L"\\Device\\IRP_FILE_DEV_NAME" 9 | #define SYM_NAME L"\\DosDevices\\IRP_FILE_SYM_NAME" 10 | #define IOCTL_TEST CTL_CODE(FILE_DEVICE_UNKNOWN, 0x800, METHOD_BUFFERED, FILE_ANY_ACCESS) 11 | 12 | 13 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 14 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 15 | NTSTATUS DriverControlHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 16 | NTSTATUS CreateDevice(PDRIVER_OBJECT pDriverObject); 17 | 18 | 19 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test/FileProtect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test/FileProtect.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test/FileProtect.h: -------------------------------------------------------------------------------- 1 | #ifndef _FILE_PROTECT_H_ 2 | #define _FILE_PROTECT_H_ 3 | 4 | 5 | #include "IrpFile.h" 6 | 7 | 8 | PFILE_OBJECT ProtectFile(UNICODE_STRING ustrFileName); 9 | BOOLEAN UnprotectFile(PFILE_OBJECT pFileObject); 10 | 11 | 12 | 13 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test/IrpFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test/IrpFile.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test/IrpFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test/IrpFile.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test/IrpFileProtect_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; IrpFileProtect_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="IrpFileProtect_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test/IrpFileProtect_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | Header Files 35 | 36 | 37 | 38 | 39 | Source Files 40 | 41 | 42 | Source Files 43 | 44 | 45 | Source Files 46 | 47 | 48 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件保护/IrpFileProtect_Test/IrpFileProtect_Test/IrpFileProtect_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | #define DEV_NAME L"\\Device\\IRP_FILE_DEV_NAME" 9 | #define SYM_NAME L"\\DosDevices\\IRP_FILE_SYM_NAME" 10 | #define IOCTL_TEST CTL_CODE(FILE_DEVICE_UNKNOWN, 0x800, METHOD_BUFFERED, FILE_ANY_ACCESS) 11 | 12 | 13 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 14 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 15 | NTSTATUS DriverControlHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 16 | NTSTATUS CreateDevice(PDRIVER_OBJECT pDriverObject); 17 | 18 | 19 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/ForceDelete.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/ForceDelete.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/ForceDelete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/ForceDelete.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/IrpFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/IrpFile.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/IrpFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/IrpFile.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/IrpFileForceDelete_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; IrpFileForceDelete_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="IrpFileForceDelete_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/IrpFileForceDelete_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | Header Files 35 | 36 | 37 | 38 | 39 | Source Files 40 | 41 | 42 | Source Files 43 | 44 | 45 | Source Files 46 | 47 | 48 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/文件强删/IrpFileForceDelete_Test/IrpFileForceDelete_Test/IrpFileForceDelete_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | 16 | Off 17 | 18 | 19 | Off 20 | 21 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/模块加载监控/PsSetLoadImageNotifyRoutine_Test/PsSetLoadImageNotifyRoutine_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/模块加载监控/PsSetLoadImageNotifyRoutine_Test/PsSetLoadImageNotifyRoutine_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/模块加载监控/PsSetLoadImageNotifyRoutine_Test/PsSetLoadImageNotifyRoutine_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | #define DEV_NAME L"\\Device\\DEV_NAME" 9 | #define SYM_NAME L"\\DosDevices\\SYM_NAME" 10 | #define IOCTL_TEST CTL_CODE(FILE_DEVICE_UNKNOWN, 0x800, METHOD_BUFFERED, FILE_ANY_ACCESS) 11 | 12 | 13 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 14 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 15 | NTSTATUS DriverControlHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 16 | NTSTATUS CreateDevice(PDRIVER_OBJECT pDriverObject); 17 | 18 | 19 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/模块加载监控/PsSetLoadImageNotifyRoutine_Test/PsSetLoadImageNotifyRoutine_Test/LoadImageNotify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/模块加载监控/PsSetLoadImageNotifyRoutine_Test/PsSetLoadImageNotifyRoutine_Test/LoadImageNotify.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/模块加载监控/PsSetLoadImageNotifyRoutine_Test/PsSetLoadImageNotifyRoutine_Test/LoadImageNotify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/模块加载监控/PsSetLoadImageNotifyRoutine_Test/PsSetLoadImageNotifyRoutine_Test/LoadImageNotify.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/模块加载监控/PsSetLoadImageNotifyRoutine_Test/PsSetLoadImageNotifyRoutine_Test/PsSetLoadImageNotifyRoutine_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; PsSetLoadImageNotifyRoutine_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="PsSetLoadImageNotifyRoutine_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/模块加载监控/PsSetLoadImageNotifyRoutine_Test/PsSetLoadImageNotifyRoutine_Test/PsSetLoadImageNotifyRoutine_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/模块加载监控/PsSetLoadImageNotifyRoutine_Test/PsSetLoadImageNotifyRoutine_Test/PsSetLoadImageNotifyRoutine_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | 16 | Off 17 | 18 | 19 | Off 20 | 21 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/注册表监控/CmRegisterCallback_Test/CmRegisterCallback_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/注册表监控/CmRegisterCallback_Test/CmRegisterCallback_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/注册表监控/CmRegisterCallback_Test/CmRegisterCallback_Test/CmRegisterCallback_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; CmRegisterCallback_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="CmRegisterCallback_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/注册表监控/CmRegisterCallback_Test/CmRegisterCallback_Test/CmRegisterCallback_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/注册表监控/CmRegisterCallback_Test/CmRegisterCallback_Test/CmRegisterCallback_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/注册表监控/CmRegisterCallback_Test/CmRegisterCallback_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/注册表监控/CmRegisterCallback_Test/CmRegisterCallback_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/注册表监控/CmRegisterCallback_Test/CmRegisterCallback_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/注册表监控/CmRegisterCallback_Test/CmRegisterCallback_Test/NotifyRoutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/注册表监控/CmRegisterCallback_Test/CmRegisterCallback_Test/NotifyRoutine.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/注册表监控/CmRegisterCallback_Test/CmRegisterCallback_Test/NotifyRoutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/注册表监控/CmRegisterCallback_Test/CmRegisterCallback_Test/NotifyRoutine.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/EnumProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/EnumProcess.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/EnumProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/EnumProcess.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; EnumProcess_ActiveProcessLinks_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="EnumProcess_ActiveProcessLinks_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | Header Files 35 | 36 | 37 | Header Files 38 | 39 | 40 | 41 | 42 | Source Files 43 | 44 | 45 | Source Files 46 | 47 | 48 | Source Files 49 | 50 | 51 | Source Files 52 | 53 | 54 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/GetMiProcessLoaderEntry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/GetMiProcessLoaderEntry.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/GetMiProcessLoaderEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/GetMiProcessLoaderEntry.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/SSDTFunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/SSDTFunction.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/SSDTFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的进程隐藏/EnumProcess_ActiveProcessLinks_Test/EnumProcess_ActiveProcessLinks_Test/SSDTFunction.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/EnumDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/EnumDriver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/EnumDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/EnumDriver.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/EnumDriver_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; EnumDriver_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="EnumDriver_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/EnumDriver_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | Header Files 35 | 36 | 37 | Header Files 38 | 39 | 40 | 41 | 42 | Source Files 43 | 44 | 45 | Source Files 46 | 47 | 48 | Source Files 49 | 50 | 51 | Source Files 52 | 53 | 54 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/EnumDriver_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/GetMiProcessLoaderEntry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/GetMiProcessLoaderEntry.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/GetMiProcessLoaderEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/GetMiProcessLoaderEntry.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/SSDTFunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/SSDTFunction.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/SSDTFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/过Patch Guard的驱动隐藏/EnumDriver_Test/EnumDriver_Test/SSDTFunction.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/进程创建监控/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/进程创建监控/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/进程创建监控/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/进程创建监控/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/进程创建监控/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | 7 | 8 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 9 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 10 | 11 | 12 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/进程创建监控/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test/NotifyRoutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/进程创建监控/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test/NotifyRoutine.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/进程创建监控/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test/NotifyRoutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/进程创建监控/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test/NotifyRoutine.h -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/进程创建监控/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; PsSetCreateProcessNotifyRoutineEx_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="PsSetCreateProcessNotifyRoutineEx_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/进程创建监控/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | Header Files 32 | 33 | 34 | 35 | 36 | Source Files 37 | 38 | 39 | Source Files 40 | 41 | 42 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/进程创建监控/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test/PsSetCreateProcessNotifyRoutineEx_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | 6 | 7 | Off 8 | 9 | 10 | Off 11 | 12 | 13 | Off 14 | 15 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/键盘监听/KeyboardLog_Test/KeyboardLog_Test.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/键盘监听/KeyboardLog_Test/KeyboardLog_Test.v12.suo -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/键盘监听/KeyboardLog_Test/KeyboardLog_Test/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [收集] Window Kernel Hack/键盘监听/KeyboardLog_Test/KeyboardLog_Test/Driver.c -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/键盘监听/KeyboardLog_Test/KeyboardLog_Test/Driver.h: -------------------------------------------------------------------------------- 1 | #ifndef _DRIVER_H_ 2 | #define _DRIVER_H_ 3 | 4 | 5 | #include 6 | #include 7 | 8 | 9 | #define DEV_NAME L"\\Device\\KEYBOARD_LOG_DEV_NAME" 10 | #define SYM_NAME L"\\DosDevices\\KEYBOARD_LOG_SYM_NAME" 11 | #define IOCTL_TEST CTL_CODE(FILE_DEVICE_KEYBOARD, 0x800, METHOD_BUFFERED, FILE_ANY_ACCESS) 12 | 13 | 14 | typedef struct _DEVICE_EXTENSION 15 | { 16 | PDEVICE_OBJECT pAttachDevObj; 17 | ULONG ulIrpInQuene; 18 | 19 | }DEVICE_EXTENSION, *PDEVICE_EXTENSION; 20 | 21 | 22 | 23 | VOID DriverUnload(PDRIVER_OBJECT pDriverObject); 24 | NTSTATUS DriverDefaultHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 25 | NTSTATUS DriverControlHandle(PDEVICE_OBJECT pDevObj, PIRP pIrp); 26 | NTSTATUS DriverRead(PDEVICE_OBJECT pDevObj, PIRP pIrp); 27 | NTSTATUS DriverPower(PDEVICE_OBJECT pDevObj, PIRP pIrp); 28 | NTSTATUS ReadCompleteRoutine(PDEVICE_OBJECT pDevObj, PIRP pIrp, PVOID pContext); 29 | NTSTATUS CreateDevice(PDRIVER_OBJECT pDriverObject); 30 | NTSTATUS AttachKdbClass(PDEVICE_OBJECT pDevObj); 31 | 32 | 33 | #endif -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/键盘监听/KeyboardLog_Test/KeyboardLog_Test/KeyboardLog_Test.inf: -------------------------------------------------------------------------------- 1 | ; 2 | ; KeyboardLog_Test.inf 3 | ; 4 | 5 | [Version] 6 | Signature="$WINDOWS NT$" 7 | Class= 8 | ClassGuid= 9 | Provider= 10 | DriverVer= 11 | CatalogFile= 12 | 13 | [DestinationDirs] 14 | DefaultDestDir = 12 15 | 16 | 17 | [SourceDisksNames] 18 | 1 = %DiskName%,,,"" 19 | 20 | [SourceDisksFiles] 21 | 22 | 23 | [Manufacturer] 24 | %ManufacturerName%=Standard,NT$ARCH$ 25 | 26 | [Standard.NT$ARCH$] 27 | 28 | 29 | [Strings] 30 | ManufacturerName="" 31 | ClassName="" 32 | DiskName="KeyboardLog_Test Source Disk" 33 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/键盘监听/KeyboardLog_Test/KeyboardLog_Test/KeyboardLog_Test.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hpp;hxx;hm;inl;inc;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | {8E41214B-6785-4CFE-B992-037D68949A14} 18 | inf;inv;inx;mof;mc; 19 | 20 | 21 | 22 | 23 | Driver Files 24 | 25 | 26 | 27 | 28 | Header Files 29 | 30 | 31 | 32 | 33 | Source Files 34 | 35 | 36 | -------------------------------------------------------------------------------- /[教程] [收集] Window Kernel Hack/键盘监听/KeyboardLog_Test/KeyboardLog_Test/KeyboardLog_Test.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | Off 5 | Win7x64DriverDebug 6 | 7 | 8 | Off 9 | Win7x64DriverDebug 10 | 11 | 12 | Off 13 | Win7x64DriverDebug 14 | 15 | 16 | Off 17 | Win7x64DriverDebug 18 | 19 | 20 | Win7x64DriverDebug 21 | 22 | 23 | Win7x64DriverDebug 24 | 25 | 26 | Win7x64DriverDebug 27 | 28 | 29 | Win7x64DriverDebug 30 | 31 | 32 | Win7x64DriverDebug 33 | 34 | 35 | Win7x64DriverDebug 36 | 37 | 38 | Win7x64DriverDebug 39 | 40 | 41 | Win7x64DriverDebug 42 | 43 | -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/README.md: -------------------------------------------------------------------------------- 1 | # 前言 2 | 3 | [apex dump](https://github.com/CasualX/pelite/tree/master/examples/apex) 4 | 5 | 这个我怎么搞都搞不过,老是编译失败,会rust的兄弟可以自己去试试看 6 | 7 | 搞不过,还是要自己写一个sig匹配,无语..... 8 | 9 | 在这里说一下过EAC的办法吧(我自己现在用的,没被封禁) 10 | 11 | 1.bypass pg(没过这个后面很难搞的,动不动就是0x109蓝屏) 12 | 13 | 2.read/write process memory driver(没读写驱动就没戏呀,我用MDL方式读写内存的) 14 | 15 | 3.hide driver(把驱动隐藏了为妙,不然不太稳感觉) 16 | 17 | 4.clear all trace(比如你使用了漏洞驱动/泄露签名证书驱动....这些痕迹都要清空了去) 18 | 19 | 5.hdd spoofer(我的电脑被锁硬件了,要改) 20 | 21 | 6.over(相对安全了) 22 | -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[dump] [offsets] [tools]/dump_apex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[dump] [offsets] [tools]/dump_apex.exe -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[dump] [offsets] [tools]/get_apex_offsets.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[dump] [offsets] [tools]/get_apex_offsets.exe -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[dump]/dump_apex.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[dump]/dump_apex.exe -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[dump]/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[dump]/main.cpp -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[dump]/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[dump]/memory.hpp -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[offsets] [pelite]/README.md: -------------------------------------------------------------------------------- 1 | # 前言 2 | 3 | # 关于如何使用rust的pelite库解析apex的偏移与基址 4 | 5 | 因为我没有学过rust语言嘛,所以刚开始的时候都搞不过 6 | 7 | 搞了一天,各种测试,还是各种错误爆出来,我都无语了 8 | 9 | 后面去作者的github提问了一下,简直nice,一语道破呀 10 | 11 | 原因就是版本问题!!!!! 12 | 13 | 不能使用v0.8版本,前面的版本不支持,也爆很多错 14 | 15 | 我根据作者的提示,直接就用了v0.9的版本,简直nice,没有报错了 16 | 17 | 接下来我就说一下怎么个操作法 : 18 | 19 | 1.下载rust并进行安装(自己百度) 20 | 21 | 2.解压pelite-0.9.0后,进入该目录 22 | 23 | 3.进入examples的目录,你会看到apex/apisetschema/csgo/tf2这几个文件夹和其它一些文件 24 | 25 | 4.把rs类型的文件全部删除,文件夹不能删除啊 26 | 27 | 5.然后进入apex文件夹,把文件夹里面的rs文件全部复制出来(复制到examples文件夹里面) 28 | 29 | 6.回到pelite-0.9.0文件目录下,打开cmd 30 | 31 | 7.输入命令 cargo run --example main 32 | 33 | 8.OK,现在应该就能编译成功了,有了一个exe文件(就在pelite-0.9.0目录下,自己查找) 34 | 35 | 9.如何就是输入命令 main r5apex.bin > stdout.md 36 | 37 | 10.现在就能得到偏移了 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[offsets] [pelite]/pelite-0.9.0.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[offsets] [pelite]/pelite-0.9.0.zip -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[最新辅助]/README.md: -------------------------------------------------------------------------------- 1 | # 前言 2 | 3 | 能用的辅助,但是不安全的,你们可以试试看效果 4 | 5 | 如果你连怎么使用的不知道的话,那请不要使用 6 | 7 | [下载地址](https://wwx.lanzoux.com/iqex5ipsbuh) 8 | -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [自瞄] [原始版本]/cheats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[辉光] [自瞄] [原始版本]/cheats.hpp -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [自瞄] [原始版本]/main.cpp: -------------------------------------------------------------------------------- 1 | #include "overlay.hpp" 2 | 3 | #include 4 | 5 | #include 6 | #include 7 | 8 | bool g_thread = true; 9 | 10 | void _cdecl glow_thread(void* data) 11 | { 12 | while (g_thread) 13 | { 14 | // 辉光 15 | glow_players(true); 16 | 17 | Sleep(1); 18 | } 19 | 20 | glow_players(false); 21 | return; 22 | } 23 | 24 | void _cdecl aim_thread(void* data) 25 | { 26 | while (g_thread) 27 | { 28 | // 自瞄玩家 29 | bool state = (GetAsyncKeyState(VK_LBUTTON) & 0x8000) || (GetAsyncKeyState(VK_CONTROL) & 0x8000); 30 | if (state) aimbot_players(); 31 | 32 | Sleep(1); 33 | } 34 | } 35 | 36 | int main(int argc, char* argv[]) 37 | { 38 | HANDLE hDriver = open_device(); 39 | if (hDriver == 0) return 0; 40 | 41 | if (initialize() == false) return 0; 42 | 43 | std::cout << _beginthread(glow_thread, 0, nullptr) << std::endl; 44 | std::cout << _beginthread(aim_thread, 0, nullptr) << std::endl; 45 | 46 | while (true) 47 | { 48 | std::cout << "wait for you input : " << std::endl; 49 | std::string line; 50 | getline(std::cin, line); 51 | 52 | if (line.size()) 53 | if (line[0] == 'q' || line[0] == 'Q') break; 54 | } 55 | 56 | g_thread = false; 57 | 58 | // 关闭辉光 59 | glow_players(false); 60 | 61 | return 0; 62 | } 63 | 64 | int __stdcall WinMain__( 65 | _In_ HINSTANCE hInstance, 66 | _In_opt_ HINSTANCE hPrevInstance, 67 | _In_ LPSTR lpCmdLine, 68 | _In_ int nShowCmd) 69 | { 70 | HANDLE hDriver = open_device(); 71 | if (hDriver == 0) return 0; 72 | 73 | HWND hWnd = FindWindowA("Respawn001", "Apex Legends"); 74 | if (hWnd) 75 | { 76 | overlay* g = new overlay(hWnd); 77 | g->create_overlay_window(); 78 | g->initialize(); 79 | g->message_handle(); 80 | } 81 | 82 | return 0; 83 | } -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [自瞄] [原始版本]/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[辉光] [自瞄] [原始版本]/memory.hpp -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [自瞄] [原始版本]/overlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[辉光] [自瞄] [原始版本]/overlay.hpp -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [自瞄] [自瞄不稳待修改]/cheats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[辉光] [自瞄] [自瞄不稳待修改]/cheats.hpp -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [自瞄] [自瞄不稳待修改]/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[辉光] [自瞄] [自瞄不稳待修改]/memory.hpp -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/README.md: -------------------------------------------------------------------------------- 1 | # 前言 2 | 3 | 比较稳的版本 4 | 5 | [测试视频](https://www.ixigua.com/6882288233745482254/?utm_source=xiguastudio) 6 | 7 | # 截图展示 8 |

9 | 10 |

11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/apex_show.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.28307.1267 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "apex_show", "apex_show.vcxproj", "{7AF0A601-DEFD-43D4-BA4C-7A8DBFB1B951}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|x64 = Debug|x64 11 | Debug|x86 = Debug|x86 12 | Release|x64 = Release|x64 13 | Release|x86 = Release|x86 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {7AF0A601-DEFD-43D4-BA4C-7A8DBFB1B951}.Debug|x64.ActiveCfg = Debug|x64 17 | {7AF0A601-DEFD-43D4-BA4C-7A8DBFB1B951}.Debug|x64.Build.0 = Debug|x64 18 | {7AF0A601-DEFD-43D4-BA4C-7A8DBFB1B951}.Debug|x86.ActiveCfg = Debug|Win32 19 | {7AF0A601-DEFD-43D4-BA4C-7A8DBFB1B951}.Debug|x86.Build.0 = Debug|Win32 20 | {7AF0A601-DEFD-43D4-BA4C-7A8DBFB1B951}.Release|x64.ActiveCfg = Release|x64 21 | {7AF0A601-DEFD-43D4-BA4C-7A8DBFB1B951}.Release|x64.Build.0 = Release|x64 22 | {7AF0A601-DEFD-43D4-BA4C-7A8DBFB1B951}.Release|x86.ActiveCfg = Release|Win32 23 | {7AF0A601-DEFD-43D4-BA4C-7A8DBFB1B951}.Release|x86.Build.0 = Release|Win32 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {30920145-87D2-4BDC-86DC-4C6904D4A7C7} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/apex_show.vcxproj.filters: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | {4FC737F1-C7A5-4376-A066-2A32D752A2FF} 6 | cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx 7 | 8 | 9 | {93995380-89BD-4b04-88EB-625FBE52EBFB} 10 | h;hh;hpp;hxx;hm;inl;inc;ipp;xsd 11 | 12 | 13 | {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} 14 | rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms 15 | 16 | 17 | 18 | 19 | 源文件 20 | 21 | 22 | 23 | 24 | 头文件 25 | 26 | 27 | 头文件 28 | 29 | 30 | 头文件 31 | 32 | 33 | 头文件 34 | 35 | 36 | -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/apex_show.vcxproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/cheats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/cheats.hpp -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/demo.jpg -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/entity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/entity.hpp -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/main.cpp -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/memory.hpp -------------------------------------------------------------------------------- /[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/offsets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Apex Legends/[辉光] [锁头] [稳定版本]/offsets.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/A.辅助程序最终效果演示/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 在线观看 3 | [西瓜视频](https://www.ixigua.com/i6820012630774645260/) 4 | 5 | # 视频下载 6 | 提取码: rjfd [百度网盘下载](https://pan.baidu.com/s/1xBPwbffECa9PZhf2VLf9lg) 7 | 8 | 9 | # 截图展示 10 |

11 | 12 |

13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/A.辅助程序最终效果演示/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/A.辅助程序最终效果演示/demo.jpg -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/B.使用CE查找自己的矩阵信息/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 在线观看 3 | [西瓜视频](https://www.ixigua.com/i6820014498091368964/) 4 | [理解矩阵](https://www.ixigua.com/i6820015806319952392/) 5 | 6 | # 视频下载 7 | 提取码: wehn [百度网盘下载](https://pan.baidu.com/s/1SsmbEZVwr4XsuLqs70883g) 8 | 9 | 10 | # 截图展示 11 |

12 | 13 |

14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/B.使用CE查找自己的矩阵信息/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/B.使用CE查找自己的矩阵信息/demo.jpg -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/C.使用CE查找自己的角度信息/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 在线观看 3 | [西瓜视频](https://www.ixigua.com/i6820016695306879492/) 4 | [理解角度](https://www.ixigua.com/i6820017677113754115/) 5 | 6 | # 视频下载 7 | 提取码: vxhf [百度网盘下载](https://pan.baidu.com/s/1YsQ6q55qIlbreZ3O39fJlw) 8 | 9 | # 截图展示 10 |

11 | 12 |

13 | 14 | 15 | # 其它辅助相关网站 16 | 国外的,但牛逼 17 | 18 | https://www.unknowncheats.me/forum/index.php 19 | 20 | 国内的 21 | https://www.freebuf.com/news/139515.html 22 | 23 | https://gslab.qq.com/portal.php?mod=view&aid=168 24 | 25 | 26 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/C.使用CE查找自己的角度信息/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/C.使用CE查找自己的角度信息/demo.jpg -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/D.使用CE查找自己的位置信息/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 在线观看 3 | [西瓜视频](https://www.ixigua.com/i6820022563901538828/) 4 | 5 | # 视频下载 6 | 提取码: q6x6 [百度网盘下载](https://pan.baidu.com/s/1zCsxxGCmgHZffAKDX319pw) 7 | 8 | 9 | # 截图展示 10 |

11 | 12 |

13 | 14 | 15 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/D.使用CE查找自己的位置信息/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/D.使用CE查找自己的位置信息/demo.jpg -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/E.使用CE查找敌人和队友的位置信息/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 在线观看 3 | [西瓜视频](https://www.ixigua.com/i6820024915190612487/) 4 | 5 | # 视频下载 6 | 提取码: 9ns8 [百度网盘下载](https://pan.baidu.com/s/1hhL3Zfzf9p1ErW7PdLOOAA) 7 | 8 | # 截图展示 9 |

10 | 11 |

12 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/E.使用CE查找敌人和队友的位置信息/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/E.使用CE查找敌人和队友的位置信息/demo.jpg -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/F.使用CE查找敌人和队友的骨骼信息/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 在线观看 3 | [西瓜视频](https://www.ixigua.com/i6820029450143400460/) 4 | 5 | # 视频下载 6 | 提取码: 4vt2 [百度网盘下载](https://pan.baidu.com/s/1LdTyTVlLBEXP4THPy2U6LA) 7 | 8 | # 截图展示 9 |

10 | 11 |

12 | 13 | 14 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/F.使用CE查找敌人和队友的骨骼信息/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/F.使用CE查找敌人和队友的骨骼信息/demo.jpg -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/G.C++实现inline hook/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 在线视频 3 | [西瓜视频](https://www.ixigua.com/i6820068427600757260/) 4 | [理解inline hook](https://www.ixigua.com/i6820069140699546123/) 5 | 6 | # 视频下载 7 | 提取码: st52 [百度网盘下载](https://pan.baidu.com/s/1BbK1WRlqeJ9eFkMw89htoQ) 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/G.C++实现inline hook/inline_hook.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | constexpr int byte_length = 5; 5 | 6 | class inline_hook 7 | { 8 | private: 9 | using uchar = unsigned char; 10 | using dword = DWORD; 11 | 12 | uchar m_original_byte[byte_length];//原始函数处的汇编指令 13 | uchar m_self_byte[byte_length];//我们构造的汇编指令 14 | 15 | int m_original_address;//原始函数的地址 16 | int m_self_address;//我们函数的地址 17 | 18 | dword motify_memory_attributes(int address, dword attributes = PAGE_EXECUTE_READWRITE) 19 | { 20 | dword old_attributes; 21 | VirtualProtect(reinterpret_cast(address), byte_length, attributes, &old_attributes); 22 | return old_attributes; 23 | } 24 | 25 | public: 26 | inline_hook(int original_address, int self_address) : m_original_address(original_address), m_self_address(self_address) 27 | { 28 | 29 | m_self_byte[0] = '\xe9'; 30 | 31 | //计算偏移 32 | int offset = self_address - (original_address + byte_length); 33 | 34 | //构造跳转到我们函数的byte 35 | memcpy(&m_self_byte[1], &offset, byte_length - 1); 36 | 37 | //修改内存属性 38 | dword attributes = motify_memory_attributes(original_address); 39 | 40 | //保存原始函数地址的byte 41 | memcpy(m_original_byte, reinterpret_cast(original_address), byte_length); 42 | 43 | //恢复内存属性 44 | motify_memory_attributes(original_address, attributes); 45 | } 46 | 47 | void motify_address() 48 | { 49 | dword attributes = motify_memory_attributes(m_original_address); 50 | 51 | //写入我们构造的byte实现inline hook 52 | memcpy(reinterpret_cast(m_original_address), m_self_byte, byte_length); 53 | 54 | motify_memory_attributes(m_original_address, attributes); 55 | } 56 | 57 | void restore_address() 58 | { 59 | dword attributes = motify_memory_attributes(m_original_address); 60 | 61 | memcpy(reinterpret_cast(m_original_address), m_original_byte, byte_length); 62 | 63 | motify_memory_attributes(m_original_address, attributes); 64 | } 65 | 66 | }; 67 | 68 | 69 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/H.inline hook Direct3D9/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 在线视频 3 | [西瓜视频](https://www.ixigua.com/i6820320487655080451/) 4 | 5 | # 视频下载 6 | 提取码: ne4k [百度网盘下载](https://pan.baidu.com/s/1erTgRA1vO-WZT-rQFF64jA) 7 | 8 | # 截图展示 9 |

10 | 11 |

12 | 13 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/H.inline hook Direct3D9/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/H.inline hook Direct3D9/demo.jpg -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/H.inline hook Direct3D9/dll_main.cpp: -------------------------------------------------------------------------------- 1 | #include "do_cheats.hpp" 2 | #include 3 | 4 | int __stdcall DllMain(void* _DllHandle, unsigned long _Reason, void* _Reserved) 5 | { 6 | if (_Reason == DLL_PROCESS_ATTACH) _beginthreadex(nullptr, 0, initialize_d3d9, nullptr, 0, nullptr); 7 | if (_Reason == DLL_PROCESS_DETACH) un_load(); 8 | return 1; 9 | } -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/H.inline hook Direct3D9/do_cheats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/H.inline hook Direct3D9/do_cheats.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/H.inline hook Direct3D9/help_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/H.inline hook Direct3D9/help_func.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/H.inline hook Direct3D9/inline_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/H.inline hook Direct3D9/inline_hook.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 在线视频 3 | [西瓜视频](https://www.ixigua.com/i6820337977294586371/) 4 | 5 | # 视频下载 6 | 提取码: iizn [百度网盘下载](https://pan.baidu.com/s/1TdPnDxnTC3uVZW82u9E1FQ) 7 | 8 | # 截图展示 9 |

10 | 11 |

12 | 13 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/demo.jpg -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/内挂/dll_main.cpp: -------------------------------------------------------------------------------- 1 | #include "do_cheats.hpp" 2 | #include 3 | 4 | int __stdcall DllMain(void* _DllHandle, unsigned long _Reason, void* _Reserved) 5 | { 6 | if (_Reason == DLL_PROCESS_ATTACH) _beginthreadex(nullptr, 0, initialize_d3d9, nullptr, 0, nullptr); 7 | if (_Reason == DLL_PROCESS_DETACH) un_load(); 8 | return 1; 9 | } -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/内挂/do_cheats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/内挂/do_cheats.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/内挂/help_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/内挂/help_func.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/内挂/inline_hook.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/内挂/inline_hook.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/外挂/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/外挂/main.cpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/外挂/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/I.imgui + 内外挂/外挂/main.h -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/J.DrawIndexedPrimitive的透视实现/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 在线视频 3 | [西瓜视频](https://www.ixigua.com/i6820447200716259844/) 4 | 5 | # 视频下载 6 | 提取码: 82kg [百度网盘下载](https://pan.baidu.com/s/1Lix4eLRMqR3E7FyHYehTAA) 7 | 8 | # 截图展示 9 |

10 | 11 |

12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/J.DrawIndexedPrimitive的透视实现/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/J.DrawIndexedPrimitive的透视实现/demo.jpg -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/K.内存模式查找/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 在线视频 3 | [西瓜视频](https://www.ixigua.com/i6821195474209341960/) 4 | 5 | # 视频下载 6 | 提取码: ef8s [百度网盘下载](https://pan.baidu.com/s/1fG9fDzTaEbFFSk3tBU9qnA) 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/K.内存模式查找/源码/csgo_cheats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/K.内存模式查找/源码/csgo_cheats.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/K.内存模式查找/源码/direct3d9.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/K.内存模式查找/源码/direct3d9.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/K.内存模式查找/源码/help_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/K.内存模式查找/源码/help_func.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/K.内存模式查找/源码/main.cpp: -------------------------------------------------------------------------------- 1 | #include "csgo_cheats.hpp" 2 | 3 | 4 | int main(int argc, char* argv[]) 5 | { 6 | start_cheats_csgo(); 7 | return 0; 8 | } 9 | 10 | 11 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/L.完善外挂功能/README.md: -------------------------------------------------------------------------------- 1 | 2 | ## 基本的外挂源码,不需要DLL注入,随开随用 3 | 4 | ## 百度网盘下载[https://pan.baidu.com/s/1GjWiZJofXME-liSUWLVzlg] 5 | 提取码: r83m 6 | 7 | ## 在线观看 8 | 西瓜视频(https://www.ixigua.com/i6824543841350058510/) 9 | 10 | # 截图展示 11 |

12 | 13 |

14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/L.完善外挂功能/csgo_cheats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/L.完善外挂功能/csgo_cheats.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/L.完善外挂功能/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/L.完善外挂功能/demo.jpg -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/L.完善外挂功能/direct3d9.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/L.完善外挂功能/direct3d9.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/L.完善外挂功能/help_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/L.完善外挂功能/help_func.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/L.完善外挂功能/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/L.完善外挂功能/main.cpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/M.外部辉光 + 连跳/README.md: -------------------------------------------------------------------------------- 1 | 2 | ## 基本的辉光源码 3 | 4 | ## 链接: https://pan.baidu.com/s/1dZcBMVtNGzc1XsNdV5EmAg 提取码: 5hgy 5 | 6 | ## 在线观看 https://www.ixigua.com/i6829927044688642572?utm_source=xiguastudio 7 | 8 | 9 | # 截图展示 10 |

11 | 12 |

13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/M.外部辉光 + 连跳/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/M.外部辉光 + 连跳/demo.jpg -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/M.外部辉光 + 连跳/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/M.外部辉光 + 连跳/main.cpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/N.CSGO外部武器换肤/README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 链接: https://pan.baidu.com/s/1eTVcA8otktzU2qqn6XWvhw 提取码: j7d4 4 | 5 | https://www.ixigua.com/i6841171393732674062?utm_source=xiguastudio 6 | 7 | # 截图展示 8 |

9 | 10 |

11 | 12 | ## 不视频讲解了,反正代码里有非常详细的注释 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/N.CSGO外部武器换肤/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/N.CSGO外部武器换肤/demo.jpg -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/N.CSGO外部武器换肤/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/N.CSGO外部武器换肤/main.cpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/N.CSGO外部武器换肤/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/N.CSGO外部武器换肤/main.h -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/O.加载驱动的完美方法/README.md: -------------------------------------------------------------------------------- 1 | ## 好吧视频里有杂声,没办法了将就一下吧,也就20分钟,哈哈哈哈 ^-^ 2 | 3 | 链接: https://pan.baidu.com/s/1XBx0uJLLGm3FtXpiaAg84Q 提取码: 9sps 4 | 5 | [在线观看](https://www.ixigua.com/6852315742743101966/?utm_source=xiguastudio) 6 | 7 | ## [项目地址](https://github.com/FiYHer/kdmapper) 8 | 9 | # 截图展示 10 |

11 | 12 |

13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/O.加载驱动的完美方法/temp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/O.加载驱动的完美方法/temp.png -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/P.CSGO注入小助手/README.md: -------------------------------------------------------------------------------- 1 | 2 | ## [网盘地址 - 提取码:fqk2](https://pan.baidu.com/s/1kYOUYpviZoN9Vwlh2CP68g) 3 | 4 | ## [在线观看](https://www.ixigua.com/6854594958062518798/?utm_source=xiguastudio) 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/P.CSGO注入小助手/csgo_inject.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/P.CSGO注入小助手/csgo_inject.exe -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/P.CSGO注入小助手/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/P.CSGO注入小助手/main.cpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/Q.hvh陀螺自瞄/README.md: -------------------------------------------------------------------------------- 1 | # 前言 2 | 3 | [百度网盘 提取码: 8jpx](https://pan.baidu.com/s/1O1b4kdiKiSIUJ9PrQ2o_pA) 4 | 5 | [效果视频](https://www.ixigua.com/6856437050585907725/?utm_source=xiguastudio) 6 | 7 | [在线播放](https://www.ixigua.com/6856427520339018254/?utm_source=xiguastudio) 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/Q.hvh陀螺自瞄/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/Q.hvh陀螺自瞄/address.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/Q.hvh陀螺自瞄/cheats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/Q.hvh陀螺自瞄/cheats.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/Q.hvh陀螺自瞄/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/Q.hvh陀螺自瞄/main.cpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/Q.hvh陀螺自瞄/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/Q.hvh陀螺自瞄/memory.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/R.绘制人物骨骼/README.md: -------------------------------------------------------------------------------- 1 | # 前言 2 | 3 | [百度网盘 提取码: nmgb](https://pan.baidu.com/s/1l9hjqEkfUtuAa4sPNmU75A) 4 | 5 | [在线播放 ](https://www.ixigua.com/6873083514258981384/?utm_source=xiguastudio) 6 | 7 | # 截图展示 8 |

9 | 10 |

11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/R.绘制人物骨骼/cheats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/R.绘制人物骨骼/cheats.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/R.绘制人物骨骼/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/R.绘制人物骨骼/demo.png -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/R.绘制人物骨骼/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/R.绘制人物骨骼/main.cpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/R.绘制人物骨骼/overlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/R.绘制人物骨骼/overlay.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/README.md: -------------------------------------------------------------------------------- 1 | # 前言 2 | 3 | ## 消息 4 | 好吧,有时间我会编译一些能直接用的辅助软件出来 5 | 6 | ## 成品辅助软件 7 | 8 | 9 | ## 待编译成品辅助软件 10 | [Osiris - 内挂] 11 | 12 | [Anubis - 内挂] 13 | 14 | [GOESP - 内挂] 15 | 16 | [RPM-WPM-project - 外挂] 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/CSGO简单接口类/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | ## 简单接口类 4 | 5 | 1.基址和偏移 6 | 7 | 2.读取和写入 8 | 9 | 3.convar 10 | 11 | 4.netvar 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/CSGO简单接口类/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/CSGO简单接口类/address.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/CSGO简单接口类/convar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/CSGO简单接口类/convar.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/CSGO简单接口类/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/CSGO简单接口类/main.cpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/CSGO简单接口类/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/CSGO简单接口类/memory.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/CSGO简单接口类/netvar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/CSGO简单接口类/netvar.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/overlay类/main.cpp: -------------------------------------------------------------------------------- 1 | #include "overlay.hpp" 2 | 3 | int __stdcall WinMain( 4 | _In_ HINSTANCE hInstance, 5 | _In_opt_ HINSTANCE hPrevInstance, 6 | _In_ LPSTR lpCmdLine, 7 | _In_ int nShowCmd) 8 | { 9 | HWND hWnd = FindWindowA(nullptr, "ShadowVolume"); 10 | 11 | overlay* g = new overlay(hWnd); 12 | g->create_overlay_window(); 13 | g->initialize(); 14 | g->message_handle(); 15 | 16 | return 0; 17 | } -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/overlay类/overlay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/overlay类/overlay.hpp -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/获取网络上的CSGO地址和偏移/README.md: -------------------------------------------------------------------------------- 1 | # 说明 2 | 3 | 将游戏的地址和偏移硬编码是非常不好的一种方式 4 | 5 | 因为游戏稍微更新一点点,你就要修改地址和偏移后重新编译程序 6 | 7 | 所以现在推荐两种方式 : 8 | 9 | - [x] 内存特征匹配 10 | 11 | - [x] 网络动态获取 12 | 13 | 第一种不说了,教程视频都教了,现在教这一种是第二种 14 | 15 | 算了,自己看代码吧,很简单,注释很明了 16 | 17 | 这里给几个经常更新CSGO地址和偏移的网址给你们 18 | 19 | [frk1](https://github.com/frk1/hazedumper/blob/master/csgo.hpp) 20 | 21 | [MrLotsmon](https://github.com/MrLotsmon/csoffsets/blob/8970383d05fe40d110e682c4ba449d831af4ffbd/csgo.cs) 22 | 23 | [JokinAce](https://github.com/JokinAce/CSGO-Offsets/blob/df466d49a242ce645807c3dd036595d817816af0/csgo.cs) 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/获取网络上的CSGO地址和偏移/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Counterstrike Global Offensive/[无视频]一些有用小代码/获取网络上的CSGO地址和偏移/main.cpp -------------------------------------------------------------------------------- /[教程] [本人] Grand Theft Auto V/GTAHaXUI/GTAHaXUI.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icls1337/Game-Cheating-Tutorial/8d67314d42ae019a7b7d2ed85c2be4f0a2199297/[教程] [本人] Grand Theft Auto V/GTAHaXUI/GTAHaXUI.exe -------------------------------------------------------------------------------- /[教程] [本人] Grand Theft Auto V/GTAHaXUI/stat.txt: -------------------------------------------------------------------------------- 1 | REPLACE_ME_WITH_WHATEVER_YOU_WANT,_THIS_LINE_IS_MEANT_FOR_COMMENTS_-_SET_STAT_TYPE_STAYS_UNTIL_IT_IS_CHANGED_-_64_SUPPORT_IS_EXPERIMENTAL_AND_MAY_NOT_WORK_-_ONE_LINE_IS_THE_STAT_NAME,_SECOND_IS_THE_VALUE_FOR_IT_-_BOOL_VALUES_ARE_NOT_SUPPORTED_(YET?) 2 | INT32 3 | $MP0_NO_BOUGHT_YUM_SNACKS 4 | 1337 5 | $MP0_NO_BOUGHT_HEALTH_SNACKS 6 | 9001 7 | $MP0_NO_BOUGHT_EPIC_SNACKS 8 | 0x420 9 | INT64 10 | $MPPLY_TOTAL_TIME_MISSION_CREATO 11 | 300000000000000000 12 | INT32 13 | $MP0_CHAR_FM_CARMOD_1_UNLCK 14 | -1 15 | $MP0_CHAR_FM_CARMOD_2_UNLCK 16 | -1 17 | $MP0_CHAR_FM_CARMOD_3_UNLCK 18 | -1 19 | $MP0_CHAR_FM_CARMOD_4_UNLCK 20 | -1 21 | $MP0_CHAR_FM_CARMOD_5_UNLCK 22 | -1 23 | $MP0_CHAR_FM_CARMOD_6_UNLCK 24 | -1 25 | $MP0_CHAR_FM_CARMOD_7_UNLCK 26 | -1 27 | $MP0_NUMBER_TURBO_STARTS_IN_RACE 28 | 50 29 | $MP0_USJS_COMPLETED 30 | 25 31 | $MP0_AWD_FM_RACES_FASTEST_LAP 32 | 50 33 | $MP0_NUMBER_SLIPSTREAMS_IN_RACE 34 | 100 35 | $MP0_AWD_WIN_CAPTURES 36 | 50 37 | $MP0_AWD_DROPOFF_CAP_PACKAGES 38 | 100 39 | $MP0_AWD_KILL_CARRIER_CAPTURE 40 | 100 41 | $MP0_AWD_FINISH_HEISTS 42 | 50 43 | $MP0_AWD_FINISH_HEIST_SETUP_JOB 44 | 50 45 | $MP0_AWD_NIGHTVISION_KILLS 46 | 100 47 | $MP0_AWD_WIN_LAST_TEAM_STANDINGS 48 | 50 49 | $MP0_AWD_ONLY_PLAYER_ALIVE_LTS 50 | 50 51 | $MP0_AWD_FMRALLYWONDRIVE 52 | 1 53 | $MP0_AWD_FMRALLYWONNAV 54 | 1 55 | $MP0_AWD_FMWINAIRRACE 56 | 1 57 | $MP0_AWD_FMWINSEARACE 58 | 1 59 | $MP0_RACES_WON 60 | 50 61 | $MP0_MPPLY_TOTAL_RACES_WON 62 | 50 -------------------------------------------------------------------------------- /[教程] [本人] Grand Theft Auto V/README.md: -------------------------------------------------------------------------------- 1 | # 前言 2 | 3 | 好吧,这里是GTA5相关 4 | 5 | ## 分三个内容教学视频 6 | 7 | 1.刷等级 8 | 9 | 2.刷金钱 10 | 11 | 3.辅助使用 12 | 13 | ## 辅助源码和程序 14 | [辅助源码](https://github.com/FiYHer/gta5_cheats_1.50) 15 | [辅助程序](https://github.com/FiYHer/gta5_cheats_1.50/releases) 16 | [GTAHaXUI v2 for 1.50程序下载 - 提取码:d724](https://pan.baidu.com/s/1SMWwAymbKsVmIy0cgd2_oQ) 17 | 18 | [在线观看 - 刷钱](https://www.ixigua.com/6852550551683793415/?utm_source=xiguastudio) 19 | 20 | [在线观看 - 刷等级](https://www.ixigua.com/6852555956094501390/?utm_source=xiguastudio) 21 | 22 | [在线观看 - 辅助使用](https://www.ixigua.com/6852558639929131527/?utm_source=xiguastudio) 23 | 24 | [百度网盘全部 - 提取码: nncp](https://pan.baidu.com/s/1l1iVHl2j3I_qLiQU7KOQMQ) 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | -------------------------------------------------------------------------------- /[教程] [派大星] League of Legends (TM) Client/README.md: -------------------------------------------------------------------------------- 1 | ## 作者 : 派大星 2 | ## 平台 : Youtube 3 | ## 集数 : 13 4 | ## 游戏 : League of Legends (TM) Client 5 | 6 | [第一集](https://youtu.be/u4aDbkdDsk8) 7 | [第二集](https://youtu.be/hZusqy64URM) 8 | [第三集](https://youtu.be/79Jhm-5vv-E) 9 | [第四集](https://youtu.be/MiSyWMVKKIs) 10 | [第五集](https://youtu.be/lJwtEKv8zNY) 11 | [第六集](https://youtu.be/OX4Rhz13tYw) 12 | [第七集](https://youtu.be/NyPWln6SL-4) 13 | [第八集](https://youtu.be/eGEDP4DMkOU) 14 | [第九集](https://youtu.be/TOjgjpI3Dl4) 15 | [第十集](https://youtu.be/RCgAChsUSDw) 16 | [第十一集](https://youtu.be/gAALLA792yE) 17 | [第十二集](https://youtu.be/ntL0ip1ZLgc) 18 | [第十三集](https://youtu.be/EQzSkgZhECw) 19 | 20 | 21 | 22 | --------------------------------------------------------------------------------