Jun 16th update

This commit is contained in:
noam
2023-01-17 11:34:09 +02:00
parent 90bcc544a2
commit ad04b8d063
168 changed files with 64034 additions and 932 deletions

View File

@@ -27,11 +27,8 @@
#include "table_opaque.h"
#include "http_manager_opaque.h"
#include "log_generator.h"
#include "sasal.h"
#include "http_inspection_events.h"
SASAL_START // HTTP Manager
USE_DEBUG_FLAG(D_HTTP_MANAGER);
using namespace std;
@@ -208,7 +205,7 @@ public:
LogGen(
"Web AppSec Policy Loaded Successfully",
ReportIS::Audience::SECURITY,
ReportIS::Severity::LOW,
ReportIS::Severity::INFO,
ReportIS::Priority::LOW,
ReportIS::Tags::THREAT_PREVENTION
);
@@ -375,5 +372,3 @@ HttpManager::preload()
registerExpectedConfiguration<string>("HTTP manager", "Response Size Limit Verdict");
registerConfigLoadCb([this] () { pimpl->sendPolicyLog(); });
}
SASAL_END

View File

@@ -14,9 +14,6 @@
#include "http_manager_opaque.h"
#include "config.h"
#include "sasal.h"
SASAL_START // HTTP Manager - Transaction data
using namespace std;
@@ -99,5 +96,3 @@ HttpManagerOpaque::updatePayloadSize(const uint curr_payload_size)
{
aggregated_payload_size += curr_payload_size;
}
SASAL_END