├── DriverProtection ├── PassByIce │ ├── PassByIce.cpp │ ├── PassByIce.dsp │ ├── PassByIce.dsw │ ├── PassByIce.h │ ├── PassByIce.rc │ ├── PassByIce.sln │ ├── PassByIce.vcproj │ ├── PassByIce.vcproj.ST.Administrator.user │ ├── PassByIceDlg.cpp │ ├── PassByIceDlg.h │ ├── ReadMe.txt │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── res │ │ ├── PassByIce.ico │ │ └── PassByIce.rc2 │ └── resource.h ├── PassByIce_Driver │ ├── PassByIce.c │ ├── PassByIce.rar │ ├── makefile │ └── sources └── 说明.txt ├── Dual-processProtection ├── ExeProtect │ ├── ExeProtect.rc │ ├── Frpo.cpp │ ├── Frpo.dsp │ ├── Frpo.dsw │ ├── Frpo.h │ ├── Frpo.sln │ ├── Frpo.vcproj │ ├── Frpo.vcproj.NETLAB-TEST.Administrator.user │ ├── Frpo.vcproj.ST.Administrator.user │ ├── MyLog.cpp │ ├── MyLog.h │ ├── ServiceHelper │ │ ├── ServiceHelper.cpp │ │ └── ServiceHelper.h │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── WindowService │ │ ├── NTService.cpp │ │ ├── NTService.h │ │ ├── myservice.cpp │ │ ├── myservice.h │ │ └── ntservmsg.h │ └── resource.h ├── TempProcess │ ├── LogFile.h │ ├── TempProcess.dsp │ ├── TempProcess.dsw │ ├── TempProcess.rc │ ├── TempProcess.sln │ ├── TempProcess.vcproj │ ├── TempProcess.vcproj.ST.Administrator.user │ ├── main.cpp │ ├── main.h │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── bin │ └── release │ │ ├── ExeProtect.exe │ │ ├── ProcessSet.ini │ │ ├── SafeProcess.exe │ │ └── TempProcess.exe ├── safeprocess │ ├── SafeProcess.cpp │ ├── SafeProcess.dsp │ ├── SafeProcess.dsw │ ├── SafeProcess.rc │ ├── SafeProcess.sln │ ├── SafeProcess.vcproj │ ├── SafeProcess.vcproj.ST.Administrator.user │ ├── SafeProcess │ │ ├── ProProcess.cpp │ │ ├── ProProcess.h │ │ ├── ProcessType.cpp │ │ ├── ProcessType.h │ │ ├── RunType.cpp │ │ └── RunType.h │ └── resource.h └── 说明.txt ├── HookNtQuerySystemInformation and DetoursPreventKilled ├── DetourDll │ ├── DetourDll.cpp │ ├── DetourDll.def │ ├── DetourDll.dsp │ ├── DetourDll.h │ ├── DetourDll.rc │ ├── DetourDll.sln │ ├── DetourDll.vcproj │ ├── DetourDll.vcproj.ST.Administrator.user │ ├── ReadMe.txt │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── detours.h │ ├── detours.lib │ └── resource.h ├── HookNt │ ├── HookApi.cpp │ ├── HookApi.dsp │ ├── HookApi.dsw │ ├── HookApi.h │ ├── HookApi.rc │ ├── HookApi.sln │ ├── HookApi.vcproj │ ├── HookApi.vcproj.ST.Administrator.user │ ├── HookClass.cpp │ ├── HookClass.h │ ├── resource.h │ └── stdafx.h ├── bin │ └── release │ │ ├── HookNTQSI.dll │ │ ├── NoKillDll.dll │ │ └── killtest.exe ├── killtest │ ├── ReadMe.txt │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── TaskKeyMgr.cpp │ ├── TaskKeyMgr.h │ ├── killtest.cpp │ ├── killtest.dsp │ ├── killtest.dsw │ ├── killtest.rc │ ├── killtest.sln │ ├── killtest.vcproj │ ├── killtest.vcproj.ST.Administrator.user │ └── resource.h └── 说明.txt ├── HookTaskmgr ├── HookTaskmgr │ ├── HookTaskmgr.cpp │ ├── HookTaskmgr.dsp │ ├── HookTaskmgr.dsw │ ├── HookTaskmgr.h │ ├── HookTaskmgr.rc │ ├── HookTaskmgr.sln │ ├── HookTaskmgr.vcproj │ ├── HookTaskmgr.vcproj.ST.Administrator.user │ ├── HookTaskmgrDlg.cpp │ ├── HookTaskmgrDlg.h │ ├── ReadMe.txt │ ├── StdAfx.cpp │ ├── StdAfx.h │ ├── exeDebuger.h │ ├── res │ │ ├── HookTaskmgr.ico │ │ └── HookTaskmgr.rc2 │ └── resource.h ├── SafeProcess │ ├── SafeProcess.cpp │ ├── SafeProcess.dsp │ ├── SafeProcess.dsw │ ├── SafeProcess.h │ ├── SafeProcess.rc │ ├── SafeProcess.sln │ ├── SafeProcess.vcproj │ ├── SafeProcess.vcproj.ST.Administrator.user │ ├── exports.def │ └── resource.h ├── bin │ └── release │ │ ├── HookTaskmgr.exe │ │ └── SafeProcess.dll └── 说明.txt ├── chi.ssg ├── readme.md └── ring3Right ├── KillMe ├── KillMe.cpp ├── KillMe.depend ├── KillMe.dsp ├── KillMe.dsw ├── KillMe.h ├── KillMe.layout ├── KillMe.rc ├── KillMe.sln ├── KillMe.vcproj ├── KillMe.vcproj.ST.Administrator.user ├── KillMeDlg.cpp ├── KillMeDlg.h ├── ReadMe.txt ├── StdAfx.cpp ├── StdAfx.h ├── kwindef.h ├── res │ ├── KillMe.ico │ ├── KillMe.rc2 │ └── default1.bin ├── resource.h ├── webbrowser2.cpp └── webbrowser2.h ├── WriteMemory ├── WriteMemory.cpp ├── WriteMemory.dsp ├── WriteMemory.dsw ├── WriteMemory.h ├── WriteMemory.rc ├── WriteMemory.sln ├── WriteMemory.vcproj ├── WriteMemory.vcproj.ST.Administrator.user ├── WriteMemory.vcproj.VM_QYZ2003.Administrator.user ├── _WriteMemory.h ├── kwindef.h ├── resource.h ├── stdafx.cpp └── stdafx.h ├── bin └── release │ ├── WriteMemory.dll │ └── killMe.exe └── 说明.txt /DriverProtection/PassByIce/PassByIce.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/PassByIce.cpp -------------------------------------------------------------------------------- /DriverProtection/PassByIce/PassByIce.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/PassByIce.dsp -------------------------------------------------------------------------------- /DriverProtection/PassByIce/PassByIce.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/PassByIce.dsw -------------------------------------------------------------------------------- /DriverProtection/PassByIce/PassByIce.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/PassByIce.h -------------------------------------------------------------------------------- /DriverProtection/PassByIce/PassByIce.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/PassByIce.rc -------------------------------------------------------------------------------- /DriverProtection/PassByIce/PassByIce.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/PassByIce.sln -------------------------------------------------------------------------------- /DriverProtection/PassByIce/PassByIce.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/PassByIce.vcproj -------------------------------------------------------------------------------- /DriverProtection/PassByIce/PassByIce.vcproj.ST.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/PassByIce.vcproj.ST.Administrator.user -------------------------------------------------------------------------------- /DriverProtection/PassByIce/PassByIceDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/PassByIceDlg.cpp -------------------------------------------------------------------------------- /DriverProtection/PassByIce/PassByIceDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/PassByIceDlg.h -------------------------------------------------------------------------------- /DriverProtection/PassByIce/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/ReadMe.txt -------------------------------------------------------------------------------- /DriverProtection/PassByIce/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/StdAfx.cpp -------------------------------------------------------------------------------- /DriverProtection/PassByIce/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/StdAfx.h -------------------------------------------------------------------------------- /DriverProtection/PassByIce/res/PassByIce.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/res/PassByIce.ico -------------------------------------------------------------------------------- /DriverProtection/PassByIce/res/PassByIce.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/res/PassByIce.rc2 -------------------------------------------------------------------------------- /DriverProtection/PassByIce/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce/resource.h -------------------------------------------------------------------------------- /DriverProtection/PassByIce_Driver/PassByIce.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce_Driver/PassByIce.c -------------------------------------------------------------------------------- /DriverProtection/PassByIce_Driver/PassByIce.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce_Driver/PassByIce.rar -------------------------------------------------------------------------------- /DriverProtection/PassByIce_Driver/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce_Driver/makefile -------------------------------------------------------------------------------- /DriverProtection/PassByIce_Driver/sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/PassByIce_Driver/sources -------------------------------------------------------------------------------- /DriverProtection/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/DriverProtection/说明.txt -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/ExeProtect.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/ExeProtect.rc -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/Frpo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/Frpo.cpp -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/Frpo.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/Frpo.dsp -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/Frpo.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/Frpo.dsw -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/Frpo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/Frpo.h -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/Frpo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/Frpo.sln -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/Frpo.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/Frpo.vcproj -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/Frpo.vcproj.NETLAB-TEST.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/Frpo.vcproj.NETLAB-TEST.Administrator.user -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/Frpo.vcproj.ST.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/Frpo.vcproj.ST.Administrator.user -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/MyLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/MyLog.cpp -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/MyLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/MyLog.h -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/ServiceHelper/ServiceHelper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/ServiceHelper/ServiceHelper.cpp -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/ServiceHelper/ServiceHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/ServiceHelper/ServiceHelper.h -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/StdAfx.cpp -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/StdAfx.h -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/WindowService/NTService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/WindowService/NTService.cpp -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/WindowService/NTService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/WindowService/NTService.h -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/WindowService/myservice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/WindowService/myservice.cpp -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/WindowService/myservice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/WindowService/myservice.h -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/WindowService/ntservmsg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/WindowService/ntservmsg.h -------------------------------------------------------------------------------- /Dual-processProtection/ExeProtect/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/ExeProtect/resource.h -------------------------------------------------------------------------------- /Dual-processProtection/TempProcess/LogFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/TempProcess/LogFile.h -------------------------------------------------------------------------------- /Dual-processProtection/TempProcess/TempProcess.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/TempProcess/TempProcess.dsp -------------------------------------------------------------------------------- /Dual-processProtection/TempProcess/TempProcess.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/TempProcess/TempProcess.dsw -------------------------------------------------------------------------------- /Dual-processProtection/TempProcess/TempProcess.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/TempProcess/TempProcess.rc -------------------------------------------------------------------------------- /Dual-processProtection/TempProcess/TempProcess.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/TempProcess/TempProcess.sln -------------------------------------------------------------------------------- /Dual-processProtection/TempProcess/TempProcess.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/TempProcess/TempProcess.vcproj -------------------------------------------------------------------------------- /Dual-processProtection/TempProcess/TempProcess.vcproj.ST.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/TempProcess/TempProcess.vcproj.ST.Administrator.user -------------------------------------------------------------------------------- /Dual-processProtection/TempProcess/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/TempProcess/main.cpp -------------------------------------------------------------------------------- /Dual-processProtection/TempProcess/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/TempProcess/main.h -------------------------------------------------------------------------------- /Dual-processProtection/TempProcess/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/TempProcess/resource.h -------------------------------------------------------------------------------- /Dual-processProtection/TempProcess/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/TempProcess/stdafx.cpp -------------------------------------------------------------------------------- /Dual-processProtection/TempProcess/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/TempProcess/stdafx.h -------------------------------------------------------------------------------- /Dual-processProtection/bin/release/ExeProtect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/bin/release/ExeProtect.exe -------------------------------------------------------------------------------- /Dual-processProtection/bin/release/ProcessSet.ini: -------------------------------------------------------------------------------- 1 | [Setting] 2 | Protect=1 3 | -------------------------------------------------------------------------------- /Dual-processProtection/bin/release/SafeProcess.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/bin/release/SafeProcess.exe -------------------------------------------------------------------------------- /Dual-processProtection/bin/release/TempProcess.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/bin/release/TempProcess.exe -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/SafeProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/SafeProcess.cpp -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/SafeProcess.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/SafeProcess.dsp -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/SafeProcess.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/SafeProcess.dsw -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/SafeProcess.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/SafeProcess.rc -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/SafeProcess.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/SafeProcess.sln -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/SafeProcess.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/SafeProcess.vcproj -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/SafeProcess.vcproj.ST.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/SafeProcess.vcproj.ST.Administrator.user -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/SafeProcess/ProProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/SafeProcess/ProProcess.cpp -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/SafeProcess/ProProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/SafeProcess/ProProcess.h -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/SafeProcess/ProcessType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/SafeProcess/ProcessType.cpp -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/SafeProcess/ProcessType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/SafeProcess/ProcessType.h -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/SafeProcess/RunType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/SafeProcess/RunType.cpp -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/SafeProcess/RunType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/SafeProcess/RunType.h -------------------------------------------------------------------------------- /Dual-processProtection/safeprocess/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/safeprocess/resource.h -------------------------------------------------------------------------------- /Dual-processProtection/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/Dual-processProtection/说明.txt -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.cpp -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.def -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.dsp -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.h -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.rc -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.sln -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.vcproj -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.vcproj.ST.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/DetourDll.vcproj.ST.Administrator.user -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/ReadMe.txt -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/StdAfx.cpp -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/StdAfx.h -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/detours.h -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/detours.lib -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/DetourDll/resource.h -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.cpp -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.dsp -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.dsw -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.h -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.rc -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.sln -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.vcproj -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.vcproj.ST.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookApi.vcproj.ST.Administrator.user -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookClass.cpp -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/HookClass.h -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/resource.h -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/HookNt/stdafx.h -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/bin/release/HookNTQSI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/bin/release/HookNTQSI.dll -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/bin/release/NoKillDll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/bin/release/NoKillDll.dll -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/bin/release/killtest.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/bin/release/killtest.exe -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/killtest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/killtest/ReadMe.txt -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/killtest/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/killtest/StdAfx.cpp -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/killtest/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/killtest/StdAfx.h -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/killtest/TaskKeyMgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/killtest/TaskKeyMgr.cpp -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/killtest/TaskKeyMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/killtest/TaskKeyMgr.h -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.cpp -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.dsp -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.dsw -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.rc -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.sln -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.vcproj -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.vcproj.ST.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/killtest/killtest.vcproj.ST.Administrator.user -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/killtest/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/killtest/resource.h -------------------------------------------------------------------------------- /HookNtQuerySystemInformation and DetoursPreventKilled/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookNtQuerySystemInformation and DetoursPreventKilled/说明.txt -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/HookTaskmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/HookTaskmgr.cpp -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/HookTaskmgr.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/HookTaskmgr.dsp -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/HookTaskmgr.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/HookTaskmgr.dsw -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/HookTaskmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/HookTaskmgr.h -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/HookTaskmgr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/HookTaskmgr.rc -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/HookTaskmgr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/HookTaskmgr.sln -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/HookTaskmgr.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/HookTaskmgr.vcproj -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/HookTaskmgr.vcproj.ST.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/HookTaskmgr.vcproj.ST.Administrator.user -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/HookTaskmgrDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/HookTaskmgrDlg.cpp -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/HookTaskmgrDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/HookTaskmgrDlg.h -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/ReadMe.txt -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/StdAfx.cpp -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/StdAfx.h -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/exeDebuger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/exeDebuger.h -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/res/HookTaskmgr.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/res/HookTaskmgr.ico -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/res/HookTaskmgr.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/res/HookTaskmgr.rc2 -------------------------------------------------------------------------------- /HookTaskmgr/HookTaskmgr/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/HookTaskmgr/resource.h -------------------------------------------------------------------------------- /HookTaskmgr/SafeProcess/SafeProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/SafeProcess/SafeProcess.cpp -------------------------------------------------------------------------------- /HookTaskmgr/SafeProcess/SafeProcess.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/SafeProcess/SafeProcess.dsp -------------------------------------------------------------------------------- /HookTaskmgr/SafeProcess/SafeProcess.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/SafeProcess/SafeProcess.dsw -------------------------------------------------------------------------------- /HookTaskmgr/SafeProcess/SafeProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/SafeProcess/SafeProcess.h -------------------------------------------------------------------------------- /HookTaskmgr/SafeProcess/SafeProcess.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/SafeProcess/SafeProcess.rc -------------------------------------------------------------------------------- /HookTaskmgr/SafeProcess/SafeProcess.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/SafeProcess/SafeProcess.sln -------------------------------------------------------------------------------- /HookTaskmgr/SafeProcess/SafeProcess.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/SafeProcess/SafeProcess.vcproj -------------------------------------------------------------------------------- /HookTaskmgr/SafeProcess/SafeProcess.vcproj.ST.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/SafeProcess/SafeProcess.vcproj.ST.Administrator.user -------------------------------------------------------------------------------- /HookTaskmgr/SafeProcess/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/SafeProcess/exports.def -------------------------------------------------------------------------------- /HookTaskmgr/SafeProcess/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/SafeProcess/resource.h -------------------------------------------------------------------------------- /HookTaskmgr/bin/release/HookTaskmgr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/bin/release/HookTaskmgr.exe -------------------------------------------------------------------------------- /HookTaskmgr/bin/release/SafeProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/bin/release/SafeProcess.dll -------------------------------------------------------------------------------- /HookTaskmgr/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/HookTaskmgr/说明.txt -------------------------------------------------------------------------------- /chi.ssg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/chi.ssg -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/readme.md -------------------------------------------------------------------------------- /ring3Right/KillMe/KillMe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/KillMe.cpp -------------------------------------------------------------------------------- /ring3Right/KillMe/KillMe.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/KillMe.depend -------------------------------------------------------------------------------- /ring3Right/KillMe/KillMe.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/KillMe.dsp -------------------------------------------------------------------------------- /ring3Right/KillMe/KillMe.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/KillMe.dsw -------------------------------------------------------------------------------- /ring3Right/KillMe/KillMe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/KillMe.h -------------------------------------------------------------------------------- /ring3Right/KillMe/KillMe.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/KillMe.layout -------------------------------------------------------------------------------- /ring3Right/KillMe/KillMe.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/KillMe.rc -------------------------------------------------------------------------------- /ring3Right/KillMe/KillMe.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/KillMe.sln -------------------------------------------------------------------------------- /ring3Right/KillMe/KillMe.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/KillMe.vcproj -------------------------------------------------------------------------------- /ring3Right/KillMe/KillMe.vcproj.ST.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/KillMe.vcproj.ST.Administrator.user -------------------------------------------------------------------------------- /ring3Right/KillMe/KillMeDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/KillMeDlg.cpp -------------------------------------------------------------------------------- /ring3Right/KillMe/KillMeDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/KillMeDlg.h -------------------------------------------------------------------------------- /ring3Right/KillMe/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/ReadMe.txt -------------------------------------------------------------------------------- /ring3Right/KillMe/StdAfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/StdAfx.cpp -------------------------------------------------------------------------------- /ring3Right/KillMe/StdAfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/StdAfx.h -------------------------------------------------------------------------------- /ring3Right/KillMe/kwindef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/kwindef.h -------------------------------------------------------------------------------- /ring3Right/KillMe/res/KillMe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/res/KillMe.ico -------------------------------------------------------------------------------- /ring3Right/KillMe/res/KillMe.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/res/KillMe.rc2 -------------------------------------------------------------------------------- /ring3Right/KillMe/res/default1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/res/default1.bin -------------------------------------------------------------------------------- /ring3Right/KillMe/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/resource.h -------------------------------------------------------------------------------- /ring3Right/KillMe/webbrowser2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/webbrowser2.cpp -------------------------------------------------------------------------------- /ring3Right/KillMe/webbrowser2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/KillMe/webbrowser2.h -------------------------------------------------------------------------------- /ring3Right/WriteMemory/WriteMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/WriteMemory.cpp -------------------------------------------------------------------------------- /ring3Right/WriteMemory/WriteMemory.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/WriteMemory.dsp -------------------------------------------------------------------------------- /ring3Right/WriteMemory/WriteMemory.dsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/WriteMemory.dsw -------------------------------------------------------------------------------- /ring3Right/WriteMemory/WriteMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/WriteMemory.h -------------------------------------------------------------------------------- /ring3Right/WriteMemory/WriteMemory.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/WriteMemory.rc -------------------------------------------------------------------------------- /ring3Right/WriteMemory/WriteMemory.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/WriteMemory.sln -------------------------------------------------------------------------------- /ring3Right/WriteMemory/WriteMemory.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/WriteMemory.vcproj -------------------------------------------------------------------------------- /ring3Right/WriteMemory/WriteMemory.vcproj.ST.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/WriteMemory.vcproj.ST.Administrator.user -------------------------------------------------------------------------------- /ring3Right/WriteMemory/WriteMemory.vcproj.VM_QYZ2003.Administrator.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/WriteMemory.vcproj.VM_QYZ2003.Administrator.user -------------------------------------------------------------------------------- /ring3Right/WriteMemory/_WriteMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/_WriteMemory.h -------------------------------------------------------------------------------- /ring3Right/WriteMemory/kwindef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/kwindef.h -------------------------------------------------------------------------------- /ring3Right/WriteMemory/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/resource.h -------------------------------------------------------------------------------- /ring3Right/WriteMemory/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/stdafx.cpp -------------------------------------------------------------------------------- /ring3Right/WriteMemory/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/WriteMemory/stdafx.h -------------------------------------------------------------------------------- /ring3Right/bin/release/WriteMemory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/bin/release/WriteMemory.dll -------------------------------------------------------------------------------- /ring3Right/bin/release/killMe.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/bin/release/killMe.exe -------------------------------------------------------------------------------- /ring3Right/说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sg-first/Process-prevent-killed/HEAD/ring3Right/说明.txt --------------------------------------------------------------------------------