From c0a1c2316febe524965bcdd64466ed7f5fa7afb1 Mon Sep 17 00:00:00 2001 From: jacobeva Date: Wed, 8 Mar 2023 12:47:47 +0000 Subject: [PATCH] Removed MakeRCB --- MakeRCB.cpp | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 MakeRCB.cpp diff --git a/MakeRCB.cpp b/MakeRCB.cpp deleted file mode 100644 index 953d9cf..0000000 --- a/MakeRCB.cpp +++ /dev/null @@ -1,27 +0,0 @@ -#include -#include - -int main() -{ - std::string sUsername; - std::string sPassword; - std::string sC2Domain; - std::string sProxy; - - std::cout << "Enter the username to be used by RCB: "; - std::cin >> sUsername; - - std::cout << "Enter the password to be used by RCB: "; - std::cin >> sPassword; - - std::cout << "Enter the C2 domain to be used by RCB: "; - std::cin >> sC2Domain; - - std::cout << "Enter the socks5 proxy address to be used by RCB: "; - std::cin >> sProxy; - - std::string sCommand = "sUsername=" + sUsername + " sPassword=" + sPassword + " sC2Domain=" + "http:/" + sC2Domain + " sProxy=" + "socks5h:/" + sProxy + " make"; // todo: figure out why this works and why // doesn't - const char *cCommand = sCommand.c_str(); // convert string to c string for running as command - - system(cCommand); // run the make command with environment variables -}