debugoff icon indicating copy to clipboard operation
debugoff copied to clipboard

Linux anti-debugging and anti-analysis rust library

Results 1 debugoff issues
Sort by recently updated
recently updated
newest added

Code that calls `ptraceme_or_die` before starting a subprocess through any mean (ie `std::process::Command`) will crash. Simple reproducer: ```rust fn main() { debugoff::ptraceme_or_die(); std::process::Command::new("echo") .arg("subprocess") .status() .unwrap(); println!("exit"); } ``` Outputs:...