diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2021-01-04 15:49:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-04 15:49:19 +0100 |
commit | 23b84cd3ee91ece32c605f3eee77d598cea8b3d6 (patch) | |
tree | a3976afb8908217b3852318d179c6c0b80ef4607 /src/lib/ndpi_main.c | |
parent | 53ee6db795ae237d1a32818045c754dc912ef2e5 (diff) |
Remove FB_ZERO protocol (#1102)
FB_ZERO was an experimental protocol run by Facebook.
They switched to QUIC/TLS1.3 more than 2 years ago; no one ever used it but
them so it is definitely dead.
See: https://engineering.fb.com/2018/08/06/security/fizz/
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 6765c26d6..a94d94215 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -787,9 +787,9 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp no_master, no_master, "VMware", NDPI_PROTOCOL_CATEGORY_REMOTE_ACCESS, ndpi_build_default_ports(ports_a, 903, 0, 0, 0, 0) /* TCP */, ndpi_build_default_ports(ports_b, 902, 903, 0, 0, 0) /* UDP */); - ndpi_set_proto_defaults(ndpi_str, NDPI_PROTOCOL_SAFE, NDPI_PROTOCOL_FBZERO, 0 /* can_have_a_subprotocol */, - no_master, no_master, "FacebookZero", NDPI_PROTOCOL_CATEGORY_SOCIAL_NETWORK, - ndpi_build_default_ports(ports_a, 443, 0, 0, 0, 0) /* TCP */, + ndpi_set_proto_defaults(ndpi_str, NDPI_PROTOCOL_SAFE, NDPI_PROTOCOL_FREE_30, 0 /* can_have_a_subprotocol */, + no_master, no_master, "FREE_30", NDPI_PROTOCOL_CATEGORY_SOCIAL_NETWORK, + ndpi_build_default_ports(ports_a, 0, 0, 0, 0, 0) /* TCP */, ndpi_build_default_ports(ports_b, 0, 0, 0, 0, 0) /* UDP */); ndpi_set_proto_defaults(ndpi_str, NDPI_PROTOCOL_POTENTIALLY_DANGEROUS, NDPI_PROTOCOL_KONTIKI, 0 /* can_have_a_subprotocol */, no_master, no_master, "Kontiki", @@ -2966,9 +2966,6 @@ void ndpi_set_protocol_detection_bitmask2(struct ndpi_detection_module_struct *n /* DNS */ init_dns_dissector(ndpi_str, &a, detection_bitmask); - /* FILETOPIA */ - init_fbzero_dissector(ndpi_str, &a, detection_bitmask); - /* VMWARE */ init_vmware_dissector(ndpi_str, &a, detection_bitmask); |