From efb740b02ca9b5f99562dddc89137dbf697aa6d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Victor?= Date: Sat, 31 Aug 2024 15:57:45 -0300 Subject: [PATCH] Small correction to CLI commands --- client/src/cli.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/client/src/cli.rs b/client/src/cli.rs index 0628314..9449d3f 100644 --- a/client/src/cli.rs +++ b/client/src/cli.rs @@ -151,6 +151,8 @@ pub enum RegistryCommands { #[derive(Subcommand)] pub enum InjectionCommands { + + /// DLL Injection DLL { /// The process ID to injection. #[arg(long, short, required = true)] @@ -165,6 +167,7 @@ pub enum InjectionCommands { type_: Injection }, + /// Shellcode Injection Shellcode { /// The process ID to injection. #[arg(long, short, required = true)] @@ -299,7 +302,9 @@ pub enum PS_PROTECTED_TYPE { #[derive(clap::ValueEnum, Clone, Debug, Copy)] pub enum Injection { + /// Injection using Thread Thread = 0, + /// Injection using APC APC = 1, }