Function antilysis::sandbox

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

Returns whether or not any common sandbox artifact is present.

Use:

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