diff options
| author | auth <[email protected]> | 2020-07-17 15:49:00 +0200 |
|---|---|---|
| committer | auth <[email protected]> | 2020-07-17 15:49:00 +0200 |
| commit | bc9a539dc2dc40435f3e7b63306ed80a5198458b (patch) | |
| tree | 85bc4addae613067e175b7c7d7af1593f09b9c4d /client/src/main.cpp | |
| parent | Merge branch 'master' into windows (diff) | |
| parent | Refactoring. (diff) | |
| download | loader-bc9a539dc2dc40435f3e7b63306ed80a5198458b.tar.xz loader-bc9a539dc2dc40435f3e7b63306ed80a5198458b.zip | |
Merge branch 'master' into windows
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 09db5cb..4a47e01 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/shellcode.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)}; |