mirror of
https://github.com/maxDcb/C2Core
synced 2026-06-08 15:48:01 +00:00
10 lines
209 B
C++
10 lines
209 B
C++
#include "BeaconTcp.hpp"
|
|
|
|
int main() {
|
|
std::string config = R"({"xorKey":"key","ModulesConfig":{}})";
|
|
std::string ip = "127.0.0.1";
|
|
int port = 1;
|
|
BeaconTcp b(config, ip, port);
|
|
return 0;
|
|
}
|