├── .gitattributes ├── .gitignore ├── KernelAntiCheat ├── Funcs │ ├── Hardware │ │ ├── HardwareInfo.c │ │ └── HardwareInfo.h │ ├── Protects │ │ ├── ScanBigPool.c │ │ ├── ScanCodeIntegrity.c │ │ ├── ScanDispatchDrivers.c │ │ ├── ScanHV.c │ │ ├── ScanPIDDB.c │ │ ├── ScanPerfectInjector.c │ │ ├── ScanPhysMemHandles.c │ │ ├── ScanSSDTHooks.c │ │ ├── ScanSysThreads.c │ │ └── ScanUnloadedDrivers.c │ ├── Signature │ │ ├── ValidateSignature.c │ │ └── ValidateSignature.h │ ├── funcs.h │ ├── log.c │ ├── log.h │ ├── utils.c │ └── utils.h ├── KernelAntiCheat.vcxproj ├── KernelAntiCheat.vcxproj.filters ├── Natives │ ├── Hde │ │ ├── hde64.c │ │ ├── hde64.h │ │ └── table64.h │ ├── Imports.h │ ├── NativeEnums.h │ ├── NativeStructs.h │ ├── PEStructs.h │ ├── Windows │ │ ├── RAIIUtilites.c │ │ ├── RAIIUtilites.h │ │ └── ci.h │ └── stdint.h └── entry.c ├── Libs └── ci.lib ├── README.md └── UAC.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/.gitignore -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Hardware/HardwareInfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/Hardware/HardwareInfo.c -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Hardware/HardwareInfo.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "../../Funcs/utils.h" 3 | 4 | PSYSTEM_BOOT_ENVIRONMENT_INFORMATION GetBootUUID(); -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Protects/ScanBigPool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/Protects/ScanBigPool.c -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Protects/ScanCodeIntegrity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/Protects/ScanCodeIntegrity.c -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Protects/ScanDispatchDrivers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/Protects/ScanDispatchDrivers.c -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Protects/ScanHV.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/Protects/ScanHV.c -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Protects/ScanPIDDB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/Protects/ScanPIDDB.c -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Protects/ScanPerfectInjector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/Protects/ScanPerfectInjector.c -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Protects/ScanPhysMemHandles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/Protects/ScanPhysMemHandles.c -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Protects/ScanSSDTHooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/Protects/ScanSSDTHooks.c -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Protects/ScanSysThreads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/Protects/ScanSysThreads.c -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Protects/ScanUnloadedDrivers.c: -------------------------------------------------------------------------------- 1 | #include "..\funcs.h" 2 | PUNLOADED_DRIVERS MmUnloadedDrivers; 3 | -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Signature/ValidateSignature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/Signature/ValidateSignature.c -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/Signature/ValidateSignature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/Signature/ValidateSignature.h -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/funcs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/funcs.h -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/log.c -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/log.h -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/utils.c -------------------------------------------------------------------------------- /KernelAntiCheat/Funcs/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Funcs/utils.h -------------------------------------------------------------------------------- /KernelAntiCheat/KernelAntiCheat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/KernelAntiCheat.vcxproj -------------------------------------------------------------------------------- /KernelAntiCheat/KernelAntiCheat.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/KernelAntiCheat.vcxproj.filters -------------------------------------------------------------------------------- /KernelAntiCheat/Natives/Hde/hde64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Natives/Hde/hde64.c -------------------------------------------------------------------------------- /KernelAntiCheat/Natives/Hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Natives/Hde/hde64.h -------------------------------------------------------------------------------- /KernelAntiCheat/Natives/Hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Natives/Hde/table64.h -------------------------------------------------------------------------------- /KernelAntiCheat/Natives/Imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Natives/Imports.h -------------------------------------------------------------------------------- /KernelAntiCheat/Natives/NativeEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Natives/NativeEnums.h -------------------------------------------------------------------------------- /KernelAntiCheat/Natives/NativeStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Natives/NativeStructs.h -------------------------------------------------------------------------------- /KernelAntiCheat/Natives/PEStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Natives/PEStructs.h -------------------------------------------------------------------------------- /KernelAntiCheat/Natives/Windows/RAIIUtilites.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Natives/Windows/RAIIUtilites.c -------------------------------------------------------------------------------- /KernelAntiCheat/Natives/Windows/RAIIUtilites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Natives/Windows/RAIIUtilites.h -------------------------------------------------------------------------------- /KernelAntiCheat/Natives/Windows/ci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Natives/Windows/ci.h -------------------------------------------------------------------------------- /KernelAntiCheat/Natives/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/Natives/stdint.h -------------------------------------------------------------------------------- /KernelAntiCheat/entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/KernelAntiCheat/entry.c -------------------------------------------------------------------------------- /Libs/ci.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/Libs/ci.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/README.md -------------------------------------------------------------------------------- /UAC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/c4kef/UAC/HEAD/UAC.sln --------------------------------------------------------------------------------