diff options
author | Ivan Nardi <nardi.ivan@gmail.com> | 2025-03-26 10:02:50 +0100 |
---|---|---|
committer | Ivan Nardi <nardi.ivan@gmail.com> | 2025-03-26 10:02:50 +0100 |
commit | 4a66f958082a6df786ca75be466eb588e8998fe1 (patch) | |
tree | 4ed47110ce7eeea4bf122ba62126d05351764021 | |
parent | 00598c71b288a125e26b9bb0fc59f55701d0fca5 (diff) |
fuzz: fix configuration after latest updates
-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); |