mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-05-06 03:45:32 +00:00
STUN: fix attributes list iteration (#2391)
We need to check all the attributes, to look for any possible metadata
This commit is contained in:
parent
06f4814085
commit
d97afd6efd
1 changed files with 1 additions and 6 deletions
|
|
@ -505,20 +505,15 @@ int is_stun(struct ndpi_detection_module_struct *ndpi_struct,
|
|||
if(valid) {
|
||||
if(strstr(flow->host_server_name, "google.com") != NULL) {
|
||||
*app_proto = NDPI_PROTOCOL_GOOGLE_CALL;
|
||||
return 1;
|
||||
} else if(strstr(flow->host_server_name, "whispersystems.org") != NULL ||
|
||||
strstr(flow->host_server_name, "signal.org") != NULL) {
|
||||
*app_proto = NDPI_PROTOCOL_SIGNAL_VOIP;
|
||||
return 1;
|
||||
} else if(strstr(flow->host_server_name, "facebook") != NULL) {
|
||||
*app_proto = NDPI_PROTOCOL_FACEBOOK_VOIP;
|
||||
return 1;
|
||||
} else if(strstr(flow->host_server_name, "stripcdn.com") != NULL) {
|
||||
*app_proto = NDPI_PROTOCOL_ADULT_CONTENT;
|
||||
return 1;
|
||||
} else if(strstr(flow->host_server_name, "telegram") != NULL) {
|
||||
*app_proto = NDPI_PROTOCOL_TELEGRAM_VOIP;
|
||||
return 1;
|
||||
}
|
||||
} else
|
||||
flow->host_server_name[0] = '\0';
|
||||
|
|
@ -540,7 +535,7 @@ int is_stun(struct ndpi_detection_module_struct *ndpi_struct,
|
|||
|
||||
case 0xFF03:
|
||||
*app_proto = NDPI_PROTOCOL_GOOGLE_CALL;
|
||||
return 1;
|
||||
break;
|
||||
|
||||
case 0x0013:
|
||||
NDPI_LOG_DBG(ndpi_struct, "DATA attribute (%d/%d)\n",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue