├── Injector.vcxproj ├── Injector.vcxproj.filters ├── Injector.vcxproj.user ├── README.md ├── driver ├── Driver.cpp └── Driver.h ├── includes.h ├── inject ├── Inject.cpp └── Inject.h ├── main.cpp ├── showcase.gif └── utils ├── lazy_importer.h ├── utils.h └── xor.h /Injector.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/Injector.vcxproj -------------------------------------------------------------------------------- /Injector.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/Injector.vcxproj.filters -------------------------------------------------------------------------------- /Injector.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/Injector.vcxproj.user -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/README.md -------------------------------------------------------------------------------- /driver/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/driver/Driver.cpp -------------------------------------------------------------------------------- /driver/Driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/driver/Driver.h -------------------------------------------------------------------------------- /includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/includes.h -------------------------------------------------------------------------------- /inject/Inject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/inject/Inject.cpp -------------------------------------------------------------------------------- /inject/Inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/inject/Inject.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/main.cpp -------------------------------------------------------------------------------- /showcase.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/showcase.gif -------------------------------------------------------------------------------- /utils/lazy_importer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/utils/lazy_importer.h -------------------------------------------------------------------------------- /utils/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/utils/utils.h -------------------------------------------------------------------------------- /utils/xor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTKKO/Kernel-Manual-Map-Injector/HEAD/utils/xor.h --------------------------------------------------------------------------------