mirror of
https://github.com/vel21ripn/nDPI.git
synced 2026-05-05 19:15:12 +00:00
final revision.
This commit is contained in:
parent
93ceb14302
commit
d8ed5b1005
2 changed files with 6 additions and 6 deletions
|
|
@ -7984,7 +7984,7 @@ static ndpi_network host_protocol_list[] = {
|
|||
- Web sites (and CDNs) which are not commonly used to host malicious activities.
|
||||
- OS update hosts.
|
||||
- App stores.
|
||||
- Commonly used services in encrypted channels (SMTPS, POPS, etc)
|
||||
- Commonly used services with passwords in encrypted channels (SMTPS, POPS, etc)
|
||||
|
||||
NDPI_PROTOCOL_ACCEPTABLE
|
||||
- Cloud services may be used to host malware (e.g., https://www.fireeye.com/blog/threat-research/2015/11/china-based-threat.html),
|
||||
|
|
@ -7994,7 +7994,6 @@ static ndpi_network host_protocol_list[] = {
|
|||
- Text, voice or video communication (e.g., Skype, Slack, Whatsapp).
|
||||
- Ads services are commonly used to spread malware
|
||||
(https://www.tripwire.com/state-of-security/security-data-protection/crypto-ransomware-spreads-via-poisoned-ads-on-major-websites/)
|
||||
- Commonly used services in unencrypted channels (SMTP, POP, etc)
|
||||
|
||||
NDPI_PROTOCOL_FUN
|
||||
- Social media sites and services.
|
||||
|
|
@ -8010,6 +8009,7 @@ static ndpi_network host_protocol_list[] = {
|
|||
- https://www.scmagazine.com/600-plus-cloud-repositories-spotted-hosting-malware-and-malicious-files/article/572205/
|
||||
- https://howtoremove.guide/remove-s3-amazonaws-virus/
|
||||
- Torrents.
|
||||
- Commonly used services with passwords in unencrypted channels (SMTP, POP, etc)
|
||||
|
||||
NDPI_PROTOCOL_POTENTIALLY_DANGEROUS
|
||||
- Tor and other anonymization access.
|
||||
|
|
|
|||
|
|
@ -704,7 +704,7 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp
|
|||
no_master, "Unknown", NDPI_PROTOCOL_CATEGORY_UNSPECIFIED,
|
||||
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_mod, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_FTP_CONTROL,
|
||||
ndpi_set_proto_defaults(ndpi_mod, NDPI_PROTOCOL_UNSAFE, NDPI_PROTOCOL_FTP_CONTROL,
|
||||
no_master,
|
||||
no_master, "FTP_CONTROL", NDPI_PROTOCOL_CATEGORY_FILE_TRANSFER,
|
||||
ndpi_build_default_ports(ports_a, 21, 0, 0, 0, 0) /* TCP */,
|
||||
|
|
@ -714,7 +714,7 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp
|
|||
no_master, "FTP_DATA", NDPI_PROTOCOL_CATEGORY_FILE_TRANSFER,
|
||||
ndpi_build_default_ports(ports_a, 20, 0, 0, 0, 0) /* TCP */,
|
||||
ndpi_build_default_ports(ports_b, 0, 0, 0, 0, 0) /* UDP */);
|
||||
ndpi_set_proto_defaults(ndpi_mod, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_MAIL_POP,
|
||||
ndpi_set_proto_defaults(ndpi_mod, NDPI_PROTOCOL_UNSAFE, NDPI_PROTOCOL_MAIL_POP,
|
||||
no_master,
|
||||
no_master, "POP3", NDPI_PROTOCOL_CATEGORY_MAIL_SYNC,
|
||||
ndpi_build_default_ports(ports_a, 110, 0, 0, 0, 0) /* TCP */,
|
||||
|
|
@ -734,7 +734,7 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp
|
|||
no_master, "SMTPS", NDPI_PROTOCOL_CATEGORY_MAIL_SEND,
|
||||
ndpi_build_default_ports(ports_a, 465, 0, 0, 0, 0) /* TCP */,
|
||||
ndpi_build_default_ports(ports_b, 0, 0, 0, 0, 0) /* UDP */);
|
||||
ndpi_set_proto_defaults(ndpi_mod, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_MAIL_IMAP,
|
||||
ndpi_set_proto_defaults(ndpi_mod, NDPI_PROTOCOL_UNSAFE, NDPI_PROTOCOL_MAIL_IMAP,
|
||||
no_master,
|
||||
no_master, "IMAP", NDPI_PROTOCOL_CATEGORY_MAIL_SYNC,
|
||||
ndpi_build_default_ports(ports_a, 143, 0, 0, 0, 0) /* TCP */,
|
||||
|
|
@ -1275,7 +1275,7 @@ static void ndpi_init_protocol_defaults(struct ndpi_detection_module_struct *ndp
|
|||
no_master, "MsSQL-TDS", NDPI_PROTOCOL_CATEGORY_DATABASE,
|
||||
ndpi_build_default_ports(ports_a, 1433, 1434, 0, 0, 0) /* TCP */,
|
||||
ndpi_build_default_ports(ports_b, 0, 0, 0, 0, 0) /* UDP */);
|
||||
ndpi_set_proto_defaults(ndpi_mod, NDPI_PROTOCOL_POTENTIALLY_DANGEROUS, NDPI_PROTOCOL_PPTP,
|
||||
ndpi_set_proto_defaults(ndpi_mod, NDPI_PROTOCOL_ACCEPTABLE, NDPI_PROTOCOL_PPTP,
|
||||
no_master,
|
||||
no_master, "PPTP", NDPI_PROTOCOL_CATEGORY_VPN,
|
||||
ndpi_build_default_ports(ports_a, 0, 0, 0, 0, 0) /* TCP */,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue