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