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