diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2023-03-20 17:56:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-20 17:56:02 +0100 |
commit | 3a75a46212c044efc423d1833be89c4f144438ec (patch) | |
tree | 5a44b838bf03e3b0dc4d34ff0e105d1992bf35c8 /src/lib/ndpi_main.c | |
parent | 12867962b04bcc8c8bf3a6adf6ab594091eee8ca (diff) |
Add a new protocol id for generic Adult Content traffic (#1906)
The list has been taken from https://www.similarweb.com/top-websites/adult/
Fix a GoTo false positive.
Diffstat (limited to 'src/lib/ndpi_main.c')
-rw-r--r-- | src/lib/ndpi_main.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c index dbdc37b13..3a21ceebc 100644 --- a/src/lib/ndpi_main.c +++ b/src/lib/ndpi_main.c @@ -1406,10 +1406,6 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp "Dofus", 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, 1 /* cleartext */, 0 /* nw proto */, NDPI_PROTOCOL_FUN, NDPI_PROTOCOL_FREE_108, - "Free108", 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, 1 /* cleartext */, 0 /* nw proto */, NDPI_PROTOCOL_FUN, NDPI_PROTOCOL_GUILDWARS, "Guildwars", NDPI_PROTOCOL_CATEGORY_GAME, ndpi_build_default_ports(ports_a, 0, 0, 0, 0, 0) /* TCP */, @@ -2542,7 +2538,7 @@ static const char *categories[] = { "IoT-Scada", "VirtAssistant", "Cybersecurity", - "", + "AdultContent", "", "", "", |