diff options
| author | auth <[email protected]> | 2020-07-17 15:38:48 +0200 |
|---|---|---|
| committer | auth <[email protected]> | 2020-07-17 15:38:48 +0200 |
| commit | 4f6ed0cbb36c6912feed7db96d963ad0b1145b02 (patch) | |
| tree | 6391e1cc30bc329dd060ca009337ead762848264 /client/src/main.cpp | |
| parent | Removed un (diff) | |
| parent | Added certificates. (diff) | |
| download | loader-4f6ed0cbb36c6912feed7db96d963ad0b1145b02.tar.xz loader-4f6ed0cbb36c6912feed7db96d963ad0b1145b02.zip | |
Merge branch 'master' into windows
Diffstat (limited to 'client/src/main.cpp')
| -rw-r--r-- | client/src/main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/client/src/main.cpp b/client/src/main.cpp index 330096c..09db5cb 100644 --- a/client/src/main.cpp +++ b/client/src/main.cpp @@ -2,6 +2,7 @@ #include "util/io.h" #include "client/client.h" #include "assembler/shellcode.h" +#include "injection/mapper.h" int main(int argc, char* argv[]) { io::init(); @@ -80,7 +81,9 @@ int main(int argc, char* argv[]) { } if (res == tcp::login_result::login_success) { - client.state = tcp::client_state::waiting; + client.state = tcp::client_state::logged_in; + + io::logger->info("logged in."); } |