debugprotector 0.1.3

Advanced antidebugger using assembly calls and winapi functions
docs.rs failed to build debugprotector-0.1.3
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

debugprotector

Using default method

Default method will check debugger and self kill program

use debugprotector::detect;

fn main() {
  detect();
}

Using single method.

This crate have the following functions:

use debugprotector::antidbg;

antidbg::adbg_is_debugger_present();
antidbg::adbg_being_debugged_peb();
antidbg::adbg_nt_global_flag_peb();
antidbg::adbg_check_remote_debugger_present();
antidbg::adbg_check_window_class_name();
antidbg::adbg_check_window_name();
antidbg::adbg_process_file_name();