Add Omron FINS protocol dissector (#2172)

* Add Omron FINS protocol dissector

* Add a kludge to avoid invalid FINS over UDP detection as SkypeTeams and RTP

* Update unit test results

* Update protocols.rst

* Remove dummy flows from fins.pcap
This commit is contained in:
Vladimir Gavrilov 2023-11-27 19:09:53 +03:00 committed by GitHub
parent 3763c702f0
commit 84427b0754
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
155 changed files with 327 additions and 152 deletions

View file

@ -239,7 +239,8 @@ static void ndpi_rtp_search(struct ndpi_detection_module_struct *ndpi_struct,
NDPI_LOG_DBG(ndpi_struct, "search RTP\n");
if(d_port == 5355 || /* LLMNR_PORT */
d_port == 5353 /* MDNS_PORT */) {
d_port == 5353 || /* MDNS_PORT */
d_port == 9600 /* FINS_PORT */) {
NDPI_EXCLUDE_PROTO(ndpi_struct, flow);
return;
}