diff options
author | Toni <matzeton@googlemail.com> | 2022-07-04 16:04:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-04 16:04:53 +0200 |
commit | 4ff8aa48b2a58a29411ffab1c81c76ff0aae6f30 (patch) | |
tree | 63c50ef5957d92ab1c72efe6a4c201f7131d3b2a /src/lib/ndpi_main.c | |
parent | 5aa3d9126f913d022f8a8ea44c34c9b0d471bb47 (diff) |
Added UltraSurf protocol dissector. (#1618)
* TLSv1.3 UltraSurf flows are not detected by now
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 7 |
1 files changed, 7 insertions, 0 deletions
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 |