diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 3f9aadef110..de20eb887da 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -8012,7 +8012,6 @@ static void ndpi_check_probing_attempt(struct ndpi_flow_struct *flow) { break; case NDPI_PROTOCOL_TLS: - /* case NDPI_PROTOCOL_QUIC: */ case NDPI_PROTOCOL_MAIL_SMTPS: case NDPI_PROTOCOL_MAIL_POPS: case NDPI_PROTOCOL_MAIL_IMAPS: @@ -8020,6 +8019,11 @@ static void ndpi_check_probing_attempt(struct ndpi_flow_struct *flow) { if(flow->host_server_name[0] == '\0') ndpi_set_risk(flow, NDPI_PROBING_ATTEMPT, "TLS Probing"); break; + + case NDPI_PROTOCOL_QUIC: + if(flow->host_server_name[0] == '\0') + ndpi_set_risk(flow, NDPI_PROBING_ATTEMPT, "QUIC Probing"); + break; } } }