Function antilysis::detected

source ·
pub fn detected() -> bool
Expand description

Returns whether or not any sign of analysis environment is present. Is true if processes() or sandbox() is true.

Use:

use std::process;
 
if antilysis::detected(){
    process::exit(0);
}