A simple Kernel Driver that remove Flash Duration on CS2 !
View Demo
·
Report Bug
·
Request Feature
Table of Contents
Be sure to follow steps to not get your Account Banned, I'm not responsible of this !
Don't ask me how to bypass VAC, learn by yourself like all the GOATS of this World did
If you want to use the Driver please read below.
Please do not open Issues for nothing don't be DUMB.
GOOGLE IS YOUR FRIEND !
This step is mandatory if you want to use the Driver !
- Install Visual Studio
- Install Windows SDK
- Libraries (Visual Studio Installer)
MSVC v143 - VS 2022 C++ ARM64/ARM64EC Spectre-mitigated libs (Latest) MSVC v143 - VS 2022 C++ x64/x86 Spectre-mitigated libs (Latest) C++ ATL for latest v143 build tools with Spectre Mitigations (ARM64/ARM64EC) C++ ATL for latest v143 build tools with Spectre Mitigations (x86 & x64) C++ MFC for latest v143 build tools with Spectre Mitigations (ARM64/ARM64EC) C++ MFC for latest v143 build tools with Spectre Mitigations (x86 & x64) Windows Driver Kit
- Clone the repo
git clone https://github.com/kaveOO/ReadWriteKernel.git
- Build the project
open ReadWriteKernel.sln and build the project in x64 Release
- Setup Kernel Space
bcdedit /set testsigning on bcdedit /debug on bcdedit /dbgsettings local
- Restart your computer
- Add Driver into Windows Kernel Space and start it
sc create driver_name type=kernel binpath="path_to_driver" (path including driver .sys file !) sc start driver_name
- Add Insecure flag in CS2 launch options
⚠️ THIS STEP IS MANDATORY⚠️ right click CS2 go to properties and add in launch options -> -insecure
- Start CS2 and go to Private Match
- Start Usermode Application (anti-flash)
go to ReadWriteKernel\ReadWriteKernel\x64\Release run ReadWriteController.exe as Elevated Mode
- Stop and delete Driver
sc stop <driver_name>
sc delete <driver_name>
- Restart your computer
- Basic Functions of Driver
- IOCTL Communication
- Read/Write functions
- IOCTL requests for Read/Write
- Implementation of CS2 anti-flash
Distributed under the MIT. See LICENSE.txt
for more information.