Importing http metadata from Suricata

This commit is contained in:
Alfredo Cardigliano 2019-10-05 12:15:16 +02:00
parent e04e266283
commit 256fec9283
7 changed files with 60 additions and 8 deletions

View file

@ -1397,6 +1397,12 @@ void NetworkInterface::processFlow(ParsedFlow *zflow) {
flow->setServerName(zflow->http_site);
zflow->http_site = NULL;
}
if(zflow->http_method) {
flow->setHTTPMethod(zflow->http_method);
zflow->http_method = NULL;
}
flow->setHTTPRetCode(zflow->http_ret_code);
if(zflow->ssl_server_name) {