├── 360Safe ├── 360Safe.sln ├── 360Safe.v12.suo ├── 360SelfProtection │ ├── 360SelfProtection.inf │ ├── 360SelfProtection.vcxproj │ ├── 360SelfProtection.vcxproj.backup │ ├── 360SelfProtection.vcxproj.filters │ ├── 360SelfProtection.vcxproj.user │ ├── Command.c │ ├── Command.h │ ├── Context.c │ ├── Context.h │ ├── CreateProcessDataList.c │ ├── CreateProcessDataList.h │ ├── Data.h │ ├── DebugPrint.c │ ├── DebugPrint.h │ ├── Driver.c │ ├── Driver.h │ ├── DrvmkDataList.c │ ├── DrvmkDataList.h │ ├── Fake_CreateProcessNotifyRoutine.c │ ├── Fake_CreateProcessNotifyRoutine.h │ ├── Fake_KeUserModeCallback.c │ ├── Fake_KeUserModeCallback.h │ ├── Fake_ZwAllocateVirtualMemory.c │ ├── Fake_ZwAllocateVirtualMemory.h │ ├── Fake_ZwAlpcSendWaitReceivePort.c │ ├── Fake_ZwAlpcSendWaitReceivePort.h │ ├── Fake_ZwCreateFile.c │ ├── Fake_ZwCreateFile.h │ ├── Fake_ZwCreateProcess.c │ ├── Fake_ZwCreateProcess.h │ ├── Fake_ZwCreateSection.c │ ├── Fake_ZwCreateSection.h │ ├── Fake_ZwCreateSymbolicLinkObject.c │ ├── Fake_ZwCreateSymbolicLinkObject.h │ ├── Fake_ZwCreateThread.c │ ├── Fake_ZwCreateThread.h │ ├── Fake_ZwDeleteFile.c │ ├── Fake_ZwDeleteFile.h │ ├── Fake_ZwDeleteKey.c │ ├── Fake_ZwDeleteKey.h │ ├── Fake_ZwDuplicateObject.c │ ├── Fake_ZwDuplicateObject.h │ ├── Fake_ZwEnumerateValueKey.c │ ├── Fake_ZwEnumerateValueKey.h │ ├── Fake_ZwGetNextProcess.c │ ├── Fake_ZwGetNextProcess.h │ ├── Fake_ZwGetNextThread.c │ ├── Fake_ZwGetNextThread.h │ ├── Fake_ZwLoadDriver.c │ ├── Fake_ZwLoadDriver.h │ ├── Fake_ZwMakeTemporaryObject.c │ ├── Fake_ZwMakeTemporaryObject.h │ ├── Fake_ZwOpenFile.c │ ├── Fake_ZwOpenFile.h │ ├── Fake_ZwOpenKey.c │ ├── Fake_ZwOpenKey.h │ ├── Fake_ZwOpenMutant.c │ ├── Fake_ZwOpenMutant.h │ ├── Fake_ZwOpenProcess.c │ ├── Fake_ZwOpenProcess.h │ ├── Fake_ZwOpenSection.c │ ├── Fake_ZwOpenSection.h │ ├── Fake_ZwOpenThread.c │ ├── Fake_ZwOpenThread.h │ ├── Fake_ZwRenameKey.c │ ├── Fake_ZwRenameKey.h │ ├── Fake_ZwReplaceKey.c │ ├── Fake_ZwReplaceKey.h │ ├── Fake_ZwRestoreKey.c │ ├── Fake_ZwRestoreKey.h │ ├── Fake_ZwSetSystemInformation.c │ ├── Fake_ZwSetSystemInformation.h │ ├── Fake_ZwSetSystemTime.c │ ├── Fake_ZwSetSystemTime.h │ ├── Fake_ZwSuspendProcess.c │ ├── Fake_ZwSuspendProcess.h │ ├── Fake_ZwSuspendThread.c │ ├── Fake_ZwSuspendThread.h │ ├── Fake_ZwTerminateProcess.c │ ├── Fake_ZwTerminateProcess.h │ ├── Fake_ZwUnmapViewOfSection.c │ ├── Fake_ZwUnmapViewOfSection.h │ ├── Fake_ZwUserBuildHwndList.c │ ├── Fake_ZwUserBuildHwndList.h │ ├── Fake_ZwWriteFile.c │ ├── Fake_ZwWriteFile.h │ ├── Fake_ZwWriteVirtualMemory.c │ ├── Fake_ZwWriteVirtualMemory.h │ ├── Hash.c │ ├── Hash.h │ ├── HookPortDeviceExtension.c │ ├── HookPortDeviceExtension.h │ ├── MemCheck.c │ ├── MemCheck.h │ ├── NoSystemProcessDataList.c │ ├── NoSystemProcessDataList.h │ ├── Object.c │ ├── Object.h │ ├── PE.c │ ├── PE.h │ ├── Regedit.c │ ├── Regedit.h │ ├── RetFuncArray_File.h │ ├── SSDT.c │ ├── SSDT.h │ ├── SafeWarning.c │ ├── SafeWarning.h │ ├── SrvTransactionNotImplemented.c │ ├── SrvTransactionNotImplemented.h │ ├── System.c │ ├── System.h │ ├── SystemProcessDataList.c │ ├── SystemProcessDataList.h │ ├── VirtualMemoryDataList.c │ ├── VirtualMemoryDataList.h │ ├── WhiteList.c │ ├── WhiteList.h │ ├── WinBase.h │ ├── WinKernel.c │ ├── WinKernel.h │ ├── Xor.c │ ├── Xor.h │ ├── ZwNtFunc.c │ ├── ZwNtFunc.h │ ├── defs.h │ ├── x360uDataList.c │ └── x360uDataList.h ├── HookPort │ ├── Data.h │ ├── DebugPrint.c │ ├── DebugPrint.h │ ├── Driver.c │ ├── Driver.h │ ├── FilterHook.c │ ├── FilterHook.h │ ├── Filter_CreateProcessNotifyRoutine.c │ ├── Filter_CreateProcessNotifyRoutine.h │ ├── Filter_CreateProcessNotifyRoutineEx.c │ ├── Filter_CreateProcessNotifyRoutineEx.h │ ├── Filter_CreateThreadNotifyRoutine.c │ ├── Filter_CreateThreadNotifyRoutine.h │ ├── Filter_KeUserModeCallbackDispatcher.c │ ├── Filter_KeUserModeCallbackDispatcher.h │ ├── Filter_LoadImageNotifyRoutine.c │ ├── Filter_LoadImageNotifyRoutine.h │ ├── Filter_ZwContinue.c │ ├── Filter_ZwContinue.h │ ├── Filter_ZwCreateFile.c │ ├── Filter_ZwCreateFile.h │ ├── Filter_ZwCreateThread.c │ ├── Filter_ZwCreateThread.h │ ├── Filter_ZwDisplayString.c │ ├── Filter_ZwDisplayString.h │ ├── Filter_ZwLoadDriver.c │ ├── Filter_ZwLoadDriver.h │ ├── Filter_ZwOpenFile.c │ ├── Filter_ZwOpenFile.h │ ├── Filter_ZwSetSystemInformation.c │ ├── Filter_ZwSetSystemInformation.h │ ├── Filter_ZwUnloadDriver.c │ ├── Filter_ZwUnloadDriver.h │ ├── Filter_ZwWriteFile.c │ ├── Filter_ZwWriteFile.h │ ├── HookPort.inf │ ├── HookPort.vcxproj │ ├── HookPort.vcxproj.filters │ ├── HookPort.vcxproj.user │ ├── IAT_KeUserModeCallback.c │ ├── IAT_KeUserModeCallback.h │ ├── IDT.c │ ├── IDT.h │ ├── KiFastCallEntry.c │ ├── KiFastCallEntry.h │ ├── SSDT.c │ ├── SSDT.h │ ├── System.c │ ├── System.h │ ├── Win32k.c │ ├── Win32k.h │ ├── WinKernel.c │ ├── WinKernel.h │ ├── defs.h │ └── ~AutoRecover.HookPort.vcxproj └── 说明文档 │ ├── 代码说明.txt │ ├── 编程遇到的坑 │ └── HookPort部分 │ │ ├── KeUserModeCallback相关信息 │ │ ├── Win7.txt │ │ └── XP SP2的callback函数.txt │ │ ├── 抄代码产生的bug │ │ └── 抄代码发现的bug.pdf │ │ ├── 编程容易犯的错误总结 │ │ └── 1、有无符号问题.txt │ │ └── 蜜汁操作产生的问题 │ │ └── 各种手贱产生的问题.pdf │ └── 设计思路 │ ├── 数字驱动分析笔记之360SelfProtection.one │ ├── 数字驱动分析笔记之360SelfProtection.pdf │ ├── 数字驱动分析笔记之HookPort.one │ └── 数字驱动分析笔记之HookPort.pdf └── README.md /360Safe/360Safe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360Safe.sln -------------------------------------------------------------------------------- /360Safe/360Safe.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360Safe.v12.suo -------------------------------------------------------------------------------- /360Safe/360SelfProtection/360SelfProtection.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/360SelfProtection.inf -------------------------------------------------------------------------------- /360Safe/360SelfProtection/360SelfProtection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/360SelfProtection.vcxproj -------------------------------------------------------------------------------- /360Safe/360SelfProtection/360SelfProtection.vcxproj.backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/360SelfProtection.vcxproj.backup -------------------------------------------------------------------------------- /360Safe/360SelfProtection/360SelfProtection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/360SelfProtection.vcxproj.filters -------------------------------------------------------------------------------- /360Safe/360SelfProtection/360SelfProtection.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/360SelfProtection.vcxproj.user -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Command.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Command.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Context.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Context.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/CreateProcessDataList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/CreateProcessDataList.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/CreateProcessDataList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/CreateProcessDataList.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Data.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/DebugPrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/DebugPrint.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/DebugPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/DebugPrint.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Driver.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Driver.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/DrvmkDataList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/DrvmkDataList.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/DrvmkDataList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/DrvmkDataList.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_CreateProcessNotifyRoutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_CreateProcessNotifyRoutine.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_CreateProcessNotifyRoutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_CreateProcessNotifyRoutine.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_KeUserModeCallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_KeUserModeCallback.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_KeUserModeCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_KeUserModeCallback.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwAllocateVirtualMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwAllocateVirtualMemory.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwAllocateVirtualMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwAllocateVirtualMemory.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwAlpcSendWaitReceivePort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwAlpcSendWaitReceivePort.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwAlpcSendWaitReceivePort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwAlpcSendWaitReceivePort.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwCreateFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwCreateFile.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwCreateFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwCreateFile.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwCreateProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwCreateProcess.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwCreateProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwCreateProcess.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwCreateSection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwCreateSection.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwCreateSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwCreateSection.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwCreateSymbolicLinkObject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwCreateSymbolicLinkObject.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwCreateSymbolicLinkObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwCreateSymbolicLinkObject.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwCreateThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwCreateThread.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwCreateThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwCreateThread.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwDeleteFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwDeleteFile.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwDeleteFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwDeleteFile.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwDeleteKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwDeleteKey.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwDeleteKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwDeleteKey.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwDuplicateObject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwDuplicateObject.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwDuplicateObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwDuplicateObject.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwEnumerateValueKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwEnumerateValueKey.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwEnumerateValueKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwEnumerateValueKey.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwGetNextProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwGetNextProcess.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwGetNextProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwGetNextProcess.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwGetNextThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwGetNextThread.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwGetNextThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwGetNextThread.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwLoadDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwLoadDriver.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwLoadDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwLoadDriver.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwMakeTemporaryObject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwMakeTemporaryObject.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwMakeTemporaryObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwMakeTemporaryObject.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwOpenFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwOpenFile.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwOpenFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwOpenFile.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwOpenKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwOpenKey.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwOpenKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwOpenKey.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwOpenMutant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwOpenMutant.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwOpenMutant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwOpenMutant.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwOpenProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwOpenProcess.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwOpenProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwOpenProcess.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwOpenSection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwOpenSection.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwOpenSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwOpenSection.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwOpenThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwOpenThread.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwOpenThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwOpenThread.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwRenameKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwRenameKey.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwRenameKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwRenameKey.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwReplaceKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwReplaceKey.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwReplaceKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwReplaceKey.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwRestoreKey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwRestoreKey.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwRestoreKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwRestoreKey.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwSetSystemInformation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwSetSystemInformation.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwSetSystemInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwSetSystemInformation.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwSetSystemTime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwSetSystemTime.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwSetSystemTime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwSetSystemTime.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwSuspendProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwSuspendProcess.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwSuspendProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwSuspendProcess.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwSuspendThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwSuspendThread.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwSuspendThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwSuspendThread.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwTerminateProcess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwTerminateProcess.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwTerminateProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwTerminateProcess.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwUnmapViewOfSection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwUnmapViewOfSection.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwUnmapViewOfSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwUnmapViewOfSection.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwUserBuildHwndList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwUserBuildHwndList.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwUserBuildHwndList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwUserBuildHwndList.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwWriteFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwWriteFile.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwWriteFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwWriteFile.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwWriteVirtualMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwWriteVirtualMemory.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Fake_ZwWriteVirtualMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Fake_ZwWriteVirtualMemory.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Hash.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Hash.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/HookPortDeviceExtension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/HookPortDeviceExtension.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/HookPortDeviceExtension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/HookPortDeviceExtension.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/MemCheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/MemCheck.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/MemCheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/MemCheck.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/NoSystemProcessDataList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/NoSystemProcessDataList.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/NoSystemProcessDataList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/NoSystemProcessDataList.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Object.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Object.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/PE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/PE.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/PE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/PE.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Regedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Regedit.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Regedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Regedit.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/RetFuncArray_File.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /360Safe/360SelfProtection/SSDT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/SSDT.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/SSDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/SSDT.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/SafeWarning.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/SafeWarning.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/SafeWarning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/SafeWarning.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/SrvTransactionNotImplemented.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/SrvTransactionNotImplemented.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/SrvTransactionNotImplemented.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/SrvTransactionNotImplemented.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/System.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/System.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/System.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/SystemProcessDataList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/SystemProcessDataList.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/SystemProcessDataList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/SystemProcessDataList.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/VirtualMemoryDataList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/VirtualMemoryDataList.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/VirtualMemoryDataList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/VirtualMemoryDataList.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/WhiteList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/WhiteList.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/WhiteList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/WhiteList.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/WinBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/WinBase.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/WinKernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/WinKernel.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/WinKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/WinKernel.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Xor.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/Xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/Xor.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/ZwNtFunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/ZwNtFunc.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/ZwNtFunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/ZwNtFunc.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/defs.h -------------------------------------------------------------------------------- /360Safe/360SelfProtection/x360uDataList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/x360uDataList.c -------------------------------------------------------------------------------- /360Safe/360SelfProtection/x360uDataList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/360SelfProtection/x360uDataList.h -------------------------------------------------------------------------------- /360Safe/HookPort/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Data.h -------------------------------------------------------------------------------- /360Safe/HookPort/DebugPrint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/DebugPrint.c -------------------------------------------------------------------------------- /360Safe/HookPort/DebugPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/DebugPrint.h -------------------------------------------------------------------------------- /360Safe/HookPort/Driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Driver.c -------------------------------------------------------------------------------- /360Safe/HookPort/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Driver.h -------------------------------------------------------------------------------- /360Safe/HookPort/FilterHook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/FilterHook.c -------------------------------------------------------------------------------- /360Safe/HookPort/FilterHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/FilterHook.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_CreateProcessNotifyRoutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_CreateProcessNotifyRoutine.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_CreateProcessNotifyRoutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_CreateProcessNotifyRoutine.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_CreateProcessNotifyRoutineEx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_CreateProcessNotifyRoutineEx.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_CreateProcessNotifyRoutineEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_CreateProcessNotifyRoutineEx.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_CreateThreadNotifyRoutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_CreateThreadNotifyRoutine.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_CreateThreadNotifyRoutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_CreateThreadNotifyRoutine.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_KeUserModeCallbackDispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_KeUserModeCallbackDispatcher.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_KeUserModeCallbackDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_KeUserModeCallbackDispatcher.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_LoadImageNotifyRoutine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_LoadImageNotifyRoutine.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_LoadImageNotifyRoutine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_LoadImageNotifyRoutine.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwContinue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwContinue.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwContinue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwContinue.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwCreateFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwCreateFile.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwCreateFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwCreateFile.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwCreateThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwCreateThread.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwCreateThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwCreateThread.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwDisplayString.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwDisplayString.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwDisplayString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwDisplayString.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwLoadDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwLoadDriver.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwLoadDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwLoadDriver.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwOpenFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwOpenFile.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwOpenFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwOpenFile.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwSetSystemInformation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwSetSystemInformation.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwSetSystemInformation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwSetSystemInformation.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwUnloadDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwUnloadDriver.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwUnloadDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwUnloadDriver.h -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwWriteFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwWriteFile.c -------------------------------------------------------------------------------- /360Safe/HookPort/Filter_ZwWriteFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Filter_ZwWriteFile.h -------------------------------------------------------------------------------- /360Safe/HookPort/HookPort.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/HookPort.inf -------------------------------------------------------------------------------- /360Safe/HookPort/HookPort.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/HookPort.vcxproj -------------------------------------------------------------------------------- /360Safe/HookPort/HookPort.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/HookPort.vcxproj.filters -------------------------------------------------------------------------------- /360Safe/HookPort/HookPort.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/HookPort.vcxproj.user -------------------------------------------------------------------------------- /360Safe/HookPort/IAT_KeUserModeCallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/IAT_KeUserModeCallback.c -------------------------------------------------------------------------------- /360Safe/HookPort/IAT_KeUserModeCallback.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include -------------------------------------------------------------------------------- /360Safe/HookPort/IDT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/IDT.c -------------------------------------------------------------------------------- /360Safe/HookPort/IDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/IDT.h -------------------------------------------------------------------------------- /360Safe/HookPort/KiFastCallEntry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/KiFastCallEntry.c -------------------------------------------------------------------------------- /360Safe/HookPort/KiFastCallEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/KiFastCallEntry.h -------------------------------------------------------------------------------- /360Safe/HookPort/SSDT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/SSDT.c -------------------------------------------------------------------------------- /360Safe/HookPort/SSDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/SSDT.h -------------------------------------------------------------------------------- /360Safe/HookPort/System.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/System.c -------------------------------------------------------------------------------- /360Safe/HookPort/System.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/System.h -------------------------------------------------------------------------------- /360Safe/HookPort/Win32k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Win32k.c -------------------------------------------------------------------------------- /360Safe/HookPort/Win32k.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/Win32k.h -------------------------------------------------------------------------------- /360Safe/HookPort/WinKernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/WinKernel.c -------------------------------------------------------------------------------- /360Safe/HookPort/WinKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/WinKernel.h -------------------------------------------------------------------------------- /360Safe/HookPort/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/defs.h -------------------------------------------------------------------------------- /360Safe/HookPort/~AutoRecover.HookPort.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/HookPort/~AutoRecover.HookPort.vcxproj -------------------------------------------------------------------------------- /360Safe/说明文档/代码说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/说明文档/代码说明.txt -------------------------------------------------------------------------------- /360Safe/说明文档/编程遇到的坑/HookPort部分/KeUserModeCallback相关信息/Win7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/说明文档/编程遇到的坑/HookPort部分/KeUserModeCallback相关信息/Win7.txt -------------------------------------------------------------------------------- /360Safe/说明文档/编程遇到的坑/HookPort部分/KeUserModeCallback相关信息/XP SP2的callback函数.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/说明文档/编程遇到的坑/HookPort部分/KeUserModeCallback相关信息/XP SP2的callback函数.txt -------------------------------------------------------------------------------- /360Safe/说明文档/编程遇到的坑/HookPort部分/抄代码产生的bug/抄代码发现的bug.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/说明文档/编程遇到的坑/HookPort部分/抄代码产生的bug/抄代码发现的bug.pdf -------------------------------------------------------------------------------- /360Safe/说明文档/编程遇到的坑/HookPort部分/编程容易犯的错误总结/1、有无符号问题.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/说明文档/编程遇到的坑/HookPort部分/编程容易犯的错误总结/1、有无符号问题.txt -------------------------------------------------------------------------------- /360Safe/说明文档/编程遇到的坑/HookPort部分/蜜汁操作产生的问题/各种手贱产生的问题.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/说明文档/编程遇到的坑/HookPort部分/蜜汁操作产生的问题/各种手贱产生的问题.pdf -------------------------------------------------------------------------------- /360Safe/说明文档/设计思路/数字驱动分析笔记之360SelfProtection.one: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/说明文档/设计思路/数字驱动分析笔记之360SelfProtection.one -------------------------------------------------------------------------------- /360Safe/说明文档/设计思路/数字驱动分析笔记之360SelfProtection.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/说明文档/设计思路/数字驱动分析笔记之360SelfProtection.pdf -------------------------------------------------------------------------------- /360Safe/说明文档/设计思路/数字驱动分析笔记之HookPort.one: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/说明文档/设计思路/数字驱动分析笔记之HookPort.one -------------------------------------------------------------------------------- /360Safe/说明文档/设计思路/数字驱动分析笔记之HookPort.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/360Safe/说明文档/设计思路/数字驱动分析笔记之HookPort.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WINGS2709/360Safe/HEAD/README.md --------------------------------------------------------------------------------