crabby-webshell-generator 2.0.0

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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use std::fmt::Display;
use clap::{ValueEnum};

#[derive(Copy, Clone, PartialEq, Eq, ValueEnum, Debug, Default)]
pub enum ListFeatures {
	/// List features for the PHP template language.
	#[default]
	Php,
}

impl Display for ListFeatures {
	fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
		match self {
			Self::Php => write!(f, "php"),
		}
	}
}