You have finally discovered my Github profile.
Please feel free to clone/fork projects, raise issues and submit PRs if you think something could be better.
Read my blog for write-ups and research - Happy Hacking! π
struct OffensiveOperator {
handle: String,
role: String,
specialties: Vec<&str>,
base_of_operations: String,
primary_languages: Vec<&str>,
}
impl OffensiveOperator {
fn new() -> Self {
Self {
handle: "BlackSnufkin".to_string(),
role: "Red Team Operator".to_string(),
specialties: vec!["Malware Development", "Reverse Engineering", "Evasion Techniques"],
base_of_operations: "Initial Access Guild".to_string(),
primary_languages: vec!["Rust", "C++", "Python"],
}
}
}