├── .gitignore ├── CECheater.sln ├── CECheater ├── CECheater.vcxproj ├── DBKControl.cpp ├── DBKControl.h ├── IOCtlCode.h ├── MemLoadDriver.cpp ├── MemLoadDriver.h ├── common.cpp ├── common.h ├── dllmain.cpp └── export.h ├── MyDriver ├── DriverEntry.cpp └── MyDriver.vcxproj ├── README.md └── bin64.7z /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/.gitignore -------------------------------------------------------------------------------- /CECheater.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/CECheater.sln -------------------------------------------------------------------------------- /CECheater/CECheater.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/CECheater/CECheater.vcxproj -------------------------------------------------------------------------------- /CECheater/DBKControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/CECheater/DBKControl.cpp -------------------------------------------------------------------------------- /CECheater/DBKControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/CECheater/DBKControl.h -------------------------------------------------------------------------------- /CECheater/IOCtlCode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/CECheater/IOCtlCode.h -------------------------------------------------------------------------------- /CECheater/MemLoadDriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/CECheater/MemLoadDriver.cpp -------------------------------------------------------------------------------- /CECheater/MemLoadDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/CECheater/MemLoadDriver.h -------------------------------------------------------------------------------- /CECheater/common.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/CECheater/common.cpp -------------------------------------------------------------------------------- /CECheater/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/CECheater/common.h -------------------------------------------------------------------------------- /CECheater/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/CECheater/dllmain.cpp -------------------------------------------------------------------------------- /CECheater/export.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/CECheater/export.h -------------------------------------------------------------------------------- /MyDriver/DriverEntry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/MyDriver/DriverEntry.cpp -------------------------------------------------------------------------------- /MyDriver/MyDriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/MyDriver/MyDriver.vcxproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/README.md -------------------------------------------------------------------------------- /bin64.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TechForBad/CECheater/HEAD/bin64.7z --------------------------------------------------------------------------------