From bf830b4236132b1100fb9c4863a737fb53eb669f Mon Sep 17 00:00:00 2001 From: Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> Date: Mon, 6 Jan 2025 16:53:29 +0100 Subject: Add the ability to enable/disable every specific flow risks (#2653) --- src/lib/protocols/munin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/protocols/munin.c') diff --git a/src/lib/protocols/munin.c b/src/lib/protocols/munin.c index 6ca9ca9c3..06e50d3a6 100644 --- a/src/lib/protocols/munin.c +++ b/src/lib/protocols/munin.c @@ -64,7 +64,7 @@ static void ndpi_search_munin(struct ndpi_detection_module_struct *ndpi_struct, if (packet->payload[packet->payload_packet_len - 1] != '\n') { - ndpi_set_risk(flow, NDPI_MALFORMED_PACKET, "Missing Munin Hostname"); + ndpi_set_risk(ndpi_struct, flow, NDPI_MALFORMED_PACKET, "Missing Munin Hostname"); return; } @@ -73,7 +73,7 @@ static void ndpi_search_munin(struct ndpi_detection_module_struct *ndpi_struct, { ndpi_hostname_sni_set(flow, packet->payload + NDPI_STATICSTRING_LEN(munin_prefix), host_len, NDPI_HOSTNAME_NORM_ALL); } else { - ndpi_set_risk(flow, NDPI_MALFORMED_PACKET, "Missing Munin Hostname"); + ndpi_set_risk(ndpi_struct, flow, NDPI_MALFORMED_PACKET, "Missing Munin Hostname"); } } -- cgit v1.2.3