diff --git a/.vimspector.json b/.vimspector.json index fbb8d45..5b15789 100644 --- a/.vimspector.json +++ b/.vimspector.json @@ -5,7 +5,7 @@ "configuration": { "type": "cppdbg", "request": "launch", - "program": "${workspaceRoot}/bin/EmperorServer", + "program": "${workspaceRoot}/bin/EmperorD", "args": [ ], "cwd": "${workspaceRoot}/bin", diff --git a/EmperorServer.cpp b/Emperor.cpp similarity index 99% rename from EmperorServer.cpp rename to Emperor.cpp index 693e4e2..33f477b 100755 --- a/EmperorServer.cpp +++ b/Emperor.cpp @@ -475,7 +475,6 @@ void prompt() int main(int argc, char **argv) { - std::cout << b64Decode("dw$$") << std::endl; command_and_control c2; // instanciate the command and control class httpserver::webserver ws = httpserver::create_webserver(8665); // create the webserver, ensuring ssl is enabled and // the server is using the provided crt and key diff --git a/Makefile b/Makefile index 59c18d4..3065585 100755 --- a/Makefile +++ b/Makefile @@ -1,2 +1,2 @@ default: - g++ EmperorServer.cpp -I /usr/local/include -L /usr/local/lib -lhttpserver -pthread -o bin/EmperorServer + g++ Emperor.cpp -I /usr/local/include -L /usr/local/lib -lhttpserver -pthread -o bin/Emperor diff --git a/bin/Emperor b/bin/Emperor new file mode 100755 index 0000000..ab1cfa7 Binary files /dev/null and b/bin/Emperor differ diff --git a/bin/EmperorServer b/bin/EmperorServer deleted file mode 100755 index 59a5bac..0000000 Binary files a/bin/EmperorServer and /dev/null differ