diff options
-rw-r--r-- | fuzz/fuzz_ndpi_reader.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); |