Crabby is a tool developed to generate webshells written in - insert your desired webshell language -. It is designed to be used by red teams to aid in lateral movement, privilege escalation, and data exfiltration.
usestd::{env, io};usestd::path::Path;/// Check if a folder exists
////// # Arguments
/// - folder_name: &str - The name of the folder to check
pubfnfolder_exists(folder_name:&str)->io::Result<bool>{letmut path =env::current_dir()?;
path.push(folder_name);Ok(Path::new(&path).exists())}