diff options
| author | auth <[email protected]> | 2020-07-17 15:47:51 +0200 |
|---|---|---|
| committer | auth <[email protected]> | 2020-07-17 15:47:51 +0200 |
| commit | 8e5e48337a6cf7a33ecbee7cf9c594fa18bd93ae (patch) | |
| tree | a3a7293f9ee95755f2530dae0ac6ca35f03ae75f /client/src/main.cpp | |
| parent | Added certificates. (diff) | |
| download | loader-8e5e48337a6cf7a33ecbee7cf9c594fa18bd93ae.tar.xz loader-8e5e48337a6cf7a33ecbee7cf9c594fa18bd93ae.zip | |
Refactoring.
Diffstat (limited to 'client/src/main.cpp')
| -rw-r--r-- | client/src/main.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/client/src/main.cpp b/client/src/main.cpp index cbe9f65..aac1c4f 100644 --- a/client/src/main.cpp +++ b/client/src/main.cpp @@ -1,20 +1,12 @@ #include "include.h" #include "util/io.h" #include "client/client.h" -#include "assembler/assembler.h" +#include "shellcode/shellcode.h" #include "injection/mapper.h" int main(int argc, char* argv[]) { io::init(); - /*assembler a; - a.push({1, 2, 3, 7, 9}); - a.end(); - for(auto &b : a()) { - io::logger->info("{:x}", b); - } - std::cin.get();*/ - tcp::client client; std::thread t{tcp::client::monitor, std::ref(client)}; |