├── README.md ├── cs2_usermode ├── Includes │ ├── Direct3d │ │ ├── d3d9.lib │ │ ├── d3dx9.h │ │ ├── d3dx9.lib │ │ ├── d3dx9anim.h │ │ ├── d3dx9core.h │ │ ├── d3dx9effect.h │ │ ├── d3dx9math.h │ │ ├── d3dx9math.inl │ │ ├── d3dx9mesh.h │ │ ├── d3dx9shader.h │ │ ├── d3dx9shape.h │ │ ├── d3dx9tex.h │ │ └── d3dx9xof.h │ └── Imgui │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_impl_dx9.cpp │ │ ├── imgui_impl_dx9.h │ │ ├── imgui_impl_win32.cpp │ │ ├── imgui_impl_win32.h │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h ├── Valorant │ ├── Driver │ │ └── driver.hpp │ ├── Game │ │ ├── cheat.hpp │ │ ├── globals.hpp │ │ └── structs.hpp │ ├── Overlay │ │ ├── menu.hpp │ │ └── render.hpp │ ├── Valorant.vcxproj │ ├── Valorant.vcxproj.filters │ ├── Valorant.vcxproj.user │ └── main.cpp └── cs2 usermode.sln └── driver ├── Kernel ├── Kernel.vcxproj ├── Kernel.vcxproj.filters ├── Kernel.vcxproj.user ├── defines.h ├── entry.cpp ├── functions.h ├── globals.h ├── imports.h └── utils.h └── kernel_driver.sln /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/README.md -------------------------------------------------------------------------------- /cs2_usermode/Includes/Direct3d/d3d9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Direct3d/d3d9.lib -------------------------------------------------------------------------------- /cs2_usermode/Includes/Direct3d/d3dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Direct3d/d3dx9.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Direct3d/d3dx9.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Direct3d/d3dx9.lib -------------------------------------------------------------------------------- /cs2_usermode/Includes/Direct3d/d3dx9anim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Direct3d/d3dx9anim.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Direct3d/d3dx9core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Direct3d/d3dx9core.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Direct3d/d3dx9effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Direct3d/d3dx9effect.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Direct3d/d3dx9math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Direct3d/d3dx9math.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Direct3d/d3dx9math.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Direct3d/d3dx9math.inl -------------------------------------------------------------------------------- /cs2_usermode/Includes/Direct3d/d3dx9mesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Direct3d/d3dx9mesh.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Direct3d/d3dx9shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Direct3d/d3dx9shader.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Direct3d/d3dx9shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Direct3d/d3dx9shape.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Direct3d/d3dx9tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Direct3d/d3dx9tex.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Direct3d/d3dx9xof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Direct3d/d3dx9xof.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imconfig.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imgui.cpp -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imgui.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imgui_demo.cpp -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imgui_draw.cpp -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imgui_impl_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imgui_impl_dx9.cpp -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imgui_impl_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imgui_impl_dx9.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imgui_impl_win32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imgui_impl_win32.cpp -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imgui_impl_win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imgui_impl_win32.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imgui_internal.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imgui_tables.cpp -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imgui_widgets.cpp -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imstb_rectpack.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imstb_textedit.h -------------------------------------------------------------------------------- /cs2_usermode/Includes/Imgui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Includes/Imgui/imstb_truetype.h -------------------------------------------------------------------------------- /cs2_usermode/Valorant/Driver/driver.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Valorant/Driver/driver.hpp -------------------------------------------------------------------------------- /cs2_usermode/Valorant/Game/cheat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Valorant/Game/cheat.hpp -------------------------------------------------------------------------------- /cs2_usermode/Valorant/Game/globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Valorant/Game/globals.hpp -------------------------------------------------------------------------------- /cs2_usermode/Valorant/Game/structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Valorant/Game/structs.hpp -------------------------------------------------------------------------------- /cs2_usermode/Valorant/Overlay/menu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Valorant/Overlay/menu.hpp -------------------------------------------------------------------------------- /cs2_usermode/Valorant/Overlay/render.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Valorant/Overlay/render.hpp -------------------------------------------------------------------------------- /cs2_usermode/Valorant/Valorant.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Valorant/Valorant.vcxproj -------------------------------------------------------------------------------- /cs2_usermode/Valorant/Valorant.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Valorant/Valorant.vcxproj.filters -------------------------------------------------------------------------------- /cs2_usermode/Valorant/Valorant.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Valorant/Valorant.vcxproj.user -------------------------------------------------------------------------------- /cs2_usermode/Valorant/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/Valorant/main.cpp -------------------------------------------------------------------------------- /cs2_usermode/cs2 usermode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/cs2_usermode/cs2 usermode.sln -------------------------------------------------------------------------------- /driver/Kernel/Kernel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/driver/Kernel/Kernel.vcxproj -------------------------------------------------------------------------------- /driver/Kernel/Kernel.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/driver/Kernel/Kernel.vcxproj.filters -------------------------------------------------------------------------------- /driver/Kernel/Kernel.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/driver/Kernel/Kernel.vcxproj.user -------------------------------------------------------------------------------- /driver/Kernel/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/driver/Kernel/defines.h -------------------------------------------------------------------------------- /driver/Kernel/entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/driver/Kernel/entry.cpp -------------------------------------------------------------------------------- /driver/Kernel/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/driver/Kernel/functions.h -------------------------------------------------------------------------------- /driver/Kernel/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/driver/Kernel/globals.h -------------------------------------------------------------------------------- /driver/Kernel/imports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/driver/Kernel/imports.h -------------------------------------------------------------------------------- /driver/Kernel/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/driver/Kernel/utils.h -------------------------------------------------------------------------------- /driver/kernel_driver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singhhdev/cs2-external-kernel/HEAD/driver/kernel_driver.sln --------------------------------------------------------------------------------