├── .gitattributes ├── .gitignore ├── PCHunterDrv.sln ├── PCHunterDrv ├── PCHunterDrv.vcxproj └── PCHunterDrv.vcxproj.filters ├── README.md └── Source ├── Dispatches.c ├── Dispatches.h ├── Imports.h ├── KrnlFile.c ├── KrnlSSDT.c ├── KrnlSSDT.h ├── KrnlSSSDT.c ├── KrnlSSSDT.h ├── ModuleCore.c ├── ModuleCore.h ├── NtStructs.h ├── PCHunterDrv.c ├── PCHunterDrv.h ├── Private.c ├── Private.h ├── ProcessCore.c ├── ProcessCore.h ├── ProcessHandle.c ├── ProcessHandle.h ├── ProcessMemory.c ├── ProcessMemory.h ├── ProcessModule.c ├── ProcessModule.h ├── ProcessPrivilege.c ├── ProcessPrivilege.h ├── ProcessThread.c ├── ProcessThread.h ├── ProcessWindow.c ├── ProcessWindow.h ├── SysCallback.c ├── SysCallback.h ├── SysDpcTimer.c ├── SysDpcTimer.h ├── SysFilterDriver.c ├── SysFilterDriver.h ├── SysIoTimer .c ├── SysIoTimer.h ├── SysThread.c ├── SysThread.h └── krnlFile.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/.gitignore -------------------------------------------------------------------------------- /PCHunterDrv.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/PCHunterDrv.sln -------------------------------------------------------------------------------- /PCHunterDrv/PCHunterDrv.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/PCHunterDrv/PCHunterDrv.vcxproj -------------------------------------------------------------------------------- /PCHunterDrv/PCHunterDrv.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/PCHunterDrv/PCHunterDrv.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/README.md -------------------------------------------------------------------------------- /Source/Dispatches.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/Dispatches.c -------------------------------------------------------------------------------- /Source/Dispatches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/Dispatches.h -------------------------------------------------------------------------------- /Source/Imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/Imports.h -------------------------------------------------------------------------------- /Source/KrnlFile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/KrnlFile.c -------------------------------------------------------------------------------- /Source/KrnlSSDT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/KrnlSSDT.c -------------------------------------------------------------------------------- /Source/KrnlSSDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/KrnlSSDT.h -------------------------------------------------------------------------------- /Source/KrnlSSSDT.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/KrnlSSSDT.c -------------------------------------------------------------------------------- /Source/KrnlSSSDT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/KrnlSSSDT.h -------------------------------------------------------------------------------- /Source/ModuleCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ModuleCore.c -------------------------------------------------------------------------------- /Source/ModuleCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ModuleCore.h -------------------------------------------------------------------------------- /Source/NtStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/NtStructs.h -------------------------------------------------------------------------------- /Source/PCHunterDrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/PCHunterDrv.c -------------------------------------------------------------------------------- /Source/PCHunterDrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/PCHunterDrv.h -------------------------------------------------------------------------------- /Source/Private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/Private.c -------------------------------------------------------------------------------- /Source/Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/Private.h -------------------------------------------------------------------------------- /Source/ProcessCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessCore.c -------------------------------------------------------------------------------- /Source/ProcessCore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessCore.h -------------------------------------------------------------------------------- /Source/ProcessHandle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessHandle.c -------------------------------------------------------------------------------- /Source/ProcessHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessHandle.h -------------------------------------------------------------------------------- /Source/ProcessMemory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessMemory.c -------------------------------------------------------------------------------- /Source/ProcessMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessMemory.h -------------------------------------------------------------------------------- /Source/ProcessModule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessModule.c -------------------------------------------------------------------------------- /Source/ProcessModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessModule.h -------------------------------------------------------------------------------- /Source/ProcessPrivilege.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessPrivilege.c -------------------------------------------------------------------------------- /Source/ProcessPrivilege.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessPrivilege.h -------------------------------------------------------------------------------- /Source/ProcessThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessThread.c -------------------------------------------------------------------------------- /Source/ProcessThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessThread.h -------------------------------------------------------------------------------- /Source/ProcessWindow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessWindow.c -------------------------------------------------------------------------------- /Source/ProcessWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/ProcessWindow.h -------------------------------------------------------------------------------- /Source/SysCallback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/SysCallback.c -------------------------------------------------------------------------------- /Source/SysCallback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/SysCallback.h -------------------------------------------------------------------------------- /Source/SysDpcTimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/SysDpcTimer.c -------------------------------------------------------------------------------- /Source/SysDpcTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/SysDpcTimer.h -------------------------------------------------------------------------------- /Source/SysFilterDriver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/SysFilterDriver.c -------------------------------------------------------------------------------- /Source/SysFilterDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/SysFilterDriver.h -------------------------------------------------------------------------------- /Source/SysIoTimer .c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/SysIoTimer .c -------------------------------------------------------------------------------- /Source/SysIoTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/SysIoTimer.h -------------------------------------------------------------------------------- /Source/SysThread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/SysThread.c -------------------------------------------------------------------------------- /Source/SysThread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/SysThread.h -------------------------------------------------------------------------------- /Source/krnlFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzureGreen/ArkToolDrv/HEAD/Source/krnlFile.h --------------------------------------------------------------------------------