├── .gitattributes ├── .gitignore ├── CsgoFullKernel ├── Cheat Driver.sln ├── Cheat Driver.vcxproj ├── Cheat Driver.vcxproj.filters ├── CheatDriver.inf ├── Csgo.h ├── Drawing.h ├── Keymap.h ├── Main.cpp ├── Memory.h ├── Misc.h ├── Modules.h ├── Mouse.h ├── Nt.h ├── Offsets.h └── VkCodes.h └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/.gitignore -------------------------------------------------------------------------------- /CsgoFullKernel/Cheat Driver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/Cheat Driver.sln -------------------------------------------------------------------------------- /CsgoFullKernel/Cheat Driver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/Cheat Driver.vcxproj -------------------------------------------------------------------------------- /CsgoFullKernel/Cheat Driver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/Cheat Driver.vcxproj.filters -------------------------------------------------------------------------------- /CsgoFullKernel/CheatDriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/CheatDriver.inf -------------------------------------------------------------------------------- /CsgoFullKernel/Csgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/Csgo.h -------------------------------------------------------------------------------- /CsgoFullKernel/Drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/Drawing.h -------------------------------------------------------------------------------- /CsgoFullKernel/Keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/Keymap.h -------------------------------------------------------------------------------- /CsgoFullKernel/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/Main.cpp -------------------------------------------------------------------------------- /CsgoFullKernel/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/Memory.h -------------------------------------------------------------------------------- /CsgoFullKernel/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/Misc.h -------------------------------------------------------------------------------- /CsgoFullKernel/Modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/Modules.h -------------------------------------------------------------------------------- /CsgoFullKernel/Mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/Mouse.h -------------------------------------------------------------------------------- /CsgoFullKernel/Nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/Nt.h -------------------------------------------------------------------------------- /CsgoFullKernel/Offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/Offsets.h -------------------------------------------------------------------------------- /CsgoFullKernel/VkCodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/CsgoFullKernel/VkCodes.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sentient111/Csgo-Full-kernel/HEAD/README.md --------------------------------------------------------------------------------