From 4ff8aa48b2a58a29411ffab1c81c76ff0aae6f30 Mon Sep 17 00:00:00 2001 From: Toni Date: Mon, 4 Jul 2022 16:04:53 +0200 Subject: Added UltraSurf protocol dissector. (#1618) * TLSv1.3 UltraSurf flows are not detected by now Signed-off-by: Toni Uhlig --- src/lib/ndpi_main.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/lib/ndpi_main.c') diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index 54d334566..47012f93f 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -1934,6 +1934,10 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp ndpi_build_default_ports(ports_b, 0, 0, 0, 0, 0) /* UDP */); ndpi_set_proto_defaults(ndpi_str, 1 /* cleartext */, 0 /* nw proto */, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_RIOTGAMES, "RiotGames", NDPI_PROTOCOL_CATEGORY_GAME, + 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, 0 /* encrypted */, 0 /* nw proto */, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_ULTRASURF, + "UltraSurf", NDPI_PROTOCOL_CATEGORY_VPN, ndpi_build_default_ports(ports_a, 0, 0, 0, 0, 0) /* TCP */, ndpi_build_default_ports(ports_b, 0, 0, 0, 0, 0) /* UDP */); @@ -4447,6 +4451,9 @@ static int ndpi_callback_init(struct ndpi_detection_module_struct *ndpi_str) { /* RiotGames */ init_riotgames_dissector(ndpi_str, &a, detection_bitmask); + /* UltraSurf */ + init_ultrasurf_dissector(ndpi_str, &a, detection_bitmask); + #ifdef CUSTOM_NDPI_PROTOCOLS #include "../../../nDPI-custom/custom_ndpi_main_init.c" #endif -- cgit v1.2.3