mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-15 23:55:03 +03:00
64 lines
1.5 KiB
C++
64 lines
1.5 KiB
C++
/*
|
|
* ModSecurity, http://www.modsecurity.org/
|
|
* Copyright (c) 2015 Trustwave Holdings, Inc. (http://www.trustwave.com/)
|
|
*
|
|
* You may not use this file except in compliance with
|
|
* the License. You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* If any of the files related to licensing are missing or if you have any
|
|
* other questions related to licensing please contact Trustwave Holdings, Inc.
|
|
* directly using the email address security@modsecurity.org.
|
|
*
|
|
*/
|
|
|
|
#include "src/audit_log/writer/https.h"
|
|
|
|
#include <time.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
|
|
#include <fstream>
|
|
#include <mutex>
|
|
|
|
#include "modsecurity/rules_set.h"
|
|
#include "modsecurity/audit_log.h"
|
|
#include "modsecurity/transaction.h"
|
|
#include "src/utils/md5.h"
|
|
#include "src/utils/https_client.h"
|
|
|
|
|
|
|
|
namespace modsecurity {
|
|
namespace audit_log {
|
|
namespace writer {
|
|
|
|
|
|
Https::~Https() {
|
|
}
|
|
|
|
|
|
bool Https::init(std::string *error) {
|
|
return true;
|
|
}
|
|
|
|
|
|
bool Https::write(Transaction *transaction, int parts, std::string *error) {
|
|
Utils::HttpsClient m_http_client;
|
|
ms_dbg_a(transaction, 7, "Sending logs to: " + m_audit->m_path1);
|
|
|
|
std::string log = transaction->toJSON(parts);
|
|
m_http_client.setRequestType("application/json");
|
|
m_http_client.setRequestBody(log.c_str());
|
|
m_http_client.download(m_audit->m_path1);
|
|
return true;
|
|
}
|
|
|
|
} // namespace writer
|
|
} // namespace audit_log
|
|
} // namespace modsecurity
|