From 4a66f958082a6df786ca75be466eb588e8998fe1 Mon Sep 17 00:00:00 2001 From: Ivan Nardi Date: Wed, 26 Mar 2025 10:02:50 +0100 Subject: fuzz: fix configuration after latest updates --- fuzz/fuzz_ndpi_reader.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fuzz/fuzz_ndpi_reader.c b/fuzz/fuzz_ndpi_reader.c index c70e3f3fa..eee9a5839 100644 --- a/fuzz/fuzz_ndpi_reader.c +++ b/fuzz/fuzz_ndpi_reader.c @@ -108,6 +108,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { ndpi_set_config(workflow->ndpi_struct, NULL, "packets_limit_per_flow", "255"); ndpi_set_config(workflow->ndpi_struct, NULL, "flow.track_payload", "1"); ndpi_set_config(workflow->ndpi_struct, NULL, "tcp_ack_payload_heuristic", "1"); + ndpi_set_config(workflow->ndpi_struct, NULL, "fully_encrypted_heuristic", "1"); ndpi_set_config(workflow->ndpi_struct, "dns", "subclassification", "1"); ndpi_set_config(workflow->ndpi_struct, "tls", "application_blocks_tracking", "1"); #ifndef ENABLE_CONFIG2 @@ -124,7 +125,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { ndpi_set_config(workflow->ndpi_struct, NULL, "dpi.address_cache_size", "8192"); #ifdef ENABLE_CONFIG2 - ndpi_set_config(workflow->ndpi_struct, NULL, "flow_risk_infos", "0"); + ndpi_set_config(workflow->ndpi_struct, NULL, "flow_risk.all.info", "0"); #endif ndpi_finalize_initialization(workflow->ndpi_struct); -- cgit v1.2.3